I was trying to use font awesome css in my project but the css doesn't get applied to HTML elements. If i remove Angular Material theme then only the Font Awesome CSS is working. But then Angular Material Components will not work!!!
@import "~font-awesome/css/font-awesome.css";
@import "~@angular/material/prebuilt-themes/indigo-pink.css";
One of the easiest ways is to import the CSS at the global level in the index.html in src folder. You can do this with a simple
<link rel=“stylesheet” href=“/fontawesome.css
That should hopefully fix issue