mirror of
https://github.com/tabler/tabler.git
synced 2026-08-06 19:32:22 +04:00
4ef2bae0a3
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.
183 B
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.