For the code above, I want apply the CSS property of "stroke: green" for the SVG element ONLY when div.pointer-events-none has an adjacent sibling of input:focus-within.
.pointer-events-none + input:focus-within {
svg {
stroke: green;
}
}
div.text-field {
div.relative {
div.pointer-events-none + input:focus-within ~ svg {
stroke: green;
}
}
}
I'm not being able to target the SVG inside div.pointer-events-none :/