Pulling my hair out here.
I'm new to React, I have my font family in my css like this. Everything is fine on localhost but when I deploy, the Roboto font doesnt work on safari or mobile browsers...
any help would be greatly appreciated
Thanks
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Roboto, sans-serif !important;
border: none;
}
also i'm using styled components, i'm not too sure if that has anything to do with it.