postcss-short icon indicating copy to clipboard operation
postcss-short copied to clipboard

Feature request: 'stroke' shorthand

Open elliott-impression opened this issue 6 years ago • 0 comments

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!

elliott-impression avatar Apr 03 '19 09:04 elliott-impression