postcss-nest-atrules

0.1.3 • Public • Published

PostCSS Nest Atrules Build Status

PostCSS plugin to nest atrules inside their rules (inverse of unwarpping).

The main reason why I made this plugin is that it makes it easy to then convert CSS to CSS-in-JS.

.root {
  color: red;
}
@media screen and (min-width: 5em) {
  .root {
     color: green;
  }
}
.root {
  color: red;
 
  @media screen and (min-width: 5em) {
    color: green;
  }
}

Usage

postcss([ require('postcss-nest-atrules') ])

See PostCSS docs for examples for your environment.

Dependencies (1)

Dev Dependencies (3)

Package Sidebar

Install

npm i postcss-nest-atrules

Weekly Downloads

1

Version

0.1.3

License

MIT

Unpacked Size

168 kB

Total Files

6

Last publish

Collaborators

  • giuseppegurgone