I need to deep-target all direct child divs of an element.
&:deep(>div)
works, but produces these errors:
first error says: } expected
second error says: at-rule or selector expected
&:deep(div)
doesn't highlight as an error, but is not exactly what I need.
What's the right way to do this?