Slide 6
Slide 6 text
styles
• @Component()のstylesプロパティに
文字列の配列を与えると、そのコンポーネントにのみ
適用できるスタイルシートを記述できる
@Component({
selector: 'hero-app',
template: `
Tour of Heroes
`,
styles: ['h1 { font-weight: normal; }'],
directives: [HeroAppMainComponent]
})
https://angular.io/docs/ts/latest/guide/component-styles.html