0.0.1 • Published 5 years ago

postcss-media-directives v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

PostCSS Media Directives Build Status

PostCSS plugin that uses the short names of the @media Directive.

@miw(480) { // or 480px
    body {
        background-color: lightgreen;
    }
}
@maw(480) { // or 480px
    body {
        background-color: lightgreen;
    }
}
  
@media(min-width: 480px) {
    body {
        background-color: lightgreen;
    }
}
@media(max-width: 480px) {
    body {
        background-color: lightgreen;
    }
}

Usage

postcss([ require('postcss-media-directives') ])

See PostCSS docs for examples for your environment.