From 49ff847fbfd05ae4cfd00bfd115d9488ff9a2bbf Mon Sep 17 00:00:00 2001 From: Nikolaos Karaolidis Date: Mon, 10 Jul 2023 11:32:10 +0300 Subject: [PATCH] Add extra welcome screen margin Signed-off-by: Nikolaos Karaolidis --- src/screens/welcome.tsx | 4 ++-- src/styles.tsx | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/screens/welcome.tsx b/src/screens/welcome.tsx index f1d8ab4..59f8aae 100644 --- a/src/screens/welcome.tsx +++ b/src/screens/welcome.tsx @@ -8,10 +8,10 @@ const WelcomeScreen = (properties: { selectStorageLocation: () => void }) => { + style={[styles.bigMarginBottom, styles.centerText]}> Welcome to Terminally Online! - diff --git a/src/styles.tsx b/src/styles.tsx index 06f9c54..55e9159 100644 --- a/src/styles.tsx +++ b/src/styles.tsx @@ -14,6 +14,12 @@ const styles = StyleSheet.create({ marginBottom: { marginBottom: verticalScale(5), }, + bigMarginBottom: { + marginBottom: verticalScale(25), + }, + extremeMarginBottom: { + marginBottom: verticalScale(100), + }, padding: { padding: '5%', },