about summary refs log tree commit diff
path: root/src/view/com/pager/TabBar.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-05-25 14:56:23 -0500
committerPaul Frazee <pfrazee@gmail.com>2023-05-25 14:56:23 -0500
commitf03ac9fd56dd9a1fc6ad84b19d102c35356de91e (patch)
tree7064772a56c649f93cf171e8656745a023824ff5 /src/view/com/pager/TabBar.tsx
parent524f8b6abd1787e3fefc640e752e2ed1ecac5898 (diff)
downloadvoidsky-f03ac9fd56dd9a1fc6ad84b19d102c35356de91e.tar.zst
Tune the UI layout of the feed tab header
Diffstat (limited to 'src/view/com/pager/TabBar.tsx')
-rw-r--r--src/view/com/pager/TabBar.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view/com/pager/TabBar.tsx b/src/view/com/pager/TabBar.tsx
index caca9f926..f89dbe88a 100644
--- a/src/view/com/pager/TabBar.tsx
+++ b/src/view/com/pager/TabBar.tsx
@@ -92,7 +92,7 @@ export function TabBar({
               hoverStyle={pal.viewLight}
               onPress={() => onPressItem(i)}>
               <Text
-                type="xl-bold"
+                type="lg-bold"
                 testID={testID ? `${testID}-${item}` : undefined}
                 style={selected ? pal.text : pal.textLight}>
                 {item}
@@ -127,12 +127,12 @@ const styles = isDesktopWeb
         flexDirection: 'row',
       },
       contentContainer: {
-        gap: 14,
+        gap: 18,
         paddingHorizontal: 18,
       },
       item: {
         paddingTop: 8,
-        paddingBottom: 12,
+        paddingBottom: 8,
         borderBottomWidth: 3,
         borderBottomColor: 'transparent',
       },