Files
web/components/TempDesignSystem/Grids/Dynamic/dynamic.module.css
2024-06-13 10:00:16 +02:00

19 lines
319 B
CSS

.grid {
display: grid;
gap: var(--Spacing-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);
}
}