In my CSS code, I have specified the styling for the selected mat-step
as follows:
::ng-deep .mat-step-header .mat-step-icon-selected {
background-color: #a94442;
}
While this code works well, I encountered a need to update only certain blue icons:
https://i.sstatic.net/Ip565.png
I attempted the following modification:
::ng-deep .mat-step-header .mat-step-icon {
background-color: #a94442;
}
However, this change affected steps 4, 5, and 6 in addition to steps 1 and 2, which was not desired.
Do you have any suggestions on how to address this issue? Thank you!