We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.class { &:nth-child(3n + 1) { } }
After scssfmt :
.class { false { } }
The text was updated successfully, but these errors were encountered:
nth-child(2n) works nth-child(2n-1) works nth-child(odd) works nth-child(even) works last-child works first-child works
nth-child(2n+1) does not work
It looks like the error only occurs by using a '+' sign.
Sorry, something went wrong.
@souricevincent in your case you can use the next line:
.class { &:nth-child(3n-2) { } }
No branches or pull requests
.class { &:nth-child(3n + 1) { } }
After scssfmt :
.class { false { } }
The text was updated successfully, but these errors were encountered: