Project Shared Styles File in Angular
After creating the project, the src
folder will contain a file with the site's general styles. This file will be named styles
, but its extension may vary depending on the settings selected when creating the project: .css
, .less
or .sass
.
This file should contain styles related to the site structure, but not to individual components. The point is that for each Angular component, its styles will be stored in the folder with this component.
Write code that will place your site blocks on the page: header, footer, sidebars and content.