umami/components/layout/AppLayout.module.css

22 lines
327 B
CSS
Raw Normal View History

2020-09-20 10:33:39 +02:00
.layout {
display: grid;
2023-03-22 05:28:36 +01:00
grid-template-rows: max-content 1fr;
grid-template-columns: 1fr;
}
.nav {
2023-03-22 05:28:36 +01:00
height: 60px;
width: 100vw;
z-index: var(--z-index-overlay);
2023-03-22 05:28:36 +01:00
grid-column: 1;
grid-row: 1 / 2;
}
.body {
2023-03-22 05:28:36 +01:00
grid-column: 1;
grid-row: 2 / 3;
min-height: 0;
2023-03-24 18:55:20 +01:00
height: calc(100vh - 60px);
2023-03-22 05:28:36 +01:00
overflow-y: auto;
2020-09-20 10:33:39 +02:00
}