Is it possible to apply the angular material built-in theme to a specific component only?
I did:
@import "~@angular/material/prebuilt-themes/indigo-pink.css";
In one of my component.scss file and referenced this as the styleUrl inside of component.ts file. But the styles did not apply to my angular material paginator.
Here is what the paginator looks like
As shown, the styles do not apply.
Is it something to do with the fact that I'm importing them in a component specific scss file instead of importing it in angular.json?
