fix(android): replace env() with JS-set CSS vars for safe areas

This commit is contained in:
2026-07-20 11:30:28 -04:00
parent c2be53e53f
commit 516168d290
3 changed files with 11 additions and 3 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-[env(safe-area-inset-bottom)]" />
<div className="h-[var(--safe-bottom,env(safe-area-inset-bottom))]" />
</div>
);
}