ritwickdey / vscode-live-sass-compiler

Compile Sass or Scss file to CSS at realtime with live browser reload feature.
https://ritwickdey.github.io/vscode-live-sass-compiler/
MIT License
660 stars 168 forks source link

Live Sass Compiler adds "*" to every class select #577

Open bodymodul opened 2 years ago

bodymodul commented 2 years ago

Hi there,

i already "null" the autoprefixer but if I wrote this sass :

.border color: red

.classname background: black font-size: 5rem_

it will be compiled like this

"*" .border { color: red; }

"*" .classname { background: black; font-size: 5rem; }

*How can i get rid of the adding the "" to every CSS command ?**

glenn2223 commented 2 years ago

I suspect this may be an error with your SASS. However, do you get the same problem with my fork? See #486