In my <app-root>
I have <app-sidebar>
in which I have a <div class="myClass">
.
In my body tag I have class "myBodyClass" that toggles. I want to style my div depending on the class in the body-tag, what I have is somthing like this:
.myClass{
background-color:red;
}
.myBodyClass > .myClass{
background-color:yellow;
}
tryed as well:
.myBodyClass .myClass{
background-color:yellow;
}
but none of them works ,what is the correct way to achive that?