Files
wangxiaowei 5d7b75a14e first commit
2025-12-09 13:35:21 +08:00
..
2025-12-09 13:35:21 +08:00
2025-12-09 13:35:21 +08:00
2025-12-09 13:35:21 +08:00
2025-12-09 13:35:21 +08:00
2025-12-09 13:35:21 +08:00
2025-12-09 13:35:21 +08:00

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.

MIT © Bogdan Chadkin