有人知道如何在离子2中更改所有文本的字体(例如Dosis google字体)? 提前谢谢。
最好的问候。
答案 0 :(得分:3)
我在使用Quicksand谷歌字体的ionic2应用程序中做到了这一点: -
@font-face {
font-family: GlobalFont;
src: url("../assets/fonts/Quicksand-Regular.ttf");
}
body, span, button, h1, h2, h3, h4, h5, h6, p, ion-item, ion-title {
font-family: 'GlobalFont' !important;
}
...然后
ionic serve
瞧.. !!
答案 1 :(得分:-3)