aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShravya Ramesh <shravs1208@gmail.com>2021-02-02 12:55:33 -0800
committerShravya Ramesh <shravs1208@gmail.com>2021-02-02 12:55:33 -0800
commit116438009503359a78c3af7f36485e46cdd25bb6 (patch)
treeead27946fd3a1111883cf56c78838f2a8e9eca3a /src
parent0b25ca8daba54293fdd24082e1b4fb684ac33421 (diff)
lineHeight, fontSize & weight changed as per figma
Diffstat (limited to 'src')
-rw-r--r--src/screens/onboarding/WelcomeScreen.tsx14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/screens/onboarding/WelcomeScreen.tsx b/src/screens/onboarding/WelcomeScreen.tsx
index e7c835bb..7e18cb99 100644
--- a/src/screens/onboarding/WelcomeScreen.tsx
+++ b/src/screens/onboarding/WelcomeScreen.tsx
@@ -53,6 +53,7 @@ const styles = StyleSheet.create({
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
+ marginTop: '10%',
},
image: {
width: SCREEN_WIDTH * 0.9,
@@ -60,19 +61,20 @@ const styles = StyleSheet.create({
},
header: {
color: '#fff',
- fontSize: normalize(32),
- fontWeight: '600',
+ fontSize: normalize(28),
+ fontWeight: '700',
textAlign: 'center',
marginBottom: '4%',
marginHorizontal: '10%',
},
subtext: {
color: '#fff',
- fontSize: normalize(16),
- fontWeight: '600',
+ fontSize: normalize(17),
+ fontWeight: '500',
textAlign: 'center',
marginBottom: '10%',
marginHorizontal: '10%',
+ lineHeight: normalize(25),
},
nextButton: {
backgroundColor: '#8F01FF',
@@ -86,8 +88,8 @@ const styles = StyleSheet.create({
marginBottom: '15%',
},
nextButtonLabel: {
- fontSize: normalize(30),
- fontWeight: '500',
+ fontSize: normalize(20),
+ fontWeight: '700',
color: '#ddd',
},
});