umami/components/layout/SettingsLayout.module.css

16 lines
188 B
CSS
Raw Normal View History

2023-03-23 19:46:49 +01:00
.menu {
display: flex;
flex-direction: column;
2023-03-24 18:55:20 +01:00
padding-top: 40px;
2023-03-23 19:46:49 +01:00
}
.content {
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-04-12 22:40:19 +02:00
@media only screen and (max-width: 768px) {
.menu {
display: none;
}
2023-03-24 00:33:10 +01:00
}