Set font size of Angular Material Tooltip

后端 未结 8 1561
-上瘾入骨i
-上瘾入骨i 2020-12-18 17:37

I am very new to web development, and I cannot figure out how to solve the following issue, although it may be very easy.

I am using Angular 4 and Angular Material t

8条回答
  •  醉话见心
    2020-12-18 18:16

    You can use css /deep/ selector. For example:

    /deep/ .mat-tooltip {
      font-size: 14px;
    }
    

    Then you do not have to use !important

提交回复
热议问题