1.0.1 • Published 10 years ago

rework-plugin-references v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

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
}