添加下面的 css 代码不起作用
.mat-progress-spinner circle, .mat-spinner circle { stroke: #002642; }
原来需要加上 :host ::ng-deep
:host ::ng-deep
:host ::ng-deep { .mat-progress-spinner circle, .mat-spinner circle { stroke: #002642; } }
参考 https://stackoverflow.com/a/56320038/5989202