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

Develop #5678

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open

Develop #5678

wants to merge 8 commits into from

Conversation

Yevhenia-S
Copy link

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.

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"
/>

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 {

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.

Copy link

@volodymyr-soltys97 volodymyr-soltys97 left a 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 Show resolved Hide resolved
src/index.html Outdated
Comment on lines 44 to 45
</a>
<nav>

Choose a reason for hiding this comment

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

Suggested change
</a>
<nav>
</a>
<nav class="nav">

src/index.html Outdated
</a>
<nav>
<ul class="nav-list">
<li>

Choose a reason for hiding this comment

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

Suggested change
<li>
<li class="nav-item">

src/index.html Outdated
Comment on lines 54 to 55
</li>
<li>

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

Suggested change
</li>
<li>
</li>
<li>

src/style.css Outdated
font-family: Roboto, serif;
font-weight: 500;
font-style: normal;
background-color: darkblue;

Choose a reason for hiding this comment

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

Redundant

Suggested change
background-color: darkblue;

Comment on lines +3 to +5
font-family: Roboto, serif;
font-weight: 500;
font-style: normal;

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;

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

Copy link

@etojeDenys etojeDenys left a comment

Choose a reason for hiding this comment

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

good job

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.

4 participants