andrewdavey / cassette

Manages .NET web application assets (scripts, css and templates)
http://getcassette.net
MIT License
534 stars 143 forks source link

CSS minification breaking calc() #482

Open AaronValor opened 4 years ago

AaronValor commented 4 years ago

Example: width: calc(100% - 100)

minifies to width: calc(100%- 100)

Version: 2.0.0.17974

AaronValor commented 4 years ago

I was able to work around the minification bug by adding parentheses around the 100%. Example: width: calc((100%) - 100)