postcss / sugarss

Indent-based CSS syntax for PostCSS
MIT License
707 stars 39 forks source link

Nesting Support #34

Closed AlecRust closed 8 years ago

AlecRust commented 8 years ago

Wondering if there's any plans for nesting?

Instead of:

.header
  color: #fff

@media (--md-viewport-min)
  .header
    color: #000

We could have:

.header
  color: #fff

  @media (--md-viewport-min)
    color: #000
ai commented 8 years ago

SugarSS is just a syntax without transformation

Use postcss-nested plugin as you do with CSS syntax 😊

AlecRust commented 8 years ago

My apologies, thought I already had that included. Fantastic 👍