11 lines
248 B
CSS
11 lines
248 B
CSS
.layout {
|
|
--header-height: 4.5rem;
|
|
|
|
background-color: var(--Scandic-Brand-Warm-White);
|
|
display: grid;
|
|
font-family: var(--typography-Body-Regular-fontFamily);
|
|
gap: var(--Spacing-x3);
|
|
grid-template-rows: auto 1fr;
|
|
min-height: 100dvh;
|
|
}
|