Prepares for Web Animations API integration.

Removes a height transition and sets an initial height,
paving the way for future integration with the Web Animations API.
This commit is contained in:
Janus Knudsen 2025-09-01 23:44:37 +02:00
parent 542a6874d0
commit 8332f2c748

View file

@ -56,7 +56,6 @@ swp-header-spacer {
border-bottom: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
z-index: 5; /* Higher than time-axis to cover it when scrolling */ z-index: 5; /* Higher than time-axis to cover it when scrolling */
position: relative; position: relative;
transition: height 150ms ease; /* Smooth height transitions */
} }
@ -274,6 +273,7 @@ swp-allday-container {
padding: 2px; padding: 2px;
align-items: center; align-items: center;
overflow: hidden; overflow: hidden;
height: 0px; /* Initial height for Web Animation API */
} }
/* All-day events in containers */ /* All-day events in containers */