I'm using PhpStorm's File Watcher to transpill SCSS into CSS. In my SCSS I have:
li {
&:before {
content: "•";
font-size: 85%;
padding-right: 5px;
}
}
but it transpiles to:
li:before {
content: "ÔÇó";
font-size: 85%;
padding-right: 5px;
}
How can I configure this to transpile properly?
(watcher: C:\Ruby23-x64\bin\scss.bat
)