We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3cafcd commit 3dcf940Copy full SHA for 3dcf940
web/components/BottomBar.tsx
@@ -36,7 +36,12 @@ function BottomBarCell({
36
export default function BottomBar(props: Props) {
37
const { activeTab } = props;
38
return (
39
- <div className="fixed bottom-0 z-30 flex h-12 w-full flex-row items-center justify-around border-gray-200 border-t bg-white">
+ <div
40
+ className="fixed bottom-0 z-30 flex h-12 w-full flex-row items-center justify-around border-gray-200 border-t bg-white"
41
+ style={{
42
+ paddingBottom: "env(safe-area-inset-bottom)",
43
+ }}
44
+ >
45
<BottomBarCell
46
href="/home"
47
iconComponent={
0 commit comments