umami/components/metrics/MetricsBar.module.css

19 lines
260 B
CSS
Raw Normal View History

2020-08-19 21:35:38 +00:00
.bar {
display: flex;
2020-08-19 21:35:38 +00:00
cursor: pointer;
2020-10-03 17:53:06 +00:00
min-height: 80px;
}
2020-08-02 07:51:26 +00:00
2020-09-22 04:34:55 +00:00
.bar > div + div {
padding-left: 20px;
}
2020-08-19 21:35:38 +00:00
@media only screen and (max-width: 992px) {
.bar {
justify-content: space-between;
}
2020-09-22 04:34:55 +00:00
.bar > div:nth-child(n + 3) {
2020-08-02 07:51:26 +00:00
display: none;
}
}