umami/components/layout/AppLayout.module.css

17 lines
221 B
CSS
Raw Normal View History

2020-09-20 10:33:39 +02:00
.layout {
display: grid;
grid-template-rows: 1fr;
grid-template-columns: minmax(60px, 200px) 1fr;
height: 100vh;
overflow: hidden;
}
.nav {
grid-row: 1 / 3;
}
.body {
grid-area: 1 / 2;
overflow: auto;
2020-09-20 10:33:39 +02:00
}