I have a angular widget directive with my own css. when i add my widget in a another application component it's overriding with Bootstrap default css/styles.
My question is How i can remove font-family in my compoent.css I am trying to override, but its not working?
body {
line-height: 1.15;
}
I also tried with !important as follows, but still applying bootstrap styles
body {
font-family: "Open Sans", sans-serif !important;
}