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

fixes #17583: only include clearfix on make-container mixin when not in flex mode

This commit is contained in:
Mark Otto
2015-09-12 12:30:57 -07:00
parent b811f8cf96
commit 339130c040
+4 -1
View File
@@ -7,7 +7,10 @@
margin-left: auto; margin-left: auto;
padding-left: ($gutter / 2); padding-left: ($gutter / 2);
padding-right: ($gutter / 2); padding-right: ($gutter / 2);
@include clearfix(); @if $enable-flex {
} @else {
@include clearfix();
}
} }