This repository was archived by the owner on Feb 10, 2023. It is now read-only.
Releases: sergeysova/postcss-define-units
Releases · sergeysova/postcss-define-units
v1.1.2 🌝
v1.1.1 🍀
0.0.3
Add support to write float units:
a {
--define: unit 10px;
line-height: 3.5px;
}Result:
a {
line-height: 35px
}Project needs your ideas!
0.0.2
Added simple define:
body {
--define: unit 10px;
padding: 2unit;
}Result:
body {
padding: 20px
}