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 #5881

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

Develop #5881

wants to merge 1 commit into from

Conversation

MarushchakM
Copy link

@MarushchakM MarushchakM commented Dec 28, 2024

  • 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 implementing the task requirements! 🎉 The code is well-structured and meets most of the criteria. While there are a few minor suggestions, such as providing a more similar fallback font to 'Roboto', ensuring the font path is correct, and considering meaningful URLs for navigation links, these do not impact the core functionality. Keep up the good work and consider these improvements for future projects! 😊

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

Comment on lines +21 to +22
<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 means it doesn't lead anywhere. Consider providing a meaningful URL or using javascript:void(0); if the link is not intended to navigate.

Comment on lines +33 to +35
<a
class="is-active"
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 means they don't lead anywhere. Consider providing meaningful URLs for these links to improve navigation.

Comment on lines +47 to +49
<a
href="#"
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 intentional and necessary for your project.

@@ -1,3 +1,76 @@
@font-face {
font-family: Roboto;
src: url(fonts/Roboto-Medium.ttf);

Choose a reason for hiding this comment

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

Ensure that the path to the font file is correct and that the font file is available in the specified location. Otherwise, the font may not load properly.

body {
margin: 0;
font-family: Roboto, serif;

Choose a reason for hiding this comment

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

Consider providing a fallback font that is more similar to 'Roboto' than 'serif', such as 'Arial' or 'Helvetica', for better consistency across different browsers and systems.

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