Last change
on this file since 76712b2 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
782 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | # postcss-minify-params [![Build Status][ci-img]][ci]
|
---|
| 2 |
|
---|
| 3 | > Minify at-rule params with PostCSS.
|
---|
| 4 |
|
---|
| 5 | ```css
|
---|
| 6 | @media only screen and ( min-width: 400px, min-height: 500px ) {
|
---|
| 7 | h2{
|
---|
| 8 | color:blue
|
---|
| 9 | }
|
---|
| 10 | }
|
---|
| 11 | ```
|
---|
| 12 |
|
---|
| 13 | ```css
|
---|
| 14 | @media only screen and (min-width:400px,min-height:500px) {
|
---|
| 15 | h2{
|
---|
| 16 | color:blue
|
---|
| 17 | }
|
---|
| 18 | }
|
---|
| 19 | ```
|
---|
| 20 |
|
---|
| 21 | ## Usage
|
---|
| 22 |
|
---|
| 23 | ```js
|
---|
| 24 | postcss([ require('postcss-minify-params') ])
|
---|
| 25 | ```
|
---|
| 26 |
|
---|
| 27 | See [PostCSS] docs for examples for your environment.
|
---|
| 28 |
|
---|
| 29 | ## Contributors
|
---|
| 30 |
|
---|
| 31 | See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
|
---|
| 32 |
|
---|
| 33 | ## License
|
---|
| 34 |
|
---|
| 35 | MIT © [Bogdan Chadkin](mailto:trysound@yandex.ru)
|
---|
| 36 |
|
---|
| 37 | [PostCSS]: https://github.com/postcss/postcss
|
---|
| 38 | [ci-img]: https://travis-ci.org/cssnano/postcss-minify-params.svg
|
---|
| 39 | [ci]: https://travis-ci.org/cssnano/postcss-minify-params
|
---|
Note:
See
TracBrowser
for help on using the repository browser.