diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-16 14:05:21 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-16 14:05:21 -0600 |
commit | 0b7b91d5fde7d59d5e9f141d632ec66068aacf36 (patch) | |
tree | 2fa5e774e223c30edf23429297f01cd6233917de /src/view/shell/mobile/index.tsx | |
parent | fec1589f7c3501689e280023d3606d6b89988a3b (diff) | |
download | voidsky-0b7b91d5fde7d59d5e9f141d632ec66068aacf36.tar.zst |
Fix sizing on smaller phones
Diffstat (limited to 'src/view/shell/mobile/index.tsx')
-rw-r--r-- | src/view/shell/mobile/index.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx index 96390e9b8..94407599f 100644 --- a/src/view/shell/mobile/index.tsx +++ b/src/view/shell/mobile/index.tsx @@ -220,7 +220,7 @@ export const MobileShell: React.FC = observer(() => { </ScreenContainer> </GestureDetector> </SafeAreaView> - <View style={styles.bottomBar}> + <SafeAreaView style={styles.bottomBar}> <Btn icon="house" onPress={onPressHome} /> <Btn icon="search" onPress={onPressSearch} /> <Btn icon="menu" onPress={onPressMenu} /> @@ -230,7 +230,7 @@ export const MobileShell: React.FC = observer(() => { notificationCount={store.me.notificationCount} /> <Btn icon={['far', 'clone']} onPress={onPressTabs} /> - </View> + </SafeAreaView> <MainMenu active={isMainMenuActive} onClose={() => setMainMenuActive(false)} @@ -373,7 +373,6 @@ const styles = StyleSheet.create({ borderTopColor: colors.gray2, paddingLeft: 5, paddingRight: 15, - paddingBottom: 20, }, ctrl: { flex: 1, |