I use the following css for the selected mat-step
:
::ng-deep .mat-step-header .mat-step-icon-selected {
background-color: #a94442;
}
It works fine but I need to change the blue ones:
Tried with:
::ng-deep .mat-step-header .mat-step-icon {
background-color: #a94442;
}
But that also changes the 4,5 and 6 steps, and I only need 1 and 2 to be changed.
Any idea on how to solve this? Thanks!