-
Notifications
You must be signed in to change notification settings - Fork 5.3k
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
add task solution #6222
base: master
Are you sure you want to change the base?
add task solution #6222
Conversation
Robert-Mans
commented
Mar 11, 2025
- DEMO LINK
- TEST REPORT LINK
- Header height is set in 1 place (for the links)
- Content is vertically centered (for any header height)
- CSS is used to show all letters in Uppercase (don't type them in HTML)
- Logo is an image wrapped with a link
- CSS Variable is used for a blue color
- Pseudo-element is used for a blue line below the active link
- Code follows all the Code Style Rules ❗️
- The Google Fonts Configuration follows requirements.
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 meets many of the task requirements, there are a couple of critical issues that need to be addressed before we can approve the pull request:
-
href
Attribute Issue: Thehref
attribute in one of the navigation links contains spaces (#laptops & computers
). This can cause problems with URL parsing. Please encode spaces as%20
to ensure proper functionality. -
CSS Redundancy: In the
.nav__link
class, you have declared twodisplay
properties (inline-block
andflex
). Theflex
property will overrideinline-block
, making the latter redundant. Removing the redundant property will help avoid confusion.
Once these issues are resolved, your code will be in great shape! Keep up the excellent work, and don't hesitate to reach out if you have any questions. 😊
✨ 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.
src/index.html
Outdated
<a | ||
href="#laptops & computers" |
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 href
attribute contains a space in the URL (#laptops & computers
). Spaces in URLs should be encoded as %20
to ensure proper parsing. Consider changing it to #laptops%20&%20computers
.
src/style.css
Outdated
display: inline-block; | ||
display: flex; |
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 .nav__link
class has two display
properties declared: inline-block
and flex
. The latter will override the former, making display: inline-block;
redundant. Consider removing it to avoid confusion.
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.
Great job on addressing the previously mentioned issues! 🎉
Review Summary:
-
href
Attribute Issue: You've successfully corrected thehref
attribute for the "Laptops & Computers" link by encoding spaces as%20
. This resolves the URL parsing issue and ensures proper navigation. -
CSS Redundancy: The redundant
display: inline-block
property has been removed from the.nav__link
class, leaving onlydisplay: flex
, which is appropriate for the intended layout. This makes your CSS cleaner and more efficient.
Your code now meets the task requirements and constraints. There are no missing or unrelated files that need to be addressed.
Moving Forward:
While the decision is to APPROVE your Pull Request to help you progress in your learning journey, it's important to always review any comments and suggestions to improve your code quality. Addressing critical issues promptly will help you avoid similar problems in the future. Keep up the good work, and continue to learn and grow from each experience! 🚀
✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨