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

32 lines
401 B
CSS
Raw Normal View History

2023-09-29 14:29:22 +02:00
.layout {
display: grid;
grid-template-columns: max-content 1fr;
gap: 20px;
}
2023-03-23 19:46:49 +01:00
.menu {
2023-09-29 14:29:22 +02:00
width: 240px;
2023-10-08 07:58:46 +02:00
padding-top: 34px;
2023-08-16 19:50:28 +02:00
padding-right: 20px;
2023-03-23 19:46:49 +01:00
}
.content {
2023-10-02 01:11:12 +02:00
display: flex;
flex-direction: column;
2023-03-24 18:55:20 +01:00
min-height: 50vh;
2023-03-23 19:46:49 +01:00
}
2023-03-24 00:33:10 +01:00
2023-10-11 19:02:32 +02:00
@media only screen and (max-width: 992px) {
.layout {
grid-template-columns: 1fr;
}
2023-04-12 22:40:19 +02:00
.menu {
display: none;
}
2023-08-28 07:06:26 +02:00
.content {
margin-top: 20px;
}
2023-03-24 00:33:10 +01:00
}