about summary refs log tree commit diff
path: root/src/view/com/auth/onboarding/Welcome.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-08-29 22:56:13 -0700
committerPaul Frazee <pfrazee@gmail.com>2023-08-29 22:56:13 -0700
commit5e765bf1cb29d30d627552da84d02594f506af1f (patch)
tree4620266dbd31e9ec525e173bb07652ff0b804ba7 /src/view/com/auth/onboarding/Welcome.tsx
parent5d9534ca7258e6165e537b89d999a8c494501dc0 (diff)
downloadvoidsky-5e765bf1cb29d30d627552da84d02594f506af1f.tar.zst
Rework web onboarding
Diffstat (limited to 'src/view/com/auth/onboarding/Welcome.tsx')
-rw-r--r--src/view/com/auth/onboarding/Welcome.tsx8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/view/com/auth/onboarding/Welcome.tsx b/src/view/com/auth/onboarding/Welcome.tsx
index a322e4d4f..6f95c0853 100644
--- a/src/view/com/auth/onboarding/Welcome.tsx
+++ b/src/view/com/auth/onboarding/Welcome.tsx
@@ -41,8 +41,10 @@ export const Welcome = observer(({next, skip}: Props) => {
         }}
       />
       <View>
-        <Text style={[pal.text, styles.title]}>Welcome to </Text>
-        <Text style={[pal.text, pal.link, styles.title]}>Bluesky</Text>
+        <Text style={[pal.text, styles.title]}>
+          Welcome to{' '}
+          <Text style={[pal.text, pal.link, styles.title]}>Bluesky</Text>
+        </Text>
         <View style={styles.spacer} />
         <View style={[styles.row]}>
           <FontAwesomeIcon icon={'globe'} size={36} color={pal.colors.link} />
@@ -98,7 +100,7 @@ const styles = StyleSheet.create({
     justifyContent: 'space-between',
   },
   title: {
-    fontSize: 48,
+    fontSize: 42,
     fontWeight: '800',
   },
   row: {