Is there a way to customize the mat-header-cell in Angular? I've been trying to change its width without success. Any suggestions would be greatly appreciated.
<ng-container cdkColumnDef="name">
<mat-header-cell *cdkHeaderCellDef mat-sort-header disableClear="true">Name</mat-header-cell>
<mat-cell *cdkCellDef="let row">{{row.name}}</mat-cell>
</ng-container>