Change the icon size of AngularJS Material icons

前端 未结 9 1596
不思量自难忘°
不思量自难忘° 2020-12-25 10:11

I have referenced then declared an icon

face

But how can I change the icon size?

On of

9条回答
  •  一向
    一向 (楼主)
    2020-12-25 10:15

    if you are using scss

    @mixin md-icon-size($size: 24px) {
      font-size: $size;
      height: $size;
      width: $size;
    }
    
    .md-icon-16 {
      @include md-icon-size(16px);
    }
    
    .md-icon-18 {
      @include md-icon-size(18px);
    }
    
    .md-icon-24 {
      @include md-icon-size(24px);
    }
    
    .md-icon-36 {
      @include md-icon-size(36px);
    }
    

提交回复
热议问题