tree: fd3977edcd014a657a6778344eb5c93d73c01729 [path history] [tgz]
  1. dist/
  2. node_modules/
  3. LICENSE
  4. package.json
  5. README.md
node_modules/postcss-minify-params/README.md

postcss-minify-params Build Status

Minify at-rule params with PostCSS.

@media only screen   and ( min-width: 400px, min-height: 500px ) {
    h2{
        color:blue
    }
}
@media only screen and (min-width:400px,min-height:500px) {
    h2{
        color:blue
    }
}

Usage

postcss([ require('postcss-minify-params') ])

See PostCSS docs for examples for your environment.

Contributors

See CONTRIBUTORS.md.

License

MIT © Bogdan Chadkin