Ever since the latest update to Angular Material 15, I've noticed some changes in how styling is applied to Angular Material components. Previously, in version 14, I used to be able to accomplish styling changes with code like this:
::ng-deep .mat-checkbox .mat-checkbox-frame {
border-color: #fa3131;
}
However, it seems that this method is no longer effective. I've heard that MDC is now integrated into some components, but changing .mat to .mat-mdc doesn't seem to do the trick either.
Does anyone have insight on how to successfully override CSS in the latest version of Angular Material? Any guidance would be greatly appreciated!