evrone / postcss-px-to-viewport

A plugin for PostCSS that generates viewport units (vw, vh, vmin, vmax) from pixel units. The best choice to create a scalable interface on different displays by one design size.
https://evrone.com/postcss-px-viewport
MIT License
3.04k stars 406 forks source link

CSS3 calc property is not converted properly #67

Closed NiuZhuang closed 4 years ago

NiuZhuang commented 4 years ago

Given: max-height: calc(100% - 200px);

Result: max-height: calc(-100%);

NiuZhuang commented 4 years ago

It's a LESS issue.

max-height: calc(100% - 200px);
--> max-height: ~"calc(100% - 200px)"; // done