peach a19a732be8 commit message | пре 2 година | |
---|---|---|
.. | ||
dist | пре 2 година | |
node_modules | пре 2 година | |
LICENSE | пре 2 година | |
README.md | пре 2 година | |
package.json | пре 2 година |
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
}
}
postcss([ require('postcss-minify-params') ])
See PostCSS docs for examples for your environment.
See CONTRIBUTORS.md.
MIT © Bogdan Chadkin