diff options
author | Hailey <me@haileyok.com> | 2024-09-27 15:26:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-27 15:26:28 -0700 |
commit | 587c0c625752964d8ce64faf1d329dce3c834a5c (patch) | |
tree | 8a345e754db3536b8d0abf875b67f0c6e200d47d /src/view/shell/bottom-bar/BottomBar.tsx | |
parent | 4b5d6e6efb09a714d82e2093dec39c85400a2de6 (diff) | |
download | voidsky-587c0c625752964d8ce64faf1d329dce3c834a5c.tar.zst |
Rework native autocomplete (#5521)
Co-authored-by: Samuel Newman <mozzius@protonmail.com>
Diffstat (limited to 'src/view/shell/bottom-bar/BottomBar.tsx')
-rw-r--r-- | src/view/shell/bottom-bar/BottomBar.tsx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/view/shell/bottom-bar/BottomBar.tsx b/src/view/shell/bottom-bar/BottomBar.tsx index 9187b5321..af06134fc 100644 --- a/src/view/shell/bottom-bar/BottomBar.tsx +++ b/src/view/shell/bottom-bar/BottomBar.tsx @@ -351,17 +351,16 @@ function Btn({ return ( <PressableScale testID={testID} - style={styles.ctrl} + style={[styles.ctrl, a.flex_1]} onPress={onPress} onLongPress={onLongPress} accessible={accessible} accessibilityLabel={accessibilityLabel} accessibilityHint={accessibilityHint} - targetScale={0.8} - contentContainerStyle={[a.flex_1]}> + targetScale={0.8}> {icon} {notificationCount ? ( - <View style={[styles.notificationCount, {top: -5}]}> + <View style={[styles.notificationCount]}> <Text style={styles.notificationCountLabel}>{notificationCount}</Text> </View> ) : undefined} |