cassette icon indicating copy to clipboard operation
cassette copied to clipboard

CSS minification breaking calc()

Open AaronValor opened this issue 5 years ago • 1 comments

Example: width: calc(100% - 100)

minifies to width: calc(100%- 100)

Version: 2.0.0.17974

AaronValor avatar Feb 05 '20 19:02 AaronValor

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

AaronValor avatar Feb 06 '20 21:02 AaronValor