umami/components/layout/AppLayout.module.css
2023-04-01 20:40:01 -07:00

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;
}