Skip to content

v1.3.0

Compare
Choose a tag to compare
@SassNinja SassNinja released this 28 Oct 09:00
· 29 commits to master since this release

This release is an internal rework of the extraction. As a result nested atRules are now possible! 🎉

.foo { color: red }
@media screen and (min-width: 1024px) {
  .foo { color: green }
  @supports (display: grid) {
    .foo { font-size: 1rem }
  }
}