Skip to content

Commit a51936b

Browse files
committed
fix(web): make mobile tab bar fully opaque
The frosted bg-cream/95 + backdrop-blur let scrolling content (e.g. product thumbnails) bleed through and muddy the tab labels. Solid bg-cream keeps the icons/labels crisp over any page content.
1 parent 26f0954 commit a51936b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

web/components/mobile-tab-bar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function MobileTabBar({ authed }: { authed: boolean }) {
2828
return (
2929
<nav
3030
aria-label="Mobile navigation"
31-
className="fixed bottom-0 inset-x-0 z-30 border-t border-rule bg-cream/95 backdrop-blur sm:hidden"
31+
className="fixed bottom-0 inset-x-0 z-30 border-t border-rule bg-cream sm:hidden"
3232
style={{ paddingBottom: "env(safe-area-inset-bottom)" }}
3333
>
3434
<div className="flex items-stretch justify-around h-16 px-2">

0 commit comments

Comments
 (0)