]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Add spacing b/w else and if! 10415/head
authorharry <harmanmanchanda182@gmail.com>
Fri, 14 Jul 2017 17:27:59 +0000 (22:57 +0530)
committerharry <harmanmanchanda182@gmail.com>
Fri, 14 Jul 2017 17:27:59 +0000 (22:57 +0530)
scss/util/_mixins.scss

index 9d8658e47cebbdd4842fe4b9d16efd816c24e42b..d5dbfdb656b408994c59d3be7202d0add0d99599 100644 (file)
 
   @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;
   }
 }