mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 20:57:17 +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;
|
|
}
|
|
}
|