This commit is contained in:
Janus Knudsen 2025-07-30 00:34:50 +02:00
parent a410088fa7
commit 00b374617f

View file

@ -14,9 +14,9 @@
/* Main calendar container - full height */ /* Main calendar container - full height */
swp-calendar { swp-calendar {
display: flex; display: grid;
flex-direction: column; grid-template-rows: auto 1fr;
height: 100vh; height: calc(100vh - 20px);
width: 100%; width: 100%;
background: var(--color-background); background: var(--color-background);
position: relative; position: relative;
@ -37,7 +37,6 @@ swp-calendar-nav {
/* Calendar container grid - POC structure */ /* Calendar container grid - POC structure */
swp-calendar-container { swp-calendar-container {
flex: 1;
display: grid; display: grid;
grid-template-columns: 60px 1fr 20px; grid-template-columns: 60px 1fr 20px;
grid-template-rows: auto 1fr 20px; grid-template-rows: auto 1fr 20px;