A PostCSS plugin to resolve the CSS calc function.
npm install postcss-calc-function
...
import calcFunction from 'postcss-calc-function'
export default {
...
postcss: [
calcFunction()
]
}
h1 {
line-height: calc( 2 * 0.75 );
padding: calc( 20px * 1.5 ) calc( 20px + 10px );
}
h1 {
line-height: 1.5;
padding: 30px 30px;
}