umami/components/layout/AppLayout.module.css
2023-02-04 08:59:52 -08:00

17 lines
213 B
CSS

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