In my Ionic app running version 3.9.2, I am attempting to customize the default font to a specific custom one.
After researching, I discovered that I need to set the font face in the app.scss
file located within the app
folder.
Here is the code snippet I used:
@import url('https://fonts.googleapis.com/css?family=Raleway');
$font-family-base: "Raleway", sans-serif !default;
Despite implementing this change, the font of the entire app does not reflect the update as expected.