Commit 2502f84d authored by Mark Otto's avatar Mark Otto
Browse files

Merge pull request #17756 from zalog/patch-11

Flexbox grid column wrapping bug
parents ed612b2b e598307a
Showing with 1 addition and 0 deletions
+1 -0
...@@ -46,6 +46,7 @@ ...@@ -46,6 +46,7 @@
@mixin make-col-span($size, $columns: $grid-columns) { @mixin make-col-span($size, $columns: $grid-columns) {
@if $enable-flex { @if $enable-flex {
flex: 0 0 percentage($size / $columns); flex: 0 0 percentage($size / $columns);
max-width: percentage($size / $columns);
} @else { } @else {
width: percentage($size / $columns); width: percentage($size / $columns);
} }
......
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