From: Andy Cochran Date: Wed, 28 Mar 2018 16:40:05 +0000 (-0400) Subject: more accurate -zf-zero-breakpoint error message X-Git-Tag: v6.6.0~3^2~258^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F11103%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git more accurate -zf-zero-breakpoint error message --- diff --git a/scss/util/_breakpoint.scss b/scss/util/_breakpoint.scss index 05cc9dd6b..253578321 100644 --- a/scss/util/_breakpoint.scss +++ b/scss/util/_breakpoint.scss @@ -25,7 +25,7 @@ $-zf-zero-breakpoint: small !default; $-zf-breakpoints-keys: map-to-list($breakpoints, 'keys'); @if nth(map-values($breakpoints), 1) != 0 { - @error 'Your smallest breakpoint (defined in $breakpoints) must be set to "0".'; + @error 'The first key in the $breakpoints map must have a value of "0".'; } @else { $-zf-zero-breakpoint: nth(map-keys($breakpoints), 1);