feat: Resolve deprecation warning for sass if()

This commit is contained in:
sthag 2026-04-23 22:41:57 +02:00
parent 08b2054d43
commit b6a9c8e086

View file

@ -31,7 +31,7 @@
@extend p; @extend p;
column-count: #{$i}; column-count: #{$i};
column-gap: if($i < 3, config.$space_small, config.$space_medium); column-gap: if(sass($i < 3): config.$space_small; else: config.$space_medium;);
} }
} }
} }