-
Notifications
You must be signed in to change notification settings - Fork 132
Open
Description
The beautifier adds a semicolon inside the media query at the end. According to w3 css-validator, this is an error. Example:
@media (max-width: 767px) {
h1 {
font-size: 32px;
}
}Your beautifier will give:
@media (max-width: 767px) {
h1 {
font-size: 32px;
}; /* The semicolon here will give an error. */
}Metadata
Metadata
Assignees
Labels
No labels