Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 514 Bytes

File metadata and controls

35 lines (28 loc) · 514 Bytes

rework-plugin-references

[Build Status](https://travis-ci .org/reworkcss/rework-plugin-references)

Add property reference support.

button {
  width: 120px;
}

button.round {
  width: 50px;
  height: @width;
  line-height: @height;
  background-size: @width @height;
}

yields:

button {
  width: 120px
}

button.round {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-size: 50px 50px
}