mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
17 lines
240 B
CSS
17 lines
240 B
CSS
.bar {
|
|
display: flex;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.bar > div + div {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
@media only screen and (max-width: 992px) {
|
|
.bar {
|
|
justify-content: space-between;
|
|
}
|
|
.bar > div:nth-child(n + 3) {
|
|
display: none;
|
|
}
|
|
}
|