-
Notifications
You must be signed in to change notification settings - Fork 6k
Moyo reference #7282
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
base: master
Are you sure you want to change the base?
Moyo reference #7282
Conversation
SlidingMoon
commented
Nov 24, 2025
- DEMO LINK
- TEST REPORT LINK
mateacademy-ai-mentor
left a comment
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.
Review Summary
Great job on this task! Your HTML is well-structured with semantic tags, and you've demonstrated a solid understanding of flexbox for the layout.
However, changes are needed because a key technical requirement was not met. The project rules explicitly state not to use the universal selector (*) in your CSS. In src/style.css, you've used * to apply box-sizing: border-box. Please remove this and apply the style only to the elements that need it to comply with the project constraints.
As a minor suggestion for cleaner code, you can also move the font styles from the class on the <body> tag in your HTML directly to the body selector in your CSS.
Once you've addressed the universal selector issue, your solution will be ready for approval. Keep up the great work!
✨ Please rate this review in the Platform's notification center1. I will be grateful for your feedback! ✨
Important
Fix the issues, commit the changes, and then re-request my review using the Re-request review button2 in the Reviewers tab.
Tip
If you have any comments about this review, please leave a message in the Add a comment section below and mention me with the @mateacademy-ai-mentor tag3.
I will read your message during my next review of your pull request. Please do not reply directly to my comments, as that feature is not supported yet.
Caution
Do not close the pull request until the review is complete. Closing it early can lead to unexpected behavior and disrupt the review process.
Footnotes
src/index.html
Outdated
| </head> | ||
| <body> | ||
| <h1>Moyo header</h1> | ||
| <body class="roboto-500"> |
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.
Since the task allows styling the body tag directly, it's better to apply the font styles to the body selector in your CSS file instead of using a class here. This would make your HTML cleaner by removing an unnecessary class.
src/style.css
Outdated
| font-variation-settings: 'wdth' 100; | ||
| } | ||
|
|
||
| * { |
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 task requirements explicitly state not to use the universal selector *. While using it for box-sizing is common practice, you need to adhere to the project's specific rules. Please apply this style only to the elements that need it or find an alternative approach that doesn't use *.
mateacademy-ai-mentor
left a comment
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.
Review Summary
Excellent work on this iteration! I am approving your solution. You've successfully addressed the feedback from the previous review by removing the universal selector, and your code is now fully compliant with all project requirements. The HTML is well-structured and semantic, and the CSS is clean and correctly implements the flexbox layout. Keep up the great work!
✨ Please rate this review in the Platform's notification center1. I will be grateful for your feedback! ✨