19 lines
317 B
CSS
19 lines
317 B
CSS
.grid {
|
|
display: grid;
|
|
gap: var(--Space-x2);
|
|
grid-auto-flow: dense;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.grid {
|
|
grid-template-columns: repeat(8, 1fr);
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.grid {
|
|
grid-template-columns: repeat(12, 1fr);
|
|
}
|
|
}
|