umami/components/metrics/MetricsBar.module.css

18 lines
231 B
CSS
Raw Normal View History

2020-08-19 23:35:38 +02:00
.bar {
display: flex;
2020-08-19 23:35:38 +02:00
cursor: pointer;
2020-10-03 19:53:06 +02:00
min-height: 80px;
2023-02-09 17:22:36 +01:00
gap: 20px;
2023-04-10 05:22:28 +02:00
flex-wrap: wrap;
}
.card {
justify-self: flex-start;
2020-09-22 06:34:55 +02:00
}
2020-08-19 23:35:38 +02:00
@media only screen and (max-width: 992px) {
2023-04-10 05:22:28 +02:00
.card {
flex-basis: calc(50% - 20px);
2020-08-02 09:51:26 +02:00
}
}