at the moment I have hundred websites using icomoon. The system builds styles using node-sass – we want to switch to the sass package. And here comes the problem:
Sometimes, to insert an icon, we use extend, which is not possible in sass package:
<code>.simple-class {
@extend %font-icomoon;
@extend .icon-messenger:before;
}
</code>
<code>.simple-class {
@extend %font-icomoon;
@extend .icon-messenger:before;
}
</code>
.simple-class {
@extend %font-icomoon;
@extend .icon-messenger:before;
}
When I use the sass package – I get an error:
How are you dealing with this?
I have several hundred pages and I need to edit it somehow so as not to go through each page manually.