8000 GitHub - TheDutchCoder/postcss-rem-to-px: Converts rem values to pixels with PostCSS · GitHub
Skip to content
< 8000 button data-component="Button" type="button" aria-haspopup="true" aria-expanded="false" tabindex="0" class="prc-Button-ButtonBase-9n-Xk" data-loading="false" data-size="medium" data-variant="primary" id="_R_1p6l8qik5_">Code

Repository files navigation

postcss-rem-to-px

PostCSS plugin to convert rem values to px values.

.foo {
  margin: 2rem;
}
.foo {
  margin: 32px;
}

Usage

Step 1: Install plugin:

npm install --save-dev postcss @thedutchcoder/postcss-rem-to-px

Step 2: Check you project for an existing PostCSS config: postcss.config.js in the project root, "postcss" section in package.json or postcss in bundle config.

If you do not use PostCSS, add it according to official docs and set this plugin in settings.

Step 3: Add the plugin to plugins list:

module.exports = {
  plugins: [
+   require('@thedutchcoder/postcss-rem-to-px'),
    require('autoprefixer')
  ]
}

Options

You can set a baseValue to represent the body's root pixel value for font-size, which is the base for rem values. The default baseValue is 16.

module.exports = {
  plugins: [
+   require('@thedutchcoder/postcss-rem-to-px', { baseValue: 10 }),
    require('autoprefixer')
  ]
}

About

Converts rem values to pixels with PostCSS

Resources

Stars

43 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages