Hi to the random people who stumble across this question!
Here's a simple codepen demo to illustrate my problem.
.svg::before {
content: url(/* SVG url */);
/* Fill don't work */
fill: #FFF;
}
As you can see above ( as if the comment and the title isn't obvious enough ), fill doesn't seem to work pseudo SVG element.
Is there any workaround or solutions to this problem or do I have to hard-code the fill on the SVG element?