csso-cli icon indicating copy to clipboard operation
csso-cli copied to clipboard

Media queries using calc are completely removed

Open viruseg opened this issue 1 year ago • 0 comments

A media query using calc like this is perfectly valid in the browser, but is completely removed from the minified version of the css file.

@media screen and (min-width: calc(300px + 760px + 20px + 200px))
{
    .anyClass
    {
        display: block;
    }
}

viruseg avatar May 14 '24 12:05 viruseg