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

Feature request: `max-size`

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

Can I request the ability to use the following:

Input:

.test {
     max-size: 10px 50px;
}

Output:

.test {
     max-width: 10px;
     max-height: 50px
}

Thank you and great work!

elliott-impression avatar Nov 16 '18 14:11 elliott-impression