Fix bottom safe area: use fixed body to cover full screen

This commit is contained in:
Maurice
2026-03-21 23:01:45 +01:00
parent a590db8e10
commit 6076a482b8

View File

@@ -3,7 +3,14 @@
@tailwind utilities;
html { height: 100%; overflow: hidden; background-color: var(--bg-primary); }
body { height: 100%; overflow: auto; overscroll-behavior: none; -webkit-overflow-scrolling: touch; }
body {
position: fixed;
inset: 0;
margin: 0;
overflow: auto;
overscroll-behavior: none;
-webkit-overflow-scrolling: touch;
}
.atlas-tooltip {
background: rgba(10, 10, 20, 0.6) !important;