### Description The minified css result is not expected. ### Input ``` css .a { color: red; } .b { color: red; } .a { color: red; } ```` ### Output ```css .b{color:red}.a{color:red} ``` ### Expected ``` css .b,.a{color:red} ```
Description
The minified css result is not expected.
Input
Output
Expected