ionic change default font

后端 未结 6 1102
-上瘾入骨i
-上瘾入骨i 2021-02-12 11:52

I know this question is asked and answered before in the links below. I want to change the default font without having to add to every css.

Things I have tried:

6条回答
  •  無奈伤痛
    2021-02-12 12:36

    You don't want to replace the icon font by the way, so you should use the CSS3 not() property

    For example, in app.scss :

      @import url(https://fonts.googleapis.com/css?family=Varela+Round);
    
      *:not(ion-icon) {
        font-family: 'Varela Round', sans-serif!important;
      }
    

提交回复
热议问题