umami/src/components/layout/MenuLayout.module.css

32 lines
401 B
CSS
Raw Normal View History

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