From 50031bc2491575b0c55b4c73f3f4c80d1ff046bb Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Wed, 3 Aug 2022 23:24:45 -0500 Subject: [PATCH] button metrics --- squarenotsquare/src/themes/Metrics.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/squarenotsquare/src/themes/Metrics.js b/squarenotsquare/src/themes/Metrics.js index 4138996..58b3afa 100644 --- a/squarenotsquare/src/themes/Metrics.js +++ b/squarenotsquare/src/themes/Metrics.js @@ -42,7 +42,8 @@ class AppMetrics { } this.margins = { - default: this.normalize(5) + default: this.normalize(5), + buttonMargin: this.normalize(20) } this.buttons = { @@ -50,6 +51,10 @@ class AppMetrics { menuButton: { height: this.normalize(30), width: this.screenWidth * 0.7 + }, + answerButton: { + width: this.normalize(40), + height: this.normalize(40) } }