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
@mixin itemPropertiesCoverItem($items, $margin) { width: calc((100% - ((#{$items} - 1) * #{$margin}rem)) / #{$items}); margin: 1.6rem #{$margin}rem 1.6rem 0; }
@mixin itemPropertiesCoverItem($items, $margin) { width: calc((100% - ((# { $items } - 1) * # { $margin } rem)) / # { $items } ); margin: 1.6rem # { $margin } rem 1.6rem 0; }
Spaces and linebreaks are inserted after # and around { }. This creates obsolete lines and breaks SASS-Interpolation, which is needed for mixins.
Also notice the obsolete linebreak in between "$items," and "$margin".
The text was updated successfully, but these errors were encountered:
fe4026f
No branches or pull requests
original scss:
beautified scss:
problem:
Spaces and linebreaks are inserted after # and around { }. This creates obsolete lines and breaks SASS-Interpolation, which is needed for mixins.
Also notice the obsolete linebreak in between "$items," and "$margin".
The text was updated successfully, but these errors were encountered: