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.
1 parent 387292f commit dc0ac49Copy full SHA for dc0ac49
test/migrators/calc_interpolation/calc_remove_interpolation.hrx
@@ -18,6 +18,9 @@ $d: 5;
18
// Nested and more interpolations
19
.a { .b: calc(#{$b} + max(#{$c, 2})); }
20
21
+// CSS Custom properties keep interpolation
22
+.a { --test: calc(#{$b} + 1);}
23
+
24
<==> output/entrypoint.scss
25
$b: 10;
26
$c: 1;
@@ -37,3 +40,6 @@ $d: 5;
37
40
38
41
39
42
.a { .b: calc($b + max($c, 2)); }
43
44
45
0 commit comments