diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-18 11:15:40 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-18 11:15:40 -0600 |
commit | 77580ab6a4df8e233e5b1a9b166eebbca9bdc80f (patch) | |
tree | 964991f62d70de001c2f7ba08c0a6c135181bc3b /src/view/screens/Settings.tsx | |
parent | df4acbd683fb66c469c25915e875a8bcd2d83971 (diff) | |
download | voidsky-77580ab6a4df8e233e5b1a9b166eebbca9bdc80f.tar.zst |
Rework all typography
Diffstat (limited to 'src/view/screens/Settings.tsx')
-rw-r--r-- | src/view/screens/Settings.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view/screens/Settings.tsx b/src/view/screens/Settings.tsx index 39597152d..c36190144 100644 --- a/src/view/screens/Settings.tsx +++ b/src/view/screens/Settings.tsx @@ -37,7 +37,7 @@ export const Settings = observer(function Settings({ <Text style={pal.text}>Signed in as</Text> <View style={s.flex1} /> <TouchableOpacity onPress={onPressSignout}> - <Text type="h5" style={pal.link}> + <Text type="xl-heavy" style={pal.link}> Sign out </Text> </TouchableOpacity> @@ -54,7 +54,7 @@ export const Settings = observer(function Settings({ avatar={store.me.avatar} /> <View style={[s.ml10]}> - <Text type="h5" style={pal.text}> + <Text type="xl-bold" style={pal.text}> {store.me.displayName || store.me.handle} </Text> <Text style={pal.textLight}>@{store.me.handle}</Text> @@ -62,7 +62,7 @@ export const Settings = observer(function Settings({ </View> </Link> <View style={s.flex1} /> - <Text type="overline1" style={[s.mb5]}> + <Text type="sm-medium" style={[s.mb5]}> Advanced </Text> <Link |