Can't install Angular Material pre-built theme. Installed all components, linked a .css file. Still have save error:
Could not find Angular Material core theme. Most Material components may not work as expected. For more info refer to the theming guide: https://material.angular.io/guide/theming
Added to .css:
@import "~@angular/material/prebuilt-themes/indigo-pink.css"
Installed all components @angular/material @angular/cdk @angular/animations and imported all modules: BrowserAnimationsModule, MatButtonModule, MatCheckboxModule.
Expecting to see slick material design.
stackblitz? - Abhishekstyles.cssnot on the component's css, alternatively you can link it inindex.htmlwith<link href="node_modules/@angular/material/prebuilt-themes/indigo-pink.css" rel="stylesheet">in the head tag - IvanS95