mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
15 lines
188 B
CSS
15 lines
188 B
CSS
.menu {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-top: 40px;
|
|
}
|
|
|
|
.content {
|
|
min-height: 50vh;
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
.menu {
|
|
display: none;
|
|
}
|
|
}
|