Fix: Mehrtägige Events auf Tagesende begrenzt, Stundenhöhen weiter reduziert

Timed-Events in Wochen-/Tagesansicht werden jetzt auf Mitternacht (24:00) des Starttages gekürzt – keine kilometerhohen Balken mehr bei tagesübergreifenden Terminen. Stundenhöhen: 36/54/72/90 → 28/44/60/80px; Kompakt (28px) zeigt 24h = 672px.
This commit is contained in:
2026-04-08 14:27:24 +02:00
parent ea7442db32
commit b40e8c6731
4 changed files with 11 additions and 9 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 || 54;
const hh = settings.hour_height || 44;
root.style.setProperty('--hour-h', hh + 'px');
}