You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
782 B

4 years ago
  1. # postcss-minify-params [![Build Status][ci-img]][ci]
  2. > Minify at-rule params with PostCSS.
  3. ```css
  4. @media only screen and ( min-width: 400px, min-height: 500px ) {
  5. h2{
  6. color:blue
  7. }
  8. }
  9. ```
  10. ```css
  11. @media only screen and (min-width:400px,min-height:500px) {
  12. h2{
  13. color:blue
  14. }
  15. }
  16. ```
  17. ## Usage
  18. ```js
  19. postcss([ require('postcss-minify-params') ])
  20. ```
  21. See [PostCSS] docs for examples for your environment.
  22. ## Contributors
  23. See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
  24. ## License
  25. MIT © [Bogdan Chadkin](mailto:trysound@yandex.ru)
  26. [PostCSS]: https://github.com/postcss/postcss
  27. [ci-img]: https://travis-ci.org/cssnano/postcss-minify-params.svg
  28. [ci]: https://travis-ci.org/cssnano/postcss-minify-params