diff --git a/components/forecast/day-forecast-modal.tsx b/components/forecast/day-forecast-modal.tsx index d149971..e8dbbc8 100644 --- a/components/forecast/day-forecast-modal.tsx +++ b/components/forecast/day-forecast-modal.tsx @@ -96,85 +96,87 @@ export function DayForecastModal({ role="dialog" aria-modal="true" aria-labelledby="day-forecast-title" - className="weather-scrollbar h-full w-full overflow-y-auto bg-background shadow-card sm:max-w-6xl sm:rounded-panel sm:border sm:border-border/70" + className="h-full w-full overflow-hidden bg-background shadow-card sm:max-w-6xl sm:rounded-panel sm:border sm:border-border/70" initial={{ opacity: 0, y: 28, scale: 0.985 }} animate={{ opacity: 1, y: 0, scale: 1 }} exit={{ opacity: 0, y: 20, scale: 0.99 }} transition={{ type: "spring", stiffness: 260, damping: 28 }} onPointerDown={(event) => event.stopPropagation()} > -
-
{formattedDate}
-{getForecastCondition(day.weatherCode, language)}
-{formatForecastTemperature(day.temperatureMax, language)}
-{formatForecastTemperature(day.temperatureMin, language)}
+
+
{formattedDate}
+{getForecastCondition(day.weatherCode, language)}
+{formatForecastTemperature(day.temperatureMax, language)}
+{formatForecastTemperature(day.temperatureMin, language)}
+{formatHour(hour.time)}
+{formatForecastTemperature(hour.temperature, language)}
+
+
{formatHour(hour.time)}
-{formatForecastTemperature(hour.temperature, language)}
-
-