Skip to content

v0.1.0 Added !important support

Latest

Choose a tag to compare

@isqua isqua released this 17 Jan 22:18
· 8 commits to master since this release

Source:

.a {
  background: red;
}
.b {
  background: blue;
  clone: .a !important;
}

Result:

.a {
  background: red;
}

.b {
  background: red !important;
  background: blue;
}