I'm creating an Angular 7 CLI application that uses ng-bootstrap. Before adding ng-bootstrap, I had custom fonts applied to buttons that were working and showing up nicely. Since adding ng-bootstrap, the fonts are blurry.
I've already tried adding SCSS to the main styles.scss file:
button {
-webkit-font-smoothing: antialiased;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}
I've also tried:
button {
-webkit-font-smoothing: inherit;
}
In addition, I did add the !important
class to try and force it. When I remove the custom font from the button, the default font appears crisp and clear.