From: harry Date: Fri, 14 Jul 2017 17:27:59 +0000 (+0530) Subject: Add spacing b/w else and if! X-Git-Tag: v6.4.2-rc2~1^2~18^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10415%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Add spacing b/w else and if! --- diff --git a/scss/util/_mixins.scss b/scss/util/_mixins.scss index 9d8658e47..d5dbfdb65 100644 --- a/scss/util/_mixins.scss +++ b/scss/util/_mixins.scss @@ -21,14 +21,11 @@ @if ($side == top) { box-shadow: inset 0 $helper $size (-1)*$helper $color; - } - @elseif ($side == left) { + } @else if ($side == left) { box-shadow: inset $helper 0 $size (-1)*$helper $color; - } - @elseif ($side == right) { + } @else if ($side == right) { box-shadow: inset (-1)*$helper 0 $size (-1)*$helper $color; - } - @elseif ($side == bottom) { + } @else if ($side == bottom) { box-shadow: inset 0 (-1)*$helper $size (-1)*$helper $color; } }