You can define CSS class in component template root element to reflect 
view(dashboard or front), and use only one component CSS file define css for 
different view by :host pseudo-class 
selector(https://angular.io/docs/ts/latest/guide/component-styles.html)
In your component css file,may have some thing like
```
:host(.dashboard){
    /* dashboard style */
}
:host(.front){
    /* front style */
}

```

I'm new to angular2, hope to help you…

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to