From edcdc83a0e1600996d12e94a102fc85f84c3ed16 Mon Sep 17 00:00:00 2001 From: zv Date: Sun, 14 Jun 2026 10:09:33 +0200 Subject: [PATCH] fix: round forecast modal on mobile --- components/forecast/day-forecast-modal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/forecast/day-forecast-modal.tsx b/components/forecast/day-forecast-modal.tsx index 3180c9c..c4f86a5 100644 --- a/components/forecast/day-forecast-modal.tsx +++ b/components/forecast/day-forecast-modal.tsx @@ -98,7 +98,7 @@ export function DayForecastModal({ role="dialog" aria-modal="true" aria-labelledby="day-forecast-title" - className="h-full max-h-full w-full overflow-hidden bg-background shadow-card sm:max-w-6xl sm:rounded-panel sm:border sm:border-border/70" + className="h-full max-h-full w-full overflow-hidden rounded-panel border border-border/70 bg-background shadow-card sm:max-w-6xl" initial={{ opacity: 0, y: 28, scale: 0.985 }} animate={{ opacity: 1, y: 0, scale: 1 }} exit={{ opacity: 0, y: 20, scale: 0.99 }}