From 25130fa597bcccb31bbc95864f9293a93af89b4e Mon Sep 17 00:00:00 2001 From: Donnie Darko Date: Tue, 24 Aug 2021 01:41:11 +0500 Subject: [PATCH 1/2] change button height --- src/styles/styles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/styles.js b/src/styles/styles.js index b71967e83e85..0b80d72a0c2d 100644 --- a/src/styles/styles.js +++ b/src/styles/styles.js @@ -175,7 +175,7 @@ const styles = { button: { backgroundColor: themeColors.buttonDefaultBG, borderRadius: variables.componentBorderRadiusNormal, - height: variables.componentSizeNormal, + height: variables.componentSizeLarge, justifyContent: 'center', ...spacing.ph3, }, From 70dddd28825740bf330f4fd350a49b5fd24ec166 Mon Sep 17 00:00:00 2001 From: Donnie Darko Date: Tue, 24 Aug 2021 02:11:00 +0500 Subject: [PATCH 2/2] change default button text fontsize from 13 to 15 --- src/styles/styles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/styles.js b/src/styles/styles.js index 0b80d72a0c2d..f12f3626b24a 100644 --- a/src/styles/styles.js +++ b/src/styles/styles.js @@ -183,7 +183,7 @@ const styles = { buttonText: { color: themeColors.heading, fontFamily: fontFamily.GTA_BOLD, - fontSize: variables.fontSizeLabel, + fontSize: variables.fontSizeNormal, fontWeight: fontWeightBold, textAlign: 'center', },