-
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
add task solution #5739
base: master
Are you sure you want to change the base?
add task solution #5739
Conversation
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 meeting the task requirements! 🎉 While there are a few minor issues related to accessibility and responsiveness, such as using relative units for font size, height, and padding, these do not critically impact the functionality. Consider addressing these in future updates for improved user experience. Keep up the good work! 🚀
✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨
<header> | ||
<a | ||
class="navigation__logo" | ||
href="#" |
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 is currently set to '#', which is a placeholder. Consider replacing it with a valid URL or a JavaScript function if this is intended to be a clickable link.
<ul class="navigation__list"> | ||
<li class="navigation__item"> | ||
<a | ||
href="#" |
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 is set to '#'. Ensure this is intentional or replace it with a valid URL.
</li> | ||
<li class="navigation__item"> | ||
<a | ||
href="#" |
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 is set to '#'. Ensure this is intentional or replace it with a valid URL.
</li> | ||
<li class="navigation__item"> | ||
<a | ||
href="#" |
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 is set to '#'. Ensure this is intentional or replace it with a valid URL.
</li> | ||
<li class="navigation__item"> | ||
<a | ||
href="#" |
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 is set to '#'. Ensure this is intentional or replace it with a valid URL.
</li> | ||
<li class="navigation__item"> | ||
<a | ||
href="#" |
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 is set to '#'. Ensure this is intentional or replace it with a valid URL.
<a | ||
href="#" | ||
class="navigation__link" | ||
data-qa="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 data-qa
attribute is used here, which is typically for testing purposes. Ensure this is necessary for your application or remove it if not needed.
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 0 50px; |
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 padding is set to a fixed value of 50px. Consider using relative units like percentages or rems for better responsiveness across different screen sizes.
} | ||
|
||
.navigation__link { | ||
height: 60px; |
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 height is set to a fixed value of 60px. Consider using relative units or media queries to adjust this for different screen sizes.
font-family: var(--font-family); | ||
font-weight: 500; | ||
font-style: normal; | ||
font-size: 12px; |
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 font size is set to 12px, which might be too small for readability on some devices. Consider using relative units like em or rem for better accessibility.
No description provided.