ionic change default font

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

    For Ionic 2: Download the fonts from fonts.google.com and paste it in your assets folder. Now in your scss file do the following:

    @font-face {
    font-family: MyFont;
    src: url("../assets/fonts/Lato-Regular.ttf");
    }
    
    body, span, button, h1, h2, h3, h4, h5, h6, p, ion-item, ion-title {
    font-family: 'MyFont' !important;
    }
    

提交回复
热议问题