From 91a583941b0481d166ed27e07064046116caa0f5 Mon Sep 17 00:00:00 2001 From: yandrik Date: Thu, 23 Oct 2025 19:30:07 +0200 Subject: [PATCH] fix(map): fix map display on mobile --- style.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 0546cda..3e84d33 100644 --- a/style.css +++ b/style.css @@ -1284,6 +1284,7 @@ p { #map { width: 100%; height: 100%; + min-height: 320px; border-radius: var(--radius-base); } @@ -1413,6 +1414,10 @@ p { order: 1; min-height: 60vh; } + + #map { + min-height: max(320px, 60vh); + } .app-header { padding: var(--space-12) var(--space-16); @@ -1468,4 +1473,4 @@ p { @font-face { font-family: 'FKGroteskNeue'; src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2') format('woff2'); -} \ No newline at end of file +}