fix(map): fix map display on mobile

This commit is contained in:
2025-10-23 19:30:07 +02:00
parent 69767d0172
commit 91a583941b

View File

@ -1284,6 +1284,7 @@ p {
#map {
width: 100%;
height: 100%;
min-height: 320px;
border-radius: var(--radius-base);
}
@ -1414,6 +1415,10 @@ p {
min-height: 60vh;
}
#map {
min-height: max(320px, 60vh);
}
.app-header {
padding: var(--space-12) var(--space-16);
}