Angular 2 material mat-tab size

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

I have the following piece of code

  
    
5条回答
  •  心在旅途
    2021-02-04 02:14

    Without !important:

    /* 
        ::ng-deep disables view-encapsulation of Angular components 
            -> to avoid global style bleeding use it in combination with :host
            -> https://angular.io/guide/component-styles#deprecated-deep--and-ng-deep
    */
    :host ::ng-deep .mat-tab-label {
        min-width: 100px;
    }
    

提交回复
热议问题