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
The formatter is removing the whitespace before the + operator inside a calc function. This white space is actually required for the rule to work, so this effectivelly breaks it.
Example: height: calc(100% + 20px);
Turns into: height: calc(100%+ 20px);
The text was updated successfully, but these errors were encountered:
The formatter is removing the whitespace before the + operator inside a calc function. This white space is actually required for the rule to work, so this effectivelly breaks it.
Example:
height: calc(100% + 20px);
Turns into:
height: calc(100%+ 20px);
The text was updated successfully, but these errors were encountered: