-
Notifications
You must be signed in to change notification settings - Fork 34
Closed
Labels
Description
The source CSS file is as below:
.tidy_swap {
margin-block-end: 0.5em;
padding: 0.125em;
color: var(--submit-color);
background: var(--submit-background);
&:is(:hover, :focus) {
color: var(--submit-background);
background: var(--submit-color);
}
}I run the command minify test.css > test.min.css and the result is as below:
.tidy_swap{margin-block-end:0.5em;padding:.125em;color:var(--submit-color);background:var(--submit-background)}The &:is(…) is missing.