diff options
Diffstat (limited to 'src/view/com')
-rw-r--r-- | src/view/com/util/PostMeta.tsx | 2 | ||||
-rw-r--r-- | src/view/com/util/TabBar.tsx | 10 |
2 files changed, 5 insertions, 7 deletions
diff --git a/src/view/com/util/PostMeta.tsx b/src/view/com/util/PostMeta.tsx index 3f9e6935f..1a36a72e8 100644 --- a/src/view/com/util/PostMeta.tsx +++ b/src/view/com/util/PostMeta.tsx @@ -136,7 +136,7 @@ const styles = StyleSheet.create({ alignItems: 'center', justifyContent: 'space-between', width: '100%', - paddingBottom: 2, + paddingBottom: 4, }, metaTwoLineLeft: { flex: 1, diff --git a/src/view/com/util/TabBar.tsx b/src/view/com/util/TabBar.tsx index d9f48577c..666ad5811 100644 --- a/src/view/com/util/TabBar.tsx +++ b/src/view/com/util/TabBar.tsx @@ -78,9 +78,7 @@ export function TabBar({ return ( <TouchableWithoutFeedback key={i} onPress={() => onPressItem(i)}> <View style={styles.item} ref={itemRefs[i]}> - <Text - type="xl-medium" - style={selected ? pal.text : pal.textLight}> + <Text type="xl-bold" style={selected ? pal.text : pal.textLight}> {item} </Text> </View> @@ -97,14 +95,14 @@ const styles = StyleSheet.create({ paddingHorizontal: 14, }, item: { - paddingTop: 6, - paddingBottom: 14, + paddingTop: 8, + paddingBottom: 12, marginRight: 24, }, underline: { position: 'absolute', height: 3, - bottom: 0, + bottom: -1, borderRadius: 4, }, }) |