CssMin icon indicating copy to clipboard operation
CssMin copied to clipboard

Problem with calc

Open Semdevmaster opened this issue 7 years ago • 1 comments

Before: padding-top: calc(100% / (650 / 320) + 1em); After CssMin: padding-top: calc(100% / (650 / 320)+1em); //This code does not work

According to the specification, after and before the minus and plus sign a space character is needed

Semdevmaster avatar Oct 20 '17 14:10 Semdevmaster

Hi. Problem with calc(var(...)) After minimization, calc(var(...)) is removed completely.

Before: .row > * { padding-right: calc(var(--bs-gutter-x)/ 2); padding-left: calc(var(--bs-gutter-x)/ 2); margin-top: var(--bs-gutter-y); }

After: .row > * {}

armenium-dev avatar May 05 '22 17:05 armenium-dev