We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 290ba0a + 6744163 commit d24bbb3Copy full SHA for d24bbb3
src/sass/formkit-primevue.scss
@@ -1,4 +1,5 @@
1
@use 'sass:math';
2
+@use 'sass:map';
3
4
$gutter-width: 0.5rem;
5
@@ -12,7 +13,7 @@ $grid-breakpoints: (
12
13
) !default;
14
15
@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {
- $min: map-get($breakpoints, $name);
16
+ $min: map.get($breakpoints, $name);
17
@return if($min != 0, $min, null);
18
}
19
@@ -303,7 +304,7 @@ $grid-breakpoints: (
303
304
305
@for $i from 1 through 12 {
306
.col-#{$i} {
- width: percentage(math.div($i, 12));
307
+ width: math.percentage(math.div($i, 12));
308
309
310
0 commit comments