Fix: Karte Filter-Tabs Tablet min 20px top (iPad ohne Notch hat kein safe-area-inset) (SW by-v822)

This commit is contained in:
rene 2026-05-10 09:45:03 +02:00
parent c96e6e1fac
commit 47bb1e202e
5 changed files with 12 additions and 11 deletions

View file

@ -3087,7 +3087,8 @@ html.modal-open {
}
@media (min-width: 768px) {
.map-full-layout { top: 0; left: var(--nav-sidebar-width); bottom: 0; }
.map-legend { top: calc(var(--safe-top) + var(--space-2)); }
/* max(): mind. 20px für iPad-Statusleiste (kein Safe-Area-Inset ohne Notch) */
.map-legend { top: calc(max(env(safe-area-inset-top, 0px), 20px) + var(--space-2)); }
}
.map-full { width: 100%; height: 100%; }