From 482fef15acbd454966aca8c5cb750fa24e12f87c Mon Sep 17 00:00:00 2001 From: Fredrik Johansson Date: Tue, 7 Jul 2026 23:36:37 +0200 Subject: [PATCH] Fix z-index: help modal and overlay above Leaflet (z-index 1001/1000) Co-Authored-By: Claude Sonnet 4.6 --- src/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/style.css b/src/style.css index 5e153f0..c3fda44 100644 --- a/src/style.css +++ b/src/style.css @@ -213,7 +213,7 @@ body { position: fixed; inset: 0; background: rgba(6, 6, 14, 0.92); - z-index: 100; + z-index: 1000; align-items: center; justify-content: center; flex-direction: column; @@ -290,7 +290,7 @@ body { position: fixed; inset: 0; background: rgba(6, 6, 14, 0.88); - z-index: 200; + z-index: 1001; /* above Leaflet's z-index 400-1000 range */ align-items: center; justify-content: center; }