Angular 2 material mat-tab size

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

I have the following piece of code

  
    
5条回答
  •  再見小時候
    2021-02-04 02:07

    In my case the accepted answer didn't work well - when switching between tabs the width of body of specific tab was changing and it didn't look nice, so I added mat-tab-link to resolve it

    ::ng-deep.mat-tab-link,  ::ng-deep.mat-tab-label, ::ng-deep.mat-tab-label-active{
        min-width: 97px!important;
    }
    

提交回复
热议问题