From 5c4c755d660dc816d21627913402659023cd7cf6 Mon Sep 17 00:00:00 2001 From: shenron Date: Sat, 14 Feb 2026 15:03:34 -0500 Subject: [PATCH] UI: Increase map size with 5:1 ratio and 600px min-height --- src/app/map/map.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/app/map/map.css b/src/app/map/map.css index fcb8979..a6573a5 100644 --- a/src/app/map/map.css +++ b/src/app/map/map.css @@ -7,14 +7,15 @@ } .map-column { - flex: 3; + flex: 5; display: flex; flex-direction: column; } .data-column { flex: 1; - min-width: 300px; + min-width: 320px; + max-width: 400px; display: flex; flex-direction: column; background-color: #f5f5f5; @@ -29,7 +30,7 @@ justify-content: center; align-items: center; width: 100%; - min-height: 500px; + min-height: 600px; } .country-info { @@ -74,12 +75,13 @@ h2 { font-size: 1.5rem; } -@media (max-width: 768px) { +@media (max-width: 968px) { .container { flex-direction: column; } .map-column, .data-column { flex: 1; + max-width: none; } }