Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

@media query bug #46

Open
rkhat opened this issue Dec 21, 2015 · 0 comments
Open

@media query bug #46

rkhat opened this issue Dec 21, 2015 · 0 comments

Comments

@rkhat
Copy link

rkhat commented Dec 21, 2015

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. */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant