ionic change default font

后端 未结 6 1081
-上瘾入骨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:51

    For Ionic 4

    There are global variables that are shared across components. --ion-font-family is one of them. Add this in property under :root in variables.scss:

      :root {
          --ion-font-family: 'MyFont';
      }
    

    Ionic 4 Docs: Advanced Theming Documentation

提交回复
热议问题