What should I write into scss file to set font-weight: bold;
for the innner content of the component (so that the inner tags inherit it)?
using
:host {
font-weight: bold;
}
does this work but it makes it for the component tag itself as well.
What's the best technique in this case? Also, I would avoid to stick with using div, p, span or whatever tag is a child of the component tag.
Thank you.