fix: remove env() from CSS, set safe-area via JS only

This commit is contained in:
2026-07-20 11:50:07 -04:00
parent a5882f32c4
commit 156ee4197c
17 changed files with 11 additions and 5 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ export function MobileNav({ activeTab, onTabChange, onToggleDrawer }: MobileNavP
<ThemeToggle />
</div>
{/* Safe area for phones with bottom notch */}
<div className="h-[var(--safe-bottom,env(safe-area-inset-bottom))]" />
<div className="h-[var(--safe-bottom)]" />
</div>
);
}