diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-06 11:59:06 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-06 11:59:06 -0600 |
commit | f84a37937609cae7c492e1cc32081376cb452a9a (patch) | |
tree | ad5042d2843aa0d953d56f849d564b3d8ee8f813 /src/view/shell/mobile/Menu.tsx | |
parent | c2a931f49c3739a3907bb5c31cd171ed3fbc8d54 (diff) | |
download | voidsky-f84a37937609cae7c492e1cc32081376cb452a9a.tar.zst |
Diffstat (limited to 'src/view/shell/mobile/Menu.tsx')
-rw-r--r-- | src/view/shell/mobile/Menu.tsx | 6 |
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, |