We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In express/examples/auth/views/head.ejs at line 13, CSS style for .error class' color attribute is missing a semicolon.
CSS
.error
color
.error { color: red }
The code does not break as the missing semicolon is at the end of the last declaration in the block.
However, for consistency and best practice, a semicolon must be included, even for the last declaration.
The process for bug fixing is:
.error { color: red; }
The text was updated successfully, but these errors were encountered:
Hey @pr4j3sh! Do you want to create a PR for this? :)
Sorry, something went wrong.
I have created a PR. You may review it.
No branches or pull requests
In express/examples/auth/views/head.ejs at line 13,
CSS
style for.error
class'color
attribute is missing a semicolon.The code does not break as the missing semicolon is at the end of the last declaration in the block.
However, for consistency and best practice, a semicolon must be included, even for the last declaration.
Fix
The process for bug fixing is:
The text was updated successfully, but these errors were encountered: