]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Fix specificity issue that added float: right; to column rows
authorGeoff Kimball <geoff@zurb.com>
Fri, 20 Nov 2015 23:37:01 +0000 (15:37 -0800)
committerGeoff Kimball <geoff@zurb.com>
Fri, 20 Nov 2015 23:37:01 +0000 (15:37 -0800)
scss/grid/_classes.scss

index d61be4d4c9cab2299d130dc3b388e5b80c364b4f..4fd20894355244a0d5752553351c4703673959ba 100644 (file)
@@ -70,7 +70,8 @@
   }
 
   // Column row
-  .#{$column}.#{$row} {
+  // The double .row class is needed to bump up the specificity
+  .#{$column}.#{$row}.#{$row} {
     float: none;
   }