You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dart Sass's definition of the invert() function has the $weight parameter default to 50%, which is wrong (Ruby Sass defaults to 100%). The only reason this doesn't cause huge problems is that it also has a special case to avoid the call to mix() when $weight is 50%, but this means that if $weight is explicitly passed as 50% it gives the wrong result.
The text was updated successfully, but these errors were encountered:
Dart Sass's definition of the
invert()
function has the$weight
parameter default to50%
, which is wrong (Ruby Sass defaults to100%
). The only reason this doesn't cause huge problems is that it also has a special case to avoid the call tomix()
when$weight
is50%
, but this means that if$weight
is explicitly passed as50%
it gives the wrong result.The text was updated successfully, but these errors were encountered: