From: jk Date: Wed, 13 Apr 2016 22:55:59 +0000 (+0200) Subject: fix 3 lint issues X-Git-Tag: v6.2.2-rc1~45^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3924c3a9afe56864d00fa23b734b3c7d2b3304d;p=thirdparty%2Ffoundation%2Ffoundation-sites.git fix 3 lint issues --- diff --git a/scss/util/_breakpoint.scss b/scss/util/_breakpoint.scss index 55bc0299d..15707b992 100644 --- a/scss/util/_breakpoint.scss +++ b/scss/util/_breakpoint.scss @@ -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.