From 5156234c23956cb944469173f28ffd5a85966f55 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 27 Jun 2013 19:54:30 -0700 Subject: [PATCH] update grid col mixin to use latest css from grid cols --- less/mixins.less | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/less/mixins.less b/less/mixins.less index 879836a8c6..eb5cbb964b 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -443,9 +443,6 @@ // Generate the columns .make-column(@columns) { position: relative; - // Float and set width: 100%; for easy stacking on mobile devices - float: left; - width: 100%; // Prevent columns from collapsing when empty min-height: 1px; // Inner gutter via padding @@ -454,6 +451,7 @@ // Calculate width based on number of columns available @media (min-width: @grid-float-breakpoint) { + float: left; width: percentage((@columns / @grid-columns)); } }