div {
:hover {
color: red;
}
}
The above code used to work in stylis v3, but it seems since stylis v4 an ampersand is explicitly required, e.g.
div {
&:hover {
color: red;
}
}
Can the prior functionality to pretend an & is there for a leading : be restored?