#angular material Icon problem
5 messages · Page 1 of 1 (latest)
Yes, the mat-icon size is unfortunately hardcoded to be 24px.
You can use the inline property.
<div class="my-icon-container">
<mat-icon [inline]="true">done</mat-icon>
</div>
.my-icon-container {
font-size: 30px;
}
TIL!
OOH REALLY?