diff --git a/packages/layout/scss/_breakpoint.scss b/packages/layout/scss/_breakpoint.scss index 625f7506e24e..bfea7de7e4c7 100644 --- a/packages/layout/scss/_breakpoint.scss +++ b/packages/layout/scss/_breakpoint.scss @@ -198,12 +198,12 @@ $carbon--grid-breakpoints: ( @if $min and $max { $min-width: if( not $is-number-lower and $min, - map-get($min, width + 0.02), + map-get($min, width) + 0.02, $min ); $max-width: if( not $is-number-upper and $max, - map-get($max, width - 0.02), + map-get($max, width) - 0.02, $max ); @media (min-width: $min-width) and (max-width: $max-width) {