Angular Material Progress Bar, Using Custom Colors
I have a Angular 5 project where I’m using a material progress bar. I want to use custom colors. I’ve tried several workarounds (including previous SO questions) , but cannot b
Solution 1:
https://i.stack.imgur.com/P98jU.png
/deep/ .mat-progress-bar-fill::after {
background-color: green;
}
/deep/ .mat-progress-bar-buffer {
background: #E4E8EB;
}
Post a Comment for "Angular Material Progress Bar, Using Custom Colors"