I want to create a "Sign in with Google" button. For this I installed this module npm i roboto-fontface
and added this line in angular.json
"styles": [
{
"input": "src/theme/variables.scss"
},
{
"input": "src/global.scss"
},
{
"input": "./node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-medium.scss"
}
]
Suddenly everything is in that font now! How can I restrict it to only specific components? Is this even the correct approach?