mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
22 lines
327 B
CSS
22 lines
327 B
CSS
.layout {
|
|
display: grid;
|
|
grid-template-rows: max-content 1fr;
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.nav {
|
|
height: 60px;
|
|
width: 100vw;
|
|
z-index: var(--z-index-overlay);
|
|
grid-column: 1;
|
|
grid-row: 1 / 2;
|
|
}
|
|
|
|
.body {
|
|
grid-column: 1;
|
|
grid-row: 2 / 3;
|
|
min-height: 0;
|
|
height: calc(100vh - 60px);
|
|
overflow-y: auto;
|
|
}
|