umami/components/layout/AppLayout.module.css

16 lines
193 B
CSS
Raw Normal View History

2020-09-20 10:33:39 +02:00
.layout {
display: grid;
grid-template-rows: 1fr;
2023-02-04 17:59:52 +01:00
grid-template-columns: max-content 1fr;
}
.nav {
grid-row: 1 / 3;
}
.body {
grid-area: 1 / 2;
overflow: auto;
2023-02-09 17:22:36 +01:00
height: 100vh;
2020-09-20 10:33:39 +02:00
}