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

Moyo header #5730

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

Moyo header #5730

wants to merge 1 commit into from

Conversation

thalie-git
Copy link

  • 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 ❗️

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 your submission! 🎉 Your code meets the core requirements of the task, and the functionality is intact. While there are a few minor improvements suggested, such as refining CSS class naming to follow BEM conventions and ensuring that all lines of code do not exceed 80 characters, these do not impact the overall functionality. Keep up the good work, and consider the feedback for future enhancements. Happy coding! 😊

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

Comment on lines +26 to +27
<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 for the logo link is set to '#', which is a placeholder. Consider providing a valid URL or using JavaScript to handle the click event if it's meant to be interactive.

<ul class="nav_list">
<li class="nav_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 for the navigation links is set to '#', which is a placeholder. Consider providing valid URLs for each link to improve navigation.

<a
href="#"
class="nav_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 seems to be for testing purposes. Ensure that this attribute is necessary for your application or remove it if not needed.

Comment on lines +72 to +74
.nav_link .is-active {
color: var(--active-link-color);
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The selector .nav_link .is-active seems redundant because .is-active is already styled separately. Ensure that this selector is necessary or remove it to avoid conflicts.

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