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
The libsass have a bug that for example
.test { content:'test'; @at-root . #{&}_c{ content::' test_c' } }
Libsass
.test{ content: 'test'} .test .test_c{ content: 'test_c'}
Ruby Sass
.test{ content: 'test'} .test_c{ content: 'test_c'}
The text was updated successfully, but these errors were encountered:
@Prince-Raul the code you have supplied is not valid Sass. It does not compile with Ruby Sass.
I assume you meant the following
.test { content: 'test'; @at-root #{&}_c { content: 'test_c' } }
In which case this is a duplicate or #1210 and has been fixed. It will be in the next version of LibSass.
Sorry, something went wrong.
@xzyfer sorry, I write the code was wrong! I found the bug width #1210,ths! LIbsass when the next version released?
In the next month or so.
No branches or pull requests
The libsass have a bug that for example
Libsass
Ruby Sass
The text was updated successfully, but these errors were encountered: