diff options
author | Ansh <anshnanda10@gmail.com> | 2023-07-19 15:00:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-19 15:00:40 -0700 |
commit | 3517d9fa28707a61febd75fd160edc870cc0ade7 (patch) | |
tree | 3c78a44efa0980de46dd975de78384d98adb3013 /src/view/shell/bottom-bar/BottomBarStyles.tsx | |
parent | 302490cb31e0a955fe7aa9b4cc092a42c83c10fe (diff) | |
download | voidsky-3517d9fa28707a61febd75fd160edc870cc0ade7.tar.zst |
Hotfix mobile web styling issues (#1039)
* remove hardcoded height for bottom bar * prevent overflow of tab bar on mobile web
Diffstat (limited to 'src/view/shell/bottom-bar/BottomBarStyles.tsx')
-rw-r--r-- | src/view/shell/bottom-bar/BottomBarStyles.tsx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/view/shell/bottom-bar/BottomBarStyles.tsx b/src/view/shell/bottom-bar/BottomBarStyles.tsx index 91d285e47..f31ab44cf 100644 --- a/src/view/shell/bottom-bar/BottomBarStyles.tsx +++ b/src/view/shell/bottom-bar/BottomBarStyles.tsx @@ -1,11 +1,8 @@ import {StyleSheet} from 'react-native' import {colors} from 'lib/styles' -export const BOTTOM_BAR_HEIGHT = 61 - export const styles = StyleSheet.create({ bottomBar: { - height: BOTTOM_BAR_HEIGHT, position: 'absolute', bottom: 0, left: 0, |