about summary refs log tree commit diff
path: root/src/view/shell/mobile/Menu.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-03-06 11:59:06 -0600
committerGitHub <noreply@github.com>2023-03-06 11:59:06 -0600
commitf84a37937609cae7c492e1cc32081376cb452a9a (patch)
treead5042d2843aa0d953d56f849d564b3d8ee8f813 /src/view/shell/mobile/Menu.tsx
parentc2a931f49c3739a3907bb5c31cd171ed3fbc8d54 (diff)
downloadvoidsky-f84a37937609cae7c492e1cc32081376cb452a9a.tar.zst
Factor out the bottom bar and layer it under the side menu (close #243) (#268)
Diffstat (limited to 'src/view/shell/mobile/Menu.tsx')
-rw-r--r--src/view/shell/mobile/Menu.tsx6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/view/shell/mobile/Menu.tsx b/src/view/shell/mobile/Menu.tsx
index 23c09b82c..6c5aa1adb 100644
--- a/src/view/shell/mobile/Menu.tsx
+++ b/src/view/shell/mobile/Menu.tsx
@@ -119,7 +119,6 @@ export const Menu = observer(({onClose}: {onClose: () => void}) => {
       style={[
         styles.view,
         theme.colorScheme === 'light' ? pal.view : styles.viewDarkMode,
-        store.shell.minimalShellMode && styles.viewMinimalShell,
       ]}>
       <TouchableOpacity
         testID="profileCardButton"
@@ -272,15 +271,12 @@ const styles = StyleSheet.create({
   view: {
     flex: 1,
     paddingTop: 10,
-    paddingBottom: 90,
+    paddingBottom: 50,
     paddingLeft: 30,
   },
   viewDarkMode: {
     backgroundColor: colors.gray8,
   },
-  viewMinimalShell: {
-    paddingBottom: 50,
-  },
 
   profileCardDisplayName: {
     marginTop: 20,