sheetify-calc
v1.0.0
Published
Spec compliant CSS calc syntax for sheetify
Downloads
3
Readme
sheetify-calc
A sheetify transform to add support for
W3C-style CSS calc
syntax. Uses rework-calc
to perform the transformation.
When multiple units are mixed together in the same expression, the calc()
statement is left as is, to fallback to the CSS3 calc feature.
N.B. This is not a polyfill. This transform aims to provide a future-proof way of using a limited subset of the features provided by native CSS custom media queries.
Installation
npm install sheetify-calc
Usage
As a sheetify transform:
var calc = require('sheetify-calc');
var sheetify = require('sheetify');
sheetify('path/to/my/index.css')
.transform(calc())
.bundle();