From: Geoff Kimball Date: Fri, 20 Nov 2015 21:43:26 +0000 (-0800) Subject: Fix last element in a block grid floating right and not left X-Git-Tag: v6.0.2~2^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=251ed9e23d87c651337068d885d037a5fc18f0c3;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fix last element in a block grid floating right and not left --- diff --git a/scss/grid/_layout.scss b/scss/grid/_layout.scss index 104e6b52e..d2dd856d5 100644 --- a/scss/grid/_layout.scss +++ b/scss/grid/_layout.scss @@ -24,5 +24,9 @@ &:nth-of-type(#{$n}n+1) { clear: both; } + + &:last-child { + float: left; + } } }