Closed failwyn closed 1 year ago
border: 0 none; is minified to border: 0 0; 0 is not a valid value for border-style. This appears to be a side effect of the optimization added to fix #317
border: 0 none;
border: 0 0;
Minified output or stack trace border: 0 0;
Excepted output code border: 0 none;
feel free to make a PR that reverses #317 and we can reopen that with this in mind, or make the PR to fix this :)
border: 0 none;
is minified toborder: 0 0;
0 is not a valid value for border-style. This appears to be a side effect of the optimization added to fix #317Minified output or stack trace
border: 0 0;
Excepted output code
border: 0 none;