Let's say I have html element with shadow root.
<my-element>
#shadow-root
<div class='need-target-this' />
</my-element>
How can I target div inside shadow root?
I've tried to use
:host(my-element.need-target-this)
But it didn't help. What am I missing here?