UI: Increase map size with 5:1 ratio and 600px min-height

This commit is contained in:
2026-02-14 15:03:34 -05:00
parent fbfdceeea6
commit 5c4c755d66

View File

@@ -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;
}
}