Is there a way to apply font-weight: bold;
only to the inner content of a component in a scss file while avoiding affecting the component tag itself?
:host {
font-weight: bold;
}
Although this code works, it also affects the component tag itself. What is the best alternative technique in such a case?
I aim to find a solution that does not involve targeting specific child tags like div, p, span.
Appreciate any guidance on this matter.