Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion web/components/BottomBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ function BottomBarCell({
export default function BottomBar(props: Props) {
const { activeTab } = props;
return (
<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
className="fixed bottom-0 z-30 flex h-12 w-full flex-row items-center justify-around border-gray-200 border-t bg-white"
style={{
paddingBottom: "env(safe-area-inset-bottom)",
}}
>
<BottomBarCell
href="/home"
iconComponent={
Expand Down
Loading