Add: München als 3. Wetter-Location + Wetter-Detail-Modal

- München als tertiärer Standort (iris-Akzent) hinzugefügt
- Klick auf WeatherCard öffnet Detail-Modal mit:
  - 24h stündliche Prognose (horizontal scrollbar)
  - 7-Tage-Vorhersage mit Temperaturbalken
  - Wind, Feuchte, Sonnenauf/-untergang
- Backend: 7-Tage statt 3-Tage Forecast, 24 Hourly-Slots pro Standort
- Backend: forecast_3day → forecast Feldname-Konsistenz
- Dashboard: 3-Spalten Wetter-Grid statt 4 (HourlyForecast → Modal)
- Admin: Tertiärer Standort konfigurierbar
- THERMAL Design: iris glow, modal animation, Portal-basiertes Modal

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sam 2026-03-03 01:13:49 +01:00
parent d9626108e6
commit 2f56be835e
13 changed files with 379 additions and 36 deletions

View file

@ -54,6 +54,7 @@ export default {
"slide-in": "slideIn 0.3s ease-out both",
"scan": "scan 1.5s ease-in-out infinite",
"glow-pulse": "glowPulse 2s ease-in-out infinite",
"modal-in": "modalIn 0.25s ease-out both",
},
keyframes: {
fadeIn: {
@ -72,6 +73,10 @@ export default {
"0%, 100%": { opacity: "0.5" },
"50%": { opacity: "1" },
},
modalIn: {
"0%": { opacity: "0", transform: "scale(0.95) translateY(8px)" },
"100%": { opacity: "1", transform: "scale(1) translateY(0)" },
},
},
},
},