From 74254be7c7a10f857ad609062242fa3b859b9f8d Mon Sep 17 00:00:00 2001 From: JasonMiller Date: Fri, 23 Feb 2018 09:18:17 -0500 Subject: [PATCH] remove leading zero from bp-max decrement --- scss/util/_breakpoint.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/util/_breakpoint.scss b/scss/util/_breakpoint.scss index 179d8557b..a9f5f4a72 100644 --- a/scss/util/_breakpoint.scss +++ b/scss/util/_breakpoint.scss @@ -77,7 +77,7 @@ $breakpoint-classes: (small medium large) !default; // Convert any pixel, rem, or unitless value to em $bp: -zf-bp-to-em($bp); @if $bp-max { - $bp-max: -zf-bp-to-em($bp-max) - 0.0001; + $bp-max: -zf-bp-to-em($bp-max) - .0001; } // Conditions to skip media query creation -- 2.47.2