postcss-short
postcss-short copied to clipboard
Feature request: 'stroke' shorthand
Can I request the ability to use stroke as a shorthand for:
- stroke
- stroke-dasharray
- stroke-dashoffset
- stroke-width
Input:
.test {
stroke: red 50 204 1px;
}
Output:
.test {
stroke: red;
stroke-dasharray: 50;
stroke-dashoffset: 204;
stroke-width: 1px
}
Thank you and great work!