1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-06 19:32:22 +04:00
Files
tabler/.changeset/fix-sass-if-function-syntax.md
codecalm 4ef2bae0a3 Fix invalid Sass if() syntax breaking the core build
The syntax `if(sass(cond): a; else: b)` is not valid Sass — it broke
compilation of core/scss entirely. Restored the correct
`if(cond, a, b)` call form across all 22 affected files.
2026-07-31 00:28:23 +02:00

183 B

@tabler/core
@tabler/core
patch

Fixed invalid Sass if(sass(cond): a; else: b) syntax back to the correct if(cond, a, b) form across core/scss, which was breaking the Sass build.