Commit f88cbe7e authored by Gleb Mazovetskiy's avatar Gleb Mazovetskiy
Browse files

Fix -flex compile on Sass Ruby #17046

parent 6b1cf58d
Showing with 4 additions and 6 deletions
+4 -6
......@@ -22,15 +22,13 @@
@include media-breakpoint-up($breakpoint) {
// Work around cross-media @extend (https://github.com/sass/sass/issues/1050)
%grid-column-float-#{$breakpoint} {
@if $enable-flex {
// Do nothing
} @else {
float: left;
}
float: left;
}
@for $i from 1 through $columns {
.col-#{$breakpoint}-#{$i} {
@extend %grid-column-float-#{$breakpoint};
@if not $enable-flex {
@extend %grid-column-float-#{$breakpoint};
}
@include make-col-span($i, $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