Open htunnicliff opened 1 year ago
The :nth-last-child() psudeo-class supports an optional selector argument: the of <selector> syntax.
of <selector>
Here is an example:
export const Example = styled.div` & > *:nth-last-child(-n + 3 of li.important) { padding-bottom: 10px; } `;
When using this syntax, the following unexpected errors occur:
At the & character:
&
} expected [ts-styled-plugin(9999)]
At the closing } character:
}
at-rule or selector expected [ts-styled-plugin(9999)]
No errors occur since syntax is valid.
The :nth-last-child() psudeo-class supports an optional selector argument: the
of <selector>
syntax.Here is an example:
When using this syntax, the following unexpected errors occur:
At the
&
character:At the closing
}
character:Expected Behavior
No errors occur since syntax is valid.