From 49f78d5604e62c7a33845ba24e8d35076f914938 Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Fri, 5 Feb 2021 16:08:35 +0100 Subject: [PATCH] Fix leaflet: areas wouldn't show up anymore --- index.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/index.css b/index.css index 787fee0..425766b 100644 --- a/index.css +++ b/index.css @@ -88,6 +88,12 @@ html, body { color: var(--foreground-color); font-family: 'Helvetica Neue', Arial, sans-serif; } +.leaflet-overlay-pane .leaflet-zoom-animated { + /* Another workaround to keep leaflet working */ + width: initial !important; + height: initial !important; + box-sizing: initial !important; +} svg, img { box-sizing: content-box; @@ -95,6 +101,7 @@ svg, img { height: 100%; } + a { color: var(--foreground-color) }