The following snippet errors out with Expected &, * is used with @media (prefers-reduced-motion), even though it is perfectly valid.
@media (prefers-reduced-motion: no-preference) {
.some-class {
&, * {
transition: all 0.2s ease-out;
}
}
}
EDIT: maybe related to #57
The following snippet errors out with
Expected &, * is used with @media (prefers-reduced-motion), even though it is perfectly valid.EDIT: maybe related to #57