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

add task solution #5739

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

ilkovych
Copy link

No description provided.

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a 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="#"

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="#"

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="#"

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="#"

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="#"

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="#"

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"

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;

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;

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;

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants