]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Indetation Fix - Border Box Utilities!
authorharry <harmanmanchanda182@gmail.com>
Wed, 19 Apr 2017 17:37:08 +0000 (23:07 +0530)
committerharry <harmanmanchanda182@gmail.com>
Wed, 19 Apr 2017 17:37:08 +0000 (23:07 +0530)
scss/prototype/_border-box.scss

index d830142b0e70ed0fc0d96335083461506f118563..1ab606f11b4a8b6d7c08285f81e9bd3518ff23fc 100644 (file)
@@ -12,22 +12,22 @@ $prototype-border-box-breakpoints: $global-prototype-breakpoints !default;
 
 /// Border box utility
 @mixin border-box {
-       box-sizing: border-box !important;
+  box-sizing: border-box !important;
 }
 
 @mixin foundation-prototype-border-box {
-       .border-box {
-               @include border-box;
-       }
+  .border-box {
+    @include border-box;
+  }
 
-       @if ($prototype-border-box-breakpoints) {
+  @if ($prototype-border-box-breakpoints) {
     // Loop through Responsive Breakpoints
     @each $size in $breakpoint-classes {
       @include breakpoint($size) {
         @if $size != $-zf-zero-breakpoint {
           .#{$size}-border-box {
-                                               @include border-box;
-                                       }
+            @include border-box;
+          }
         }
       }
     }