]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
fix 3 lint issues
authorjk <j.koehler@modulingo.de>
Wed, 13 Apr 2016 22:55:59 +0000 (00:55 +0200)
committerjk <j.koehler@modulingo.de>
Wed, 13 Apr 2016 22:55:59 +0000 (00:55 +0200)
scss/util/_breakpoint.scss

index 55bc0299dba4e5a9239fc312e37f3816040de35d..15707b992074c066641b841f49732b6f51f4b989 100644 (file)
@@ -20,10 +20,11 @@ $breakpoints: (
 
 $-zf-zero-breakpoint: small !default;
 
-@if nth(map-values($breakpoints),1) != 0 {
+@if nth(map-values($breakpoints), 1) != 0 {
   @error 'Your smallest breakpoint (defined in $breakpoints) must be set to "0".';
-} @else {
-  $-zf-zero-breakpoint: nth(map-keys($breakpoints),1);
+}
+@else {
+  $-zf-zero-breakpoint: nth(map-keys($breakpoints), 1);
 }
 
 /// All of the names in this list will be output as classes in your CSS, like `.small-12`, `.medium-6`, and so on. Each value in this list must also be in the `$breakpoints` map.