postcss-em-media-query

4.1.1 • Public • Published

postcss-em-media-query

Build Status

PostCSS plugin for transforming min/max-width/height media queries to ems.

Install

npm install postcss postcss-em-media-query --save

Usage

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;
	}
}

Options

precision

Type: Integer
Default: 5

Rounding precision for values.

License

MIT © Ivan Nikolić

Package Sidebar

Install

npm i postcss-em-media-query

Weekly Downloads

2,946

Version

4.1.1

License

MIT

Unpacked Size

8.42 kB

Total Files

8

Last publish

Collaborators

  • niksy