From: Josh Moyers Date: Tue, 1 Dec 2015 18:34:10 +0000 (-0500) Subject: Removing important from _position.scss, using double :last-child instead X-Git-Tag: v6.0.5~16^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3deb97ea46fd9e8b99129e07b203afb4589e8235;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Removing important from _position.scss, using double :last-child instead --- diff --git a/scss/grid/_position.scss b/scss/grid/_position.scss index 3646b889f..891eb637d 100644 --- a/scss/grid/_position.scss +++ b/scss/grid/_position.scss @@ -42,8 +42,8 @@ /// Disable the default behavior of the last column in a row aligning to the opposite edge. @mixin grid-column-end() { // This extra specificity is required for the property to be applied - &:last-child { - float: $global-left !important; + &:last-child:last-child { + float: $global-left; } }