umami/src/app/(main)/layout.module.css

23 lines
336 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;
2023-06-16 05:15:31 +02:00
overflow: hidden;
}
.nav {
2023-03-22 05:28:36 +01:00
height: 60px;
width: 100vw;
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;
2023-08-02 09:56:52 +02:00
padding-bottom: 60px;
2020-09-20 10:33:39 +02:00
}