From: Geoff Kimball Date: Fri, 20 Nov 2015 20:21:55 +0000 (-0800) Subject: Fix .end class not applying correctly after other changes were made to grid float... X-Git-Tag: v6.0.2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb727fbe90d0c31bea64aef1405d979d2bf7fa2b;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fix .end class not applying correctly after other changes were made to grid float behavior --- diff --git a/scss/grid/_position.scss b/scss/grid/_position.scss index b2b77e4f6..f7ed8b55f 100644 --- a/scss/grid/_position.scss +++ b/scss/grid/_position.scss @@ -40,7 +40,10 @@ /// Disable the default behavior of the last column in a row aligning to the opposite edge. @mixin grid-column-end() { - float: $global-left; + // This extra specificity is required for the property to be applied + &:last-child { + float: $global-left; + } } /// Shorthand for `grid-column-position()`.