sass / node-sass

:rainbow: Node.js bindings to libsass

Home Page:https://npmjs.org/package/node-sass

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Compiler removed the -- from the css variable

jennnorichi opened this issue · comments

I wrote a scss code which is like this

.block{ .content{ font-size:20px; color: var(--3u7u-text-colour); } }

which translates to css into this

.block .content { font-size: 20px; color: var(3u7u-text-colour); }

The -- in the css variable is removed.

node-sass 8.0.0 (Wrapper) [JavaScript]
libsass 3.5.5 (Sass Compiler) [C/C++]