#angular material Icon problem

5 messages · Page 1 of 1 (latest)

lean lance
#

I'm trying to make this icon bigger but whenever I put the font size a big value it doesnt work
this what happens it gets shrinked or smt like that

winter glade
#

Yes, the mat-icon size is unfortunately hardcoded to be 24px.

celest marsh
#

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;
}
winter glade
#

TIL!