reduceInitial
Replaces the CSS `initial` keyword with the *actual* value, when the resulting output is smaller
Example
Input
.box {
min-width: initial;
}Output
.box {
min-width: 0;
}Replaces the CSS `initial` keyword with the *actual* value, when the resulting output is smaller
.box {
min-width: initial;
}.box {
min-width: 0;
}