I have a component inside a component and I don't know how to style it in my css file. I tried a lot of different methods but nothing works.
So it looks like this:
outter.component.html
<div><my-custom-component></my-custom-component></div>
my-custom-component.component.html
and from outter.component.scss I want to add
i{
color: red;
}
I want to apply styles to my nested component. I tried :host >>> i {}, ::shadow and different appraoches with them but nothing worked.