-
Notifications
You must be signed in to change notification settings - Fork 2.5k
First commit #2371
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: main
Are you sure you want to change the base?
First commit #2371
Conversation
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
Thank you for your hard work on this project! Before your code can be approved, there are a couple of critical issues that need to be addressed to meet the core requirements:
-
Font-size units missing: In all your SCSS files, the
font-size
property is missing units (e.g.,font-size: 32;
instead offont-size: 32px;
). CSS requires units for font sizes, so please update allfont-size
declarations to include appropriate units likepx
,em
, orrem
. This also applies to any SCSS variables used for font sizes (such as$tablet-font-size
). -
Favicon MIME type typo: In your
index.html
, the favicon link usestype="image/xicon"
instead of the correcttype="image/x-icon"
. This typo can prevent browsers from displaying your favicon properly. Please correct the MIME type to ensure compatibility.
Once you fix these issues, your code will meet the core requirements and be ready for approval! 👍 Keep up the great work, and let me know if you have any questions or need help with these changes. For more info on CSS units, you can check out MDN's documentation on font-size.
✨ 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
/> | ||
<link | ||
rel="icon" | ||
type="image/xicon" |
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.
There is a typo in the favicon link's type attribute. It should be 'image/x-icon' instead of 'image/xicon'. This is an issue because browsers may not recognize the favicon type and fail to display it. Please correct this to ensure the favicon works as expected.
src/styles/desktop.scss
Outdated
align-items: center; | ||
|
||
.header__label { | ||
font-size: 32; |
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 value for 'font-size' is missing a unit. It should be something like 'font-size: 32px;' instead of 'font-size: 32;'. This is a syntax error and will not be interpreted correctly by browsers.
src/styles/desktop.scss
Outdated
} | ||
.rollerblades__phrase { | ||
grid-area: 1/1 / span 1 / span 12; | ||
font-size: 96; |
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 value for 'font-size' is missing a unit. Please use 'font-size: 96px;' or another appropriate unit.
src/styles/desktop.scss
Outdated
|
||
.rollerblades__variations { | ||
grid-area: 4/1 / span 1 / span 12; | ||
font-size: 96; |
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 value for 'font-size' is missing a unit. Please use 'font-size: 96px;' or another appropriate unit.
src/styles/desktop.scss
Outdated
flex-direction: column; | ||
align-items: center; | ||
gap: 24px; | ||
font-size: 32; |
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 value for 'font-size' is missing a unit. Please use 'font-size: 32px;' or another appropriate unit.
src/styles/mobile.scss
Outdated
flex-direction: column; | ||
align-items: center; | ||
gap: 24px; | ||
font-size: 32; |
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 value for 'font-size' is missing a unit. Please use 'font-size: 32px;' or another appropriate unit.
src/styles/tablet.scss
Outdated
align-items: center; | ||
|
||
.header__label { | ||
font-size: 32; |
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 value for 'font-size' is missing a unit. It should be something like 'font-size: 32px;' instead of 'font-size: 32;'. This is a syntax error and will not be interpreted correctly by browsers.
src/styles/tablet.scss
Outdated
} | ||
.rollerblades__phrase { | ||
grid-area: 1/1 / span 1 / span 12; | ||
font-size: 72; |
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 value for 'font-size' is missing a unit. Please use 'font-size: 72px;' or another appropriate unit.
src/styles/tablet.scss
Outdated
// Variations | ||
.rollerblades__variations { | ||
grid-area: 5/1 / span 1 / span 12; | ||
font-size: 72; |
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 value for 'font-size' is missing a unit. Please use 'font-size: 72px;' or another appropriate unit.
src/styles/tablet.scss
Outdated
flex-direction: column; | ||
align-items: center; | ||
gap: 24px; | ||
font-size: 32; |
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 value for 'font-size' is missing a unit. Please use 'font-size: 32px;' or another appropriate unit.
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! 🎉 All core requirements have been met: font-size units are correctly set in all SCSS files, the favicon MIME type is correct in index.html
, and there are no missing or unnecessary files. There are no critical or minor issues remaining. Your attention to detail and prompt resolution of previous feedback is much appreciated—keep up the excellent work!
✨ Please rate this review in the Platform's notification center1. I will be grateful for your feedback! ✨
No description provided.