How can I change mat-icon-button size? My icon has 24px now and I would like to increase that value to 48px. I use mat-icon as a button content. I also noticed that mat-icon-but
Many answers unnecessarily complicated... Here is what worked for me using Angular 9:
Assuming you want your icon to be 40x40:
HTML:
add
CSS:
.mat-icon { height: 40px; width: 40px; font-size: 40px; line-height: 40px; // DO NOT FORGET IT ! }
No need ng-deep or !important.
ng-deep
!important