diff options
author | Thomas Park <thomas@thomaspark.me> | 2014-11-12 15:34:02 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2014-11-12 15:34:02 -0500 |
commit | 4e5b5fd0ee3d3e1856f32d5956cb7c8cc1029254 (patch) | |
tree | d32fa80285b3e7e0dd516794ccf382a706be2569 /bower_components/bootstrap/less/mixins | |
parent | fa6487a9732f63b66399829fe3463a6192a26554 (diff) |
update bootstrap to 3.3.1
Diffstat (limited to 'bower_components/bootstrap/less/mixins')
-rw-r--r-- | bower_components/bootstrap/less/mixins/grid-framework.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bower_components/bootstrap/less/mixins/grid-framework.less b/bower_components/bootstrap/less/mixins/grid-framework.less index 63178546..f3b3929d 100644 --- a/bower_components/bootstrap/less/mixins/grid-framework.less +++ b/bower_components/bootstrap/less/mixins/grid-framework.less @@ -5,7 +5,7 @@ .make-grid-columns() { // Common styles for all sizes of grid columns, widths 1-12 - .col(@index) when (@index = 1) { // initial + .col(@index) { // initial @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}"; .col((@index + 1), @item); } @@ -27,7 +27,7 @@ } .float-grid-columns(@class) { - .col(@index) when (@index = 1) { // initial + .col(@index) { // initial @item: ~".col-@{class}-@{index}"; .col((@index + 1), @item); } |