I'm attempting to change the fontsize of mat-checkbox's label. Nothing I seem to attempt works as it's consistently being overriden by the component's default styles:
<mat-checkbox [(ngModel)]="reportOption.AllSelected" *ngIf="reportOption.SelectAll" (change)="onSelectAllChange($event, reportOption)" style="margin-left:5px;" class="custom-checkbox">Select All</mat-checkbox>
This was how I was able to get it to work:
::ng-deep .mdc-label {
font-size: 16px;
font-family: Montserrat, sans-serif;
font-weight: 400;
line-height: 24px;
letter-spacing: .5px;
}