My HTML is like below
<li class="category">Hair</li>
My CSS code is like below
.category:hover:after {
position: absolute;
content: "\f054" !important;
font-family: "Font Awesome 5 Free";
font-weight: 900;
right: 18px;
top: 15px;
font-size: 18px;
color: #ff0052;
}
When I hover on Hair
, color is not changing to #ff0052
.