Open jathak opened 3 years ago
Hi there, can you provide some repro steps and error messages to further investigate?
Looping in Liz who has some context on this after chatting during a triage meeting.
This could be solved by changing the expression to calc(0% - #{$positionX})
and adding a unit to the 0
.
This might be a bit moot with upcoming changes to text field to use web animations.
Bug report
Twice within
shake-keyframes
(here and here), the calc expressioncalc(0 - #{$positionX})
is used. The default value for$positionX
is0%
, so if no alternate value is passed, this generatescalc(0 - 0%)
, which is invalid CSS, causing the property it's in to be ignored.Actual behavior
The
transform
property assigned here will be ignored, since it contains an invalidcalc
expression.Expected behavior
The
calc
expression should be valid, allowing thetransform
property to be set as expected.Additional context
I discovered this in a somewhat odd edge case of someone trying to re-compile the already compiled
mdc-floating-label.scss
(which mean Sass's calc simplification threw an error), but the bug is present in all cases.Possible solution
Numbers with and without units should not be mixed within a
calc
expression. You may also wish to remove the interpolation, which would mean that Sass's calc simplification would catch this sort of bug early.