feat(map): make desktop map view taller using viewport height
All checks were successful
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 32s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 1m9s
Build and Push Docker Images / Build Pipeline (Meltano + dbt + Airflow) (push) Successful in 32s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 1s

Replace fixed 480px height with calc(100vh - 280px) so the map
fills most of the viewport on any screen size, clamped between
520px and 800px.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-30 09:29:12 +01:00
parent 5aed055331
commit cd6a5d092c

View File

@@ -84,7 +84,9 @@
display: grid;
grid-template-columns: 1fr 340px;
gap: 1rem;
height: 480px;
height: calc(100vh - 280px);
min-height: 520px;
max-height: 800px;
}
.mapContainer {