diff options
author | Eric Bailey <git@esb.lol> | 2023-07-18 15:18:56 -0500 |
---|---|---|
committer | Eric Bailey <git@esb.lol> | 2023-07-18 15:18:56 -0500 |
commit | 1ca5792165fc690541ada3a74b42f4e64ff84da7 (patch) | |
tree | bf7c54b64330426d4c3ff67f9c796f58924cedbf /src/view/shell/bottom-bar/BottomBarStyles.tsx | |
parent | 17deaaa7e71f33f82383182b47a076b8ba1a75fc (diff) | |
download | voidsky-1ca5792165fc690541ada3a74b42f4e64ff84da7.tar.zst |
create explicit relationship between values
Diffstat (limited to 'src/view/shell/bottom-bar/BottomBarStyles.tsx')
-rw-r--r-- | src/view/shell/bottom-bar/BottomBarStyles.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/view/shell/bottom-bar/BottomBarStyles.tsx b/src/view/shell/bottom-bar/BottomBarStyles.tsx index f31ab44cf..91d285e47 100644 --- a/src/view/shell/bottom-bar/BottomBarStyles.tsx +++ b/src/view/shell/bottom-bar/BottomBarStyles.tsx @@ -1,8 +1,11 @@ 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, |