1.0.0 • Published 11 months ago

no-nest-css v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
11 months ago

no-nest-css

Remove nesting from CSS

import { noNestCSS } from 'no-nest-css';

const result = noNestCSS(`
  div {
    & > p {
      color: red;
    }
    & > h1 {
      color: blue;
    }
  }
`);

Will result in result as

`
  div  > p  {  color: red;  }
  div  > h1  {  color: blue;  }
`
1.0.0

11 months ago