Skip to content

Releases: isqua/rework-clone

v0.1.0 Added !important support

17 Jan 22:18

Choose a tag to compare

Source:

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

Result:

.a {
  background: red;
}

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

Creating the module

15 Oct 02:00

Choose a tag to compare

This module clones properties from one selectors to another instead adding
appropriate selector as rework-inherit (rework.extend()).

For more information read the readme file