Font tweaks (#5597)

* Increase fontWeight on android

* Use atoms for a couple stray fontWeights

* Rm unused file
This commit is contained in:
Eric Bailey
2024-10-03 20:22:54 -05:00
committed by GitHub
parent eb3b01d0ad
commit ce53b3a264
6 changed files with 52 additions and 260 deletions
+3 -2
View File
@@ -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,
},