about summary refs log tree commit diff
path: root/src/view/shell
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-10-03 20:22:54 -0500
committerGitHub <noreply@github.com>2024-10-03 20:22:54 -0500
commitce53b3a2648732ee67abd3cf4333f154031bd7e5 (patch)
treef90cf7326fbba9478f75586cd4851ea78adc135b /src/view/shell
parenteb3b01d0adc5d5c053e1d350c087941b56106497 (diff)
downloadvoidsky-ce53b3a2648732ee67abd3cf4333f154031bd7e5.tar.zst
Font tweaks (#5597)
* Increase fontWeight on android

* Use atoms for a couple stray fontWeights

* Rm unused file
Diffstat (limited to 'src/view/shell')
-rw-r--r--src/view/shell/Drawer.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/view/shell/Drawer.tsx b/src/view/shell/Drawer.tsx
index ca2cbb3e0..4212b28af 100644
--- a/src/view/shell/Drawer.tsx
+++ b/src/view/shell/Drawer.tsx
@@ -590,7 +590,9 @@ function MenuItem({
                 ? styles.menuItemCountTens
                 : undefined,
             ]}>
-            <Text style={styles.menuItemCountLabel} numberOfLines={1}>
+            <Text
+              style={[styles.menuItemCountLabel, a.font_bold]}
+              numberOfLines={1}>
               {count}
             </Text>
           </View>
@@ -666,7 +668,6 @@ const styles = StyleSheet.create({
   },
   menuItemCountLabel: {
     fontSize: 12,
-    fontWeight: '600',
     fontVariant: ['tabular-nums'],
     color: colors.white,
   },