Fix: Scroll-Navigation nur für Monat/Quartal, Stundenhöhen reduziert

Wheel-Scroll ändert Zeitraum jetzt nur noch in Monats- und Quartalsansicht. In Wochen-, Tag- und Terminansicht scrollt die Seite normal. Stundenhöhen: 40/60/80/100 → 36/54/72/90px; Kompakt (36px) zeigt 24h auf 1080p ohne Scrollen.
This commit is contained in:
2026-04-08 14:19:13 +02:00
parent e9a307a20d
commit dea15191d8
3 changed files with 10 additions and 10 deletions

View File

@@ -92,7 +92,7 @@ export function applyTheme(settings) {
root.style.setProperty('--border', lc.border);
root.style.setProperty('--border-light', lc.light);
const hh = settings.hour_height || 60;
const hh = settings.hour_height || 54;
root.style.setProperty('--hour-h', hh + 'px');
}