1.0.0 • Published 4 years ago

@lifeiscontent/postcss-rem-function v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

PostCSS Rem Function

PostCSS plugin to add rem function to easily calculate rem values.

Example

Input

.demo {
  font-size: rem(24); /* using default 16 */
  padding: rem(5, 10); /* Explict base */
}

Output

.demo {
  font-size: 1.5rem; /* Simple */
  padding: 0.5rem; /* Explict base */
}

Options

With baseline to 10:

.demo {
  font-size: 2.4rem; /* Simple */
  padding: 0.5rem; /* Multiple values */
}

Usage

Install with npm i postcss-rem-function and use with PostCSS:

postcss([require("@lifeiscontent/postcss-rem-function")]);

Example with custom options:

postcss([
  require("@lifeiscontent/postcss-rem-function")({
    baseline: 10, // Default to 16
    precision: 6, // Default to 8
  }),
]);

See PostCSS docs for examples for your environment.