Where to Put Common CSS in Angular
angular, css, sass
Solution
When using SCSS, then it's a good way to create a `shared/shared.scss` file that contains the common styles. And import the other components you add a `@import '../shared/shared';` on top of your scss-file to use that common styles.
Problem
I've been looking at the project structure in the Angular style guide (angular.io). Everything they recommend seems to make sense, but I'm confused about 1 thing: where would you put common `CSS` in this structure? By common `CSS`, I'm talking about things like Sass partials that you want to import into multiple other `CSS` files. Or even for the `HTML`, too, if you are using a template language.