From: Geoff Kimball Date: Fri, 20 Nov 2015 23:37:01 +0000 (-0800) Subject: Fix specificity issue that added float: right; to column rows X-Git-Tag: v6.0.2~2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ec840ee6c17ae0d4f42f74d3b4000cf88c8f6ce;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fix specificity issue that added float: right; to column rows --- diff --git a/scss/grid/_classes.scss b/scss/grid/_classes.scss index d61be4d4c..4fd208943 100644 --- a/scss/grid/_classes.scss +++ b/scss/grid/_classes.scss @@ -70,7 +70,8 @@ } // Column row - .#{$column}.#{$row} { + // The double .row class is needed to bump up the specificity + .#{$column}.#{$row}.#{$row} { float: none; }