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