I am facing an issue with my angular widget directive where my custom CSS is getting overridden by Bootstrap default styles when I add the widget to another application component.
View my Bootstrap CSS here.
I am struggling to remove the font-family in my component.css file. I have tried overriding it, but it seems to not be working properly.
body {
line-height: 1.15;
}
Check out the font-family CSS here.
I have also attempted to use !important in my CSS as shown below, but the Bootstrap styles are still taking precedence.
body {
font-family: "Open Sans", sans-serif !important;
}