reduceTransforms
Converts between transform functions when there is a shorthand equivalent.
Example
Input
.box {
transform: translate3d(0, 0, 0);
}
Output
.box {
transform: translateZ(0);
}
Converts between transform functions when there is a shorthand equivalent.
.box {
transform: translate3d(0, 0, 0);
}
.box {
transform: translateZ(0);
}