umami/components/layout/AppLayout.module.css
2023-02-09 08:22:36 -08:00

16 lines
193 B
CSS

.layout {
display: grid;
grid-template-rows: 1fr;
grid-template-columns: max-content 1fr;
}
.nav {
grid-row: 1 / 3;
}
.body {
grid-area: 1 / 2;
overflow: auto;
height: 100vh;
}