-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Develop #5678
base: master
Are you sure you want to change the base?
Develop #5678
Conversation
Yevhenia-S
commented
Nov 12, 2024
- DEMO LINK
- TEST REPORT LINK
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your hard work on this project! 😊 While your code is mostly on point, there are a couple of critical issues that need to be addressed before we can approve the pull request. The missing closing tag for the <link>
element can lead to rendering issues, and the generic :hover
selector might unintentionally affect other elements. Please fix these to ensure the functionality and maintainability of your code. Once these are resolved, you'll be all set! Keep up the great work! 🚀
✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨
🔄 Fix the issues, commit the changes, and then re-request my review using the Re-request review
button in the Reviewers tab.
rel="preconnect" | ||
href="https://fonts.gstatic.com" | ||
/> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a missing closing tag for the <link>
element. Ensure that all <link>
tags are properly closed with a />
to maintain valid HTML syntax.
src/style.css
Outdated
margin-left: 0; | ||
} | ||
|
||
:hover { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The :hover
selector is too generic and might apply to unintended elements. Consider specifying the element it should apply to, such as .nav-link:hover
, to avoid unexpected styling changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good job 👍
Let's make your code better
src/index.html
Outdated
</a> | ||
<nav> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
</a> | |
<nav> | |
</a> | |
<nav class="nav"> |
src/index.html
Outdated
</a> | ||
<nav> | ||
<ul class="nav-list"> | ||
<li> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<li> | |
<li class="nav-item"> |
src/index.html
Outdated
</li> | ||
<li> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add the blank line between the links
</li> | |
<li> | |
</li> | |
<li> |
src/style.css
Outdated
font-family: Roboto, serif; | ||
font-weight: 500; | ||
font-style: normal; | ||
background-color: darkblue; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Redundant
background-color: darkblue; |
font-family: Roboto, serif; | ||
font-weight: 500; | ||
font-style: normal; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move font styles to the html selector
src/style.css
Outdated
} | ||
|
||
.nav-link:hover { | ||
color: #00acdc; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Create a variable for repeated color and use it everywhere
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good job