minify icon indicating copy to clipboard operation
minify copied to clipboard

Invalid max syntax on output

Open Digitalone1 opened this issue 2 years ago • 0 comments

Hello. I tested on the website and noticed the following rule:

left: max(calc(50vw - (1000px / 2)), 0px);

Gets converted in

left:max(calc(50vw - (1000px / 2)),0);

Which is an error and cannot be read by browsers (both Firefox and Chrome).

Digitalone1 avatar Feb 08 '23 21:02 Digitalone1