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
Hi,
I wrote the following configuration:
mode: { sprite: 'sprite.svg', css: { dest: 'styles/' common: 'icon', prefix: '.icon-', dimensions: '-wh', sprite: '../images/sprite.svg', bust: false, mixin: 'sprite-icon', render: { less: true } } }
Gulp plugin generated for me this code:
.sprite-icon() { background: url("../images/sprite.svg") no-repeat; } .icon { sprite-icon(); // here is missing the dot } // More icons // ...
If I specify a dot in the property mode.<mode>.mixin (mixin: '.sprite-icon'), then:
mode.<mode>.mixin
mixin: '.sprite-icon'
..sprite-icon() { // here two dots background: url("../images/sprite.svg") no-repeat; } .icon { .sprite-icon(); } // More icons // ...
The text was updated successfully, but these errors were encountered:
79293fd
Good sounds!
Sorry, something went wrong.
@mrmlnc Yep, should be fixed as of 1.2.18 ;)
jkphl
No branches or pull requests
Hi,
I wrote the following configuration:
Gulp plugin generated for me this code:
If I specify a dot in the property
mode.<mode>.mixin
(mixin: '.sprite-icon'
), then:The text was updated successfully, but these errors were encountered: