I'm trying to create a StackBlitz project with angular material, I added the library (@angular/material@12
) in the dependencies but the style is not implemented correctly. What am I missing?
What I expected to see:
CodePudding user response:
It seems that you also need to import the angular material theme you'll use.
Try adding this to styles.css :
@import "~@angular/material/prebuilt-themes/indigo-pink.css";