diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-30 13:20:55 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-30 13:20:55 -0600 |
commit | 9084e0e4a8ba14c59ec2ee29f8035eb854d11e87 (patch) | |
tree | 7c8d7c79b5cf56e84eda7ee1a4653e00f1fe764a /src/view/com/util/ViewHeader.tsx | |
parent | 10f613475adea292666f00879580c46741260e01 (diff) | |
download | voidsky-9084e0e4a8ba14c59ec2ee29f8035eb854d11e87.tar.zst |
Integrate profile listings into design system
Diffstat (limited to 'src/view/com/util/ViewHeader.tsx')
-rw-r--r-- | src/view/com/util/ViewHeader.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/view/com/util/ViewHeader.tsx b/src/view/com/util/ViewHeader.tsx index 74886b973..a714c2db4 100644 --- a/src/view/com/util/ViewHeader.tsx +++ b/src/view/com/util/ViewHeader.tsx @@ -74,13 +74,13 @@ export const ViewHeader = observer(function ViewHeader({ )} </TouchableOpacity> <View style={styles.titleContainer} pointerEvents="none"> - <Text type="h3" style={pal.text}> + <Text type="h4" style={pal.text}> {title} </Text> {subtitle ? ( <Text - type="h4" - style={[styles.subtitle, pal.textLight]} + type="h5" + style={[styles.subtitle, pal.textLight, {fontWeight: 'normal'}]} numberOfLines={1}> {subtitle} </Text> @@ -147,7 +147,7 @@ const styles = StyleSheet.create({ marginRight: 'auto', }, subtitle: { - marginLeft: 6, + marginLeft: 4, maxWidth: 200, }, |