2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-20 20:00:36 +03:00

Merge pull request #17756 from zalog/patch-11

Flexbox grid column wrapping bug
This commit is contained in:
Mark Otto
2016-01-07 00:29:23 -08:00
+1
View File
@@ -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);
} }