Files
web/components/TempDesignSystem/Grids/Stackable/stackable.module.css
2024-10-15 13:09:45 +02:00

24 lines
368 B
CSS

.container {
display: grid;
gap: var(--Spacing-x2);
}
/* Hide Scrollbar Chrome, Safari and Opera */
.container::-webkit-scrollbar {
display: none;
}
@media (min-width: 768px) {
.threeColumns {
grid-template-columns: repeat(3, 1fr);
}
.twoColumns {
grid-template-columns: repeat(2, 1fr);
}
.oneColumn {
grid-template-columns: 1fr;
}
}