feat(dashboard): add iOS Safari safe area CSS support
Add CSS environment variables for safe-area-inset to prevent content overlap with notch/home indicator on iOS devices. - Add padding-top and padding-bottom to body using env(safe-area-inset-*) - Mobile bottom navigation already respects safe-area-inset-bottom - viewport-fit=cover meta tag already present in all HTML pages
This commit is contained in:
parent
efee714482
commit
28e0f6239e
3 changed files with 5 additions and 3 deletions
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
16a4c658d8098f0e28a34544889161612132219f
|
||||
03f765639be02940cb1f6a204e64b74ad751292e
|
||||
|
|
|
|||
|
|
@ -10,6 +10,8 @@ body {
|
|||
color: var(--text-primary);
|
||||
font-family: var(--font-body);
|
||||
margin: 0;
|
||||
padding-top: env(safe-area-inset-top);
|
||||
padding-bottom: env(safe-area-inset-bottom);
|
||||
}
|
||||
|
||||
/* ── App shell grid ── */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue