diff --git a/web/src/components/WeatherDetailModal.tsx b/web/src/components/WeatherDetailModal.tsx index c803e5e..edbb30e 100644 --- a/web/src/components/WeatherDetailModal.tsx +++ b/web/src/components/WeatherDetailModal.tsx @@ -112,35 +112,39 @@ export default function WeatherDetailModal({ weather, hourly, onClose, accentCol -
- {hourly.map((slot, i) => ( -
- - {i === 0 ? "Jetzt" : slot.time} - - {slot.icon} - - {Math.round(slot.temp)}° - - {slot.precip_chance > 0 && ( - - {slot.precip_chance}% +
+
+ {hourly.map((slot, i) => ( +
+ + {i === 0 ? "Jetzt" : slot.time} - )} -
- ))} + {slot.icon} + + {Math.round(slot.temp)}° + + {slot.precip_chance > 0 && ( + + {slot.precip_chance}% + + )} +
+ ))} +
+ {/* Scroll fade hint */} +
)}