aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-02-01 16:20:04 -0500
committerIvan Chen <ivan@tagg.id>2021-02-01 16:20:04 -0500
commit2dacd3ec232a669d99556b79c92fe00aa15b33c5 (patch)
tree755931e04c293db1a520f80f756ac2a9823aae3e /src
parent8d1013e86cf2d66671c337d49a80da157802ad86 (diff)
fixed layout issue
Diffstat (limited to 'src')
-rw-r--r--src/screens/onboarding/WelcomeScreen.tsx7
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;