From 7f3d3eeb9c588330255bfcbf44d1b0f554e906d0 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Thu, 30 Oct 2025 22:24:47 +0100 Subject: [PATCH] Hide background in bottom nav bar --- web/components/home/home.tsx | 2 +- web/components/nav/bottom-nav-bar.tsx | 11 ++++++++++- web/styles/globals.css | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/web/components/home/home.tsx b/web/components/home/home.tsx index cba0022c..cc68b3ac 100644 --- a/web/components/home/home.tsx +++ b/web/components/home/home.tsx @@ -51,7 +51,7 @@ export function LoggedOutHome() { <> {user === null && diff --git a/web/components/nav/bottom-nav-bar.tsx b/web/components/nav/bottom-nav-bar.tsx index e60a0653..4aab84a7 100644 --- a/web/components/nav/bottom-nav-bar.tsx +++ b/web/components/nav/bottom-nav-bar.tsx @@ -37,7 +37,7 @@ export function BottomNavBar(props: { return null } - return ( + return ( + +
+ ) } diff --git a/web/styles/globals.css b/web/styles/globals.css index 22953b15..0724cad2 100644 --- a/web/styles/globals.css +++ b/web/styles/globals.css @@ -458,6 +458,6 @@ ol > li::marker { .safe-bottom { /*bottom: env(safe-area-inset-bottom);*/ - bottom: calc(env(safe-area-inset-bottom) + 0px); + bottom: calc(env(safe-area-inset-bottom)); }