diff options
Diffstat (limited to 'src/view/shell/mobile/index.tsx')
-rw-r--r-- | src/view/shell/mobile/index.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx index bc1343aa3..0e42cc134 100644 --- a/src/view/shell/mobile/index.tsx +++ b/src/view/shell/mobile/index.tsx @@ -337,7 +337,7 @@ export const MobileShell: React.FC = observer(() => { return ( <View style={styles.outerContainer}> - <SafeAreaView style={styles.innerContainer}> + <View style={[styles.innerContainer, {paddingTop: safeAreaInsets.top}]}> <HorzSwipe distThresholdDivisor={1.5} useNativeDriver @@ -403,7 +403,7 @@ export const MobileShell: React.FC = observer(() => { /> </Animated.View> </HorzSwipe> - </SafeAreaView> + </View> {isTabsSelectorActive ? ( <View style={[ @@ -421,7 +421,7 @@ export const MobileShell: React.FC = observer(() => { <Animated.View style={[ styles.bottomBar, - {paddingBottom: clamp(safeAreaInsets.bottom, 15, 40)}, + {paddingBottom: clamp(safeAreaInsets.bottom, 15, 30)}, footerMinimalShellTransform, ]}> <Btn |