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
I keep getting the following error whenever I try to compile.
Generating JavaScript bundles failed
Parse error on line 1: -25% + -(1 * 2rem) --------^ Expecting "SUB", "NUMBER", "LENGTH", "ANGLE", "TIME", "FREQ", "RES", "EMS", "EXS", "CHS", "REMS", "VHS", "VWS", "VMINS", "VMAXS", "PERCENTAGE", "css_value", got unexpected "LPAREN"
I narrowed it down to either line 82 or 92 in scss/utilities/_wvu-slash.scss, and then made the following changes and it worked fine.
Change these lines 82: left: -($i * $spacer) $global-important; 92: top: calc(-25% + -(#{$i} * #{$spacer})) $global-important;
left: -($i * $spacer) $global-important;
top: calc(-25% + -(#{$i} * #{$spacer})) $global-important;
To this: 82: left: ($i * $spacer)*(-1) $global-important; 92: top: calc(-25% + (#{$i} * #{$spacer})*(-1)) $global-important;
left: ($i * $spacer)*(-1) $global-important;
top: calc(-25% + (#{$i} * #{$spacer})*(-1)) $global-important;
The text was updated successfully, but these errors were encountered:
@zeroedin fixed this today 66b0ba8
Sorry, something went wrong.
No branches or pull requests
Description of problem
I keep getting the following error whenever I try to compile.
Generating JavaScript bundles failed
Parse error on line 1:
-25% + -(1 * 2rem)
--------^
Expecting "SUB", "NUMBER", "LENGTH", "ANGLE", "TIME", "FREQ", "RES", "EMS", "EXS", "CHS", "REMS", "VHS", "VWS", "VMINS", "VMAXS", "PERCENTAGE", "css_value", got unexpected "LPAREN"
How to fix it
I narrowed it down to either line 82 or 92 in scss/utilities/_wvu-slash.scss, and then made the following changes and it worked fine.
Change these lines
82:
left: -($i * $spacer) $global-important;
92:
top: calc(-25% + -(#{$i} * #{$spacer})) $global-important;
To this:
82:
left: ($i * $spacer)*(-1) $global-important;
92:
top: calc(-25% + (#{$i} * #{$spacer})*(-1)) $global-important;
The text was updated successfully, but these errors were encountered: