csso-cli
csso-cli copied to clipboard
Media queries using calc are completely removed
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;
}
}