Hi there, I've been struggling with this CSS code in a scss file:
@font-face {
font-family: 'tr-icon';
src:url('../fonts/tr-icon.eot?88d087');
src:url('../fonts/tr-icon.eot?#iefix88d087') format('embedded-opentype') ,
url('../fonts/tr-icon.ttf?88d087') format('truetype') ,
url('../fonts/tr-icon.woff?88d087') format('woff') ,
url('../fonts/tr-icon.svg?88d087#trends') format('svg') ;
font-weight: normal;
font-style: normal;
}
[class^="tr-icon-"], [class*=" tr-icon-"] {
font-family: 'tr-icon';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
}
I'm getting an error in Firefox that says:
downloadable font: rejected by sanitizer (font-family: "tr-icon" style:normal weight:normal stretch:normal src index:0)
I've tried different solutions like this or that, but nothing seems to be working. Any other suggestions?