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
Hello. I use gulp-sass(2.0) and node-sass(3.0). And I got error this code.
@mixin box-sizing-border{ @at-root{ #{&}{ box-sizing: border-box; *, *:before, *:after { box-sizing: inherit; } } } }
this got like this
[15:29:31] [gulp-sass] sass/bos-sizing.scss undefined:undefined unknown
And I try this code, got I expected code
@mixin box-sizing-border{ @at-root{ $selector: & #{$selector}{ box-sizing: border-box; *, *:before, *:after { box-sizing: inherit; } } } }
The text was updated successfully, but these errors were encountered:
Thanks for the report @suisho.
This code now compiles in Libsass 3.2.4 ([email protected]), but it produces the wrong output.
I've created a new issue to track the incorrect output #1210
Sorry, something went wrong.
Thanks!
No branches or pull requests
Hello.
I use gulp-sass(2.0) and node-sass(3.0).
And I got error this code.
this got like this
And I try this code, got I expected code
The text was updated successfully, but these errors were encountered: