79244984

Date: 2024-12-02 17:19:06
Score: 0.5
Natty:
Report link

Actual way to do it, according to docs:

CSS:

@use '@angular/material' as mat;

.your-class {
    mat-spinner {
        @include mat.progress-spinner-overrides((
            active-indicator-color: orange,
        ));
    }
}

HTML:

<div class="your-class">
    <mat-spinner></mat-spinner>
</div>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Gereon99