Commit 7f075bfb authored by Mark Otto's avatar Mark Otto Committed by Mark Otto
Browse files

fixes #22135

parent 09f98fbd
Showing with 6 additions and 3 deletions
+6 -3
...@@ -262,15 +262,18 @@ ...@@ -262,15 +262,18 @@
// Columns // Columns
// //
@include media-breakpoint-up(sm) { .card-columns {
.card-columns { .card {
margin-bottom: $card-columns-margin;
}
@include media-breakpoint-up(sm) {
column-count: $card-columns-count; column-count: $card-columns-count;
column-gap: $card-columns-gap; column-gap: $card-columns-gap;
.card { .card {
display: inline-block; // Don't let them vertically span multiple columns display: inline-block; // Don't let them vertically span multiple columns
width: 100%; // Don't let their width change width: 100%; // Don't let their width change
margin-bottom: $card-columns-margin;
} }
} }
} }
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment