DevWurm / angular-electron-seed

Seed project for an Angular - Electron Desktop app with the Angular-CLI
28 stars 21 forks source link

CSS file not loading #11

Closed sekar-worx closed 7 years ago

sekar-worx commented 7 years ago

Hi, I am facing issue like individual component css files not loading. Only the style.css file loading. I don't know how to fix it ?. Please help me in this

DevWurm commented 7 years ago

So, I can't reproduce your issue. You may need to provide more information or a sample project.

sahiliotasol commented 7 years ago

Hi I think you need to add " encapsulation: ViewEncapsulation.None" in the component as per below @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./scss/application.scss'], encapsulation: ViewEncapsulation.None })

or directly give the path in angular-cli.json

"styles": [ "styles.css" ],