PostCSS plugin for transforming min/max-width/height media queries to ems.
npm install postcss postcss-em-media-query --save
import postcss from 'postcss';
import emMediaQuery from 'postcss-em-media-query';
postcss([
emMediaQuery({
/* options */
})
]);
/* Before */
@media screen and (min-width: 600px) and (max-width: 739px) {
.foo {
color: red;
}
}
/* After */
@media screen and (min-width: 37.5em) and (max-width: 46.1875em) {
.foo {
color: red;
}
}
Type: Integer
Default: 5
Rounding precision for values.
MIT © Ivan Nikolić