Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
f88cbe7e
Commit
f88cbe7e
authored
9 years ago
by
Gleb Mazovetskiy
Browse files
Options
Download
Email Patches
Plain Diff
Fix -flex compile on Sass Ruby
#17046
parent
6b1cf58d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scss/mixins/_grid-framework.scss
+4
-6
scss/mixins/_grid-framework.scss
with
4 additions
and
6 deletions
+4
-6
scss/mixins/_grid-framework.scss
+
4
-
6
View file @
f88cbe7e
...
...
@@ -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
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment