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

Same Code in Good and Bad Examples in README.md #103

Open
aa25g15 opened this issue May 23, 2022 · 2 comments
Open

Same Code in Good and Bad Examples in README.md #103

aa25g15 opened this issue May 23, 2022 · 2 comments
Labels
bug Something isn't working

Comments

@aa25g15
Copy link

aa25g15 commented May 23, 2022

CSS Section -> Selectors are placed on separate lines:

/* Good */
h1,
h2,
h3 {
  text-transform: uppercase;
}

/* Bad */
h1,
h2,
h3 {
  text-transform: uppercase;
}

Notice the Good and Bad examples are the same.

CSS Section -> Properties have their own unique line:

/* Good */
.gallery {
  background: #000;
  color: #fff;
}

/* Bad */
.gallery {
  background: #000;
  color: #fff;
}

Notice the Good and Bad examples are the same.

@ThaNarie
Copy link
Member

Thanks for reporting!

Might be caused by automatic formatting.

@ThaNarie ThaNarie added the bug Something isn't working label May 23, 2022
@aa25g15
Copy link
Author

aa25g15 commented May 23, 2022

You are welcome!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants