diff options
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} |