mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
17 lines
221 B
CSS
17 lines
221 B
CSS
.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;
|
|
}
|