14 lines
238 B
CSS
14 lines
238 B
CSS
.bar {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(140px, max-content));
|
|
gap: 20px;
|
|
width: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.bar {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
}
|