Change size of mat-icon-button

前端 未结 8 1297
隐瞒了意图╮
隐瞒了意图╮ 2021-02-05 04:36

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

8条回答
  •  有刺的猬
    2021-02-05 05:02

    With Angular 8, resizing worked for me with:

    .small-icon-button {
       width: 24px !important;
       height: 24px !important;
       line-height: 24px !important;
    
       .mat-icon {
          width: 16px !important;
          height: 16px !important;
          line-height: 16px !important;
       }
       .material-icons {
          font-size: 16px !important;
       }
    }
    

    No ::ng-deep required.

提交回复
热议问题