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

Revamp grid classes to require .col base class and improve flexbox grid classes with auto layout via flex: 1

This commit is contained in:
Mark Otto
2016-02-06 00:45:29 -08:00
parent 18be3be3f4
commit 5a9538d4c7
3 changed files with 17 additions and 17 deletions
+3 -1
View File
@@ -35,7 +35,9 @@
@mixin make-col($gutter: $grid-gutter-width) {
position: relative;
@if not $enable-flex {
@if $enable-flex {
flex: 1;
} @else {
float: left;
}
min-height: 1px;