diff options
| author | Mark Otto <[email protected]> | 2016-02-06 10:51:59 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-02-06 10:51:59 -0800 |
| commit | 414997baa83858b43e9f45af90097f93ed2d6797 (patch) | |
| tree | c4435f7e3df2d09d1053ba29c1883a110fad5823 /scss/_grid.scss | |
| parent | 94999c98cf3a19a2aa020fb946027747e7ef3d26 (diff) | |
| download | bootstrap-414997baa83858b43e9f45af90097f93ed2d6797.tar.xz bootstrap-414997baa83858b43e9f45af90097f93ed2d6797.zip | |
flip things around again, no more base class, try out some new stuff to keep responsive flex grid working
Diffstat (limited to 'scss/_grid.scss')
| -rw-r--r-- | scss/_grid.scss | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scss/_grid.scss b/scss/_grid.scss index 78a0d91a9..6da25b122 100644 --- a/scss/_grid.scss +++ b/scss/_grid.scss @@ -36,16 +36,16 @@ // Common styles for small and large grid columns @if $enable-grid-classes { - .col { + [class^="col"] { position: relative; min-height: 1px; padding-right: ($grid-gutter-width / 2); padding-left: ($grid-gutter-width / 2); - - // Allow `.col` to use an automatic, even width when flex mode is enabled - @if $enable-flex { - flex: 1; - } + // + // // Allow `.col` to use an automatic, even width when flex mode is enabled + // @if $enable-flex { + // flex: 1; + // } } @include make-grid-columns(); |
