Files
web/apps/scandic-web/components/Blocks/CardGallery/cardGallery.module.css
Erik Tiekstra 88644597df chore: Replaced deprecated Spacing variables with current values
Approved-by: Matilda Landström
2025-11-12 12:56:22 +00:00

26 lines
482 B
CSS

.cardsList {
list-style: none;
display: none;
gap: var(--Space-x4) var(--Space-x1);
}
.carousel .navigationButton {
top: 125px; /* Content card image has a fixed height of 250px, this centers the button */
}
@media screen and (min-width: 768px) {
.carousel {
display: none;
}
.cardsList {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (min-width: 1024px) {
.cardsList {
grid-template-columns: repeat(3, 1fr);
}
}