1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-05 19:03:18 +04:00

Fix minor formatting issue in breakpoint-max function in SCSS mixins

This commit is contained in:
codecalm
2026-07-31 00:39:06 +02:00
parent 4ef2bae0a3
commit d240d808dd
+1 -1
View File
@@ -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.