Commit e598307a authored by Catalin Zalog's avatar Catalin Zalog
Browse files

v4 - flexbox ie10+ compatibility

parent a89bfc65
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