Google Font not working on Safari

后端 未结 7 1437
野性不改
野性不改 2020-12-06 16:08

I\'m working on making my site look the same under Safari and Chrome. In Chrome it looks exactly how I want it to. The major problem is that Google Font doesn\'t seem to be

7条回答
  •  醉梦人生
    2020-12-06 17:04

    Even though this is an old question I thought I would add my solution (that i found elsewhere) so as to help others.

    When you declare your fonts in your CSS, add an "!important" at the end. It cleared up my problem.

    body { font: {  
        family: $arvo, sans-serif !important;
        size: 18px;
    }
    

提交回复
热议问题