How do I install new fonts in Ionic 4?

后端 未结 7 1239
长情又很酷
长情又很酷 2021-02-01 04:50

Does anyone know how to update the font for Ionic 4?

I tried adding the aileron.woff to assets/fonts and putting this in the variables.scss to no avail.



        
相关标签:
7条回答
  • 2021-02-01 05:27
    1. Add a Custom Font in directory folder src\assets\fonts
    2. Define the fonts in the file src\theme\variables.scss before :root

    @font-face { font-family: "Custom Font"; src: url("../assets/fonts/Custom Font.xxx"); }

    1. define your custom font in :root

    --ion-font-family: "Custom Font";

    0 讨论(0)
提交回复
热议问题