my questions is very simple, I have a angular child component that use a following CSS class:
.noUi-connect{
background:#294664;
}
My questions is: how a parent component can change a css class of a child component, which is a black box for me, I can not directly access its css?
I tried the following in my parent CSS class component, but it does not work:
:host.noUi-connect{
background:#294664!important;
}
Many thanks!