Angular 2 material mat-tab size

后端 未结 5 1512
温柔的废话
温柔的废话 2021-02-04 01:35

I have the following piece of code

  
    
5条回答
  •  生来不讨喜
    2021-02-04 02:03

    Try this:

    /deep/.mat-tab-label, /deep/.mat-tab-label-active{
     min-width: 0!important;
     padding: 3px!important;
     margin: 3px!important;
    }
    

    NOTE: In angular 8 /deep/ not working... you can use ::ng-deep, like so:

    ::ng-deep.mat-tab-label, ::ng-deep.mat-tab-label-active{
     min-width: 0!important;
     padding: 3px!important;
     margin: 3px!important;
    }
    

提交回复
热议问题