diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/onboarding/WelcomeScreen.tsx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/screens/onboarding/WelcomeScreen.tsx b/src/screens/onboarding/WelcomeScreen.tsx index 3ad30163..a77316cd 100644 --- a/src/screens/onboarding/WelcomeScreen.tsx +++ b/src/screens/onboarding/WelcomeScreen.tsx @@ -55,8 +55,8 @@ const styles = StyleSheet.create({ alignItems: 'center', }, image: { - width: SCREEN_WIDTH, - height: SCREEN_WIDTH, + width: SCREEN_WIDTH * 0.9, + height: SCREEN_WIDTH * 0.9, }, header: { color: '#fff', @@ -71,7 +71,7 @@ const styles = StyleSheet.create({ fontSize: 16, fontWeight: '600', textAlign: 'center', - marginBottom: '9.5%', + marginBottom: '10%', marginHorizontal: '10%', }, nextButton: { @@ -89,7 +89,6 @@ const styles = StyleSheet.create({ fontSize: 30, fontWeight: '500', color: '#ddd', - }, }); export default WelcomeScreen; |