umami/src/components/metrics/MetricsBar.module.css

12 lines
201 B
CSS
Raw Normal View History

2020-08-19 21:35:38 +00:00
.bar {
2023-10-03 06:51:26 +00:00
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, max-content));
2023-02-09 16:22:36 +00:00
gap: 20px;
2023-04-10 03:22:28 +00:00
}
2023-10-03 06:51:26 +00:00
@media screen and (max-width: 768px) {
.bar {
grid-template-columns: 1fr 1fr;
2020-08-02 07:51:26 +00:00
}
}