umami/components/layout/SettingsLayout.module.css

17 lines
211 B
CSS
Raw Normal View History

2023-03-23 18:46:49 +00:00
.menu {
display: flex;
flex-direction: column;
2023-03-24 17:55:20 +00:00
padding-top: 40px;
2023-08-16 17:50:28 +00:00
padding-right: 20px;
2023-03-23 18:46:49 +00:00
}
.content {
2023-03-24 17:55:20 +00:00
min-height: 50vh;
2023-03-23 18:46:49 +00:00
}
2023-03-23 23:33:10 +00:00
2023-04-12 20:40:19 +00:00
@media only screen and (max-width: 768px) {
.menu {
display: none;
}
2023-03-23 23:33:10 +00:00
}