Currently, you are applying styles to the class .my-wrench
, which is the parent of mat-icon
. To style the icon itself, you need to target the mat-icon
element. Here is an example of how to apply styles to the icon.
.my-wrench mat-icon {
color: blue;
}
It should produce the desired style you want.