I created a global style sheet using sass and put it in the public/style/styles.scss. I only specify a background color.
In the index, I added a link to
As of the beta.14 release of the CLI (which uses Angular 2.0 final), a global stylesheet can be linked inside angular-cli.json under the "styles" key. This is a reference to a file relative to the src/ directory, which is style.css by default.
Leveraging this method you could:
src/styles.cssstyles.cssapps[0].styles property in angular-cli.jsonSee also Global Styles in angular-cli's wiki.