I have angular 2 project which have 2 Modules, one for web and one for admin.
I put the main styles for web in style.css (specified in .angular-cli.json)
@import "../node_modules/bootstrap/dist/css/bootstrap.css";
and it work great, but the style.css code appear every where in both web and admin, i want to separate it completely.
is there any way to set specific CSS style files for each Module?