SyntaxFix
Write A Post
Hire A Developer
Questions
My issue was that I was declaring two fonts, and scss seems to expect that you declare the name of the font.
after your @font-face{} you must declare $my-font: "OpenSans3.0 or whatever";
@font-face{}
$my-font: "OpenSans3.0 or whatever";
and this for each font-face.
:-)