2025-03-26 10:01:46 +07:00

27 lines
433 B
SCSS
Vendored

// Card deck
.card-deck {
display: flex;
flex-direction: column;
.card {
margin-bottom: $spacer;
}
@include media-breakpoint-up(sm) {
flex-flow: row wrap;
margin-right: -$spacer;
margin-left: -$spacer;
.card {
display: flex;
flex: 1 0 0%;
flex-direction: column;
margin-right: $spacer;
margin-bottom: 0; // Override the default
margin-left: $spacer;
}
}
}