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
As mentioned in a comment in #273, the @while loop used in _wvu-slash.scss breaks gulp-dart-sass/gulp-sass with the Dart Sass compiler.
@while
_wvu-slash.scss
gulp-dart-sass
gulp-sass
Lines 76-78 and 100 of _wvu-slash.scss.
$i: 1; @while $i < 5 { .wvu-slash { ... } $i: $i + 1; }
I have a feeling this is due to either calc(-25% - (#{$i} * #{$spacer})) or ($i * $spacer).
calc(-25% - (#{$i} * #{$spacer}))
($i * $spacer)
@for $i from 1 through 5 { .wvu-slash { ... } }
The text was updated successfully, but these errors were encountered:
Use @for instead of @while for _wvu-slash.scss.
15269d6
Related to #274.
adamjohnson
Successfully merging a pull request may close this issue.
As mentioned in a comment in #273, the
@while
loop used in_wvu-slash.scss
breaksgulp-dart-sass
/gulp-sass
with the Dart Sass compiler.Current code:
Lines 76-78 and 100 of
_wvu-slash.scss
.I have a feeling this is due to either
calc(-25% - (#{$i} * #{$spacer}))
or($i * $spacer)
.The fix:
The text was updated successfully, but these errors were encountered: