umami/components/metrics/MetricsBar.module.css
2020-10-03 10:53:06 -07:00

19 lines
260 B
CSS

.bar {
display: flex;
cursor: pointer;
min-height: 80px;
}
.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;
}
}