Since Angular Material 15, there have been changes in how to apply styling for Angular Material components. In version 14, the following still worked for me, but not anymore:
::ng-deep .mat-checkbox .mat-checkbox-frame {
border-color: #fa3131;
}
Does anyone know what would be the new way to change the color in CSS? I saw that MDC is now part of some of the components, but it does not seem to work even if I change .mat to .mat-mdc.
Does anyone know the secret of CSS overrides on the latest Angular Material?