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/Composer.web.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/Composer.web.tsx')
-rw-r--r-- | src/view/shell/Composer.web.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/shell/Composer.web.tsx b/src/view/shell/Composer.web.tsx index 7eb16290a..cf850aa4f 100644 --- a/src/view/shell/Composer.web.tsx +++ b/src/view/shell/Composer.web.tsx @@ -5,7 +5,8 @@ import {ComposePost} from '../com/composer/Composer' import {ComposerOpts} from 'state/models/ui/shell' import {usePalette} from 'lib/hooks/usePalette' import {isMobileWeb} from 'platform/detection' -import {BOTTOM_BAR_HEIGHT} from 'view/shell/bottom-bar/BottomBarStyles' + +const BOTTOM_BAR_HEIGHT = 61 export const Composer = observer( ({ |