umami/components/pages/reports/reports.module.css

25 lines
370 B
CSS
Raw Normal View History

2023-05-18 08:20:06 +02:00
.container {
display: grid;
2023-05-20 18:02:08 +02:00
grid-template-rows: max-content 1fr;
2023-05-18 08:20:06 +02:00
grid-template-columns: max-content 1fr;
}
2023-05-20 18:02:08 +02:00
.header {
grid-row: 1 / 2;
grid-column: 1 / 3;
}
2023-05-18 08:20:06 +02:00
.menu {
width: 300px;
2023-05-20 18:02:08 +02:00
padding-right: 20px;
border-right: 1px solid var(--base300);
grid-row: 2/3;
2023-05-18 08:20:06 +02:00
grid-column: 1 / 2;
}
2023-05-20 18:02:08 +02:00
.body {
padding-left: 20px;
grid-row: 2/3;
2023-05-18 08:20:06 +02:00
grid-column: 2 / 3;
}