fix: iOS safe area for all pages

This commit is contained in:
Alexej Wolff
2026-02-11 01:15:31 +01:00
parent f452dc0674
commit 715f2a9bcf
3 changed files with 9 additions and 0 deletions
+3
View File
@@ -2,6 +2,9 @@
background: #1a1a1a;
border-top: 1px solid #2a2a2a;
padding: 0.75rem 1.5rem;
padding-left: max(1.5rem, env(safe-area-inset-left));
padding-right: max(1.5rem, env(safe-area-inset-right));
padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
}
.footer-content {
+2
View File
@@ -2,6 +2,8 @@
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding: 0 2rem;
padding-left: max(2rem, env(safe-area-inset-left));
padding-right: max(2rem, env(safe-area-inset-right));
position: sticky;
top: 0;
z-index: 100;