From 21103441cf97f855fc9a2af3c271c6c68710231a Mon Sep 17 00:00:00 2001 From: Codex Date: Fri, 17 Jul 2026 17:56:48 +0200 Subject: [PATCH] Prevent geographic explorer overflow --- CHANGELOG.md | 2 ++ backend/tests/test_sprint233_operational_completion.py | 2 +- frontend/src/styles/app.css | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc7ae60d..6122b6f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,8 @@ project names and one-partition map counts no longer leak into the Map flow. - Removed the Kempen-only browser title now that the same workbench also operates at Flemish scope. +- Let the geographic explorer switch to its two-row desktop layout before the + navigation rail makes the three-column map surface overflow. ## Sprint 235 Governed bathymetry profiles and Belgian scale architecture (2026-07-17) diff --git a/backend/tests/test_sprint233_operational_completion.py b/backend/tests/test_sprint233_operational_completion.py index 48fd0b91..5a0fecb8 100644 --- a/backend/tests/test_sprint233_operational_completion.py +++ b/backend/tests/test_sprint233_operational_completion.py @@ -372,7 +372,7 @@ def test_map_and_detection_workspaces_avoid_page_length_driven_layouts() -> None assert "height: clamp(34rem, calc(100dvh - 10rem), 58rem);" in styles assert ".geo-theme-list" in styles and "overflow-y: auto;" in styles - assert "@media (max-width: 1240px)" in styles + assert "@media (max-width: 1500px)" in styles assert ".workspace-grid-ai {\n grid-template-columns: minmax(0, 1fr);" in premium assert "max-height: none;" in premium diff --git a/frontend/src/styles/app.css b/frontend/src/styles/app.css index 14b5eab8..190d6414 100644 --- a/frontend/src/styles/app.css +++ b/frontend/src/styles/app.css @@ -6667,7 +6667,7 @@ section { } } -@media (max-width: 1240px) { +@media (max-width: 1500px) { .geo-explorer-layout { grid-template-columns: minmax(14rem, 16rem) minmax(28rem, 1fr); height: auto;