Change size of mat-icon-button

前端 未结 8 1337
隐瞒了意图╮
隐瞒了意图╮ 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:09

    In your component scss file (assuming sass):

    .mat-icon-button.large {
    
        width: 48px;
        height: 48px;
        line-height: 48px;
    
        .mat-icon {
          font-size: 48px;
          width: 48px;
          height: 48px;
          line-height: 48px;
        }
      }
    

    You can change to whatever sizes you want for both the button and the icon. If they are both set to 48 that will not have any spacing around the icon. You may want to increase the button size to something like 64.

    In your html:

    
    

提交回复
热议问题