From d240d808dd8e84788f1e940cc9877fef818690df Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 31 Jul 2026 00:39:06 +0200 Subject: [PATCH] Fix minor formatting issue in breakpoint-max function in SCSS mixins --- core/scss/mixins/bootstrap/_breakpoints.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/scss/mixins/bootstrap/_breakpoints.scss b/core/scss/mixins/bootstrap/_breakpoints.scss index 15c0d125c..4ebbbe41f 100644 --- a/core/scss/mixins/bootstrap/_breakpoints.scss +++ b/core/scss/mixins/bootstrap/_breakpoints.scss @@ -30,7 +30,7 @@ // `min-` and `max-` prefixes and viewports with fractional widths. @function breakpoint-max($name, $breakpoints: $grid-breakpoints) { $max: map.get($breakpoints, $name); - @return if($max and $max > 0, $max - .02, null); + @return if($max and $max > 0, $max - 0.02, null); } // Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.