Open rkhat opened 8 years ago
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. */ }
The beautifier adds a semicolon inside the media query at the end. According to w3 css-validator, this is an error. Example:
Your beautifier will give: