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
Would it be possible to have variable function names? For example:
@mixin all-sprite-properties( $sprite-name, $image){ @include #{sprite-name}-sprite($image); height: #{sprite-name}-sprite-height($image); width: #{sprite-name}-sprite-width($image); }
So the output of:
@include all-sprite-properties(icons, left-arrow);
would be
@include icons-sprite(left-arrow); height: icons-sprite-height(left-arrow); width: icons-sprite-width(left-arrow);
This is all assuming that what I'm trying to do doesn't already have a simple mixin.
The text was updated successfully, but these errors were encountered:
This belongs in the Sass issue queue and is a duplicate of Sass 626
Sorry, something went wrong.
This just landed on master. sass/sass#812
No branches or pull requests
Would it be possible to have variable function names?
For example:
So the output of:
would be
This is all assuming that what I'm trying to do doesn't already have a simple mixin.
The text was updated successfully, but these errors were encountered: