From b13a038eb14753c709896ba9e04d9c619ab4035e Mon Sep 17 00:00:00 2001 From: AI Assistant Date: Mon, 23 Mar 2026 18:07:48 +0200 Subject: [PATCH] fix(geoportal): use absolute inset-0 on MapViewer wrapper (fixes 0-height canvas) h-full (height:100%) doesn't propagate through absolutely positioned parents. The MapLibre container had width=1065 but height=0. Using absolute inset-0 on the wrapper fills the parent directly via positioning instead of percentage height. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/modules/geoportal/components/map-viewer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/geoportal/components/map-viewer.tsx b/src/modules/geoportal/components/map-viewer.tsx index 2f19664..30caac7 100644 --- a/src/modules/geoportal/components/map-viewer.tsx +++ b/src/modules/geoportal/components/map-viewer.tsx @@ -570,7 +570,7 @@ export const MapViewer = forwardRef( }, [center, zoom, mapReady]); return ( -
+
{!mapReady && (