umami/components/layout/AppLayout.module.css
2023-02-08 23:14:11 -08:00

17 lines
212 B
CSS

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