From 6076a482b8f2fc703d31cdb972ae9daf84ccfbb6 Mon Sep 17 00:00:00 2001 From: Maurice Date: Sat, 21 Mar 2026 23:01:45 +0100 Subject: [PATCH] Fix bottom safe area: use fixed body to cover full screen --- client/src/index.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/client/src/index.css b/client/src/index.css index 3cb9785..29f3f5b 100644 --- a/client/src/index.css +++ b/client/src/index.css @@ -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;