I have an icon svg like:
<svg width="90" height="90">
<image xlink:href="{{asset('images/menu-icons/some-icon.svg')}}"/>
</svg>
It is showing nice but i want to change the the color in some instances(like hover or selected)
I used:
.menu-item svg{
fill: red!IMPORTANT;
}
It doesn't change the color. Any help would be appreciated.