mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
11 lines
201 B
CSS
11 lines
201 B
CSS
.bar {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(140px, max-content));
|
|
gap: 20px;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.bar {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
}
|