I have created a modal component that projects 3 sections: header, body and footer.
modal.component.html
<div>
<ng-content select="section[modal-header]"></ng-content>
<ng-content select="section[modal-body]"></ng-content>
<ng-content select="section[modal-footer]"></ng-content>
</div>
Thus, usage:
<modal-component>
<section modal-header>Header</section>
<section modal-body>Body</section>
<section modal-footer>Footer</section>
</modal-component>
I want to style the header
. Thus:
modal.component.scss
:host([modal-header]) { font-weight: bold; }
This doesn't work. Am I missing anything?