1.0.1 • Published 8 years ago

postcss-remify v1.0.1

Weekly downloads
253
License
MIT
Repository
github
Last release
8 years ago

PostCSS Remify Build Status

PostCSS plugin This plugin will transform all rem( px ); declarations into it's rem equivalent..

.foo {
  font-size: rem( 16 );
}
.foo {
  font-size: 1rem;
}

Usage

postcss([ require('postcss-remify') ])

See PostCSS docs for examples for your environment.