I'm trying to work out what order Angular 2 uses for its Css once its all compiled.
What I'm trying to work out is does it get all of the SCSS files from the individual components and then add them after the main styles.scss file? This would seem to be the obvious thing but does it do it the other way round and put the componet styles first then the main styles?
I know if I specify files in the styles array in the angular-cli.json file Angular will process them in that order but obviously component styles aren't specified there.
Apologies if this sounds a bit odd but I can't work it out and can't seem to find any info on it anywhwere.