mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
12 lines
201 B
CSS
12 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;
|
|
}
|
|
}
|