-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
make searc-bar #4698
base: master
Are you sure you want to change the base?
make searc-bar #4698
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.
Thank you for your submission! 😊 It looks like there's a consistent typo in the class name form__searc
which should be corrected to form__search
throughout your HTML and CSS files. This is important to ensure that your styles are applied correctly and consistently. Once you fix this typo, your code should meet the task requirements. 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.
src/index.html
Outdated
data-qa="big" | ||
> | ||
<input | ||
class="form__searc" |
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 class name 'form__searc'. It should likely be 'form__search' to match the expected class naming convention.
src/index.html
Outdated
data-qa="small" | ||
> | ||
<input | ||
class="form__searc form__searc--small" |
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 class name 'form__searc'. It should likely be 'form__search' to match the expected class naming convention.
src/style.css
Outdated
padding: 0; | ||
} | ||
|
||
.form__searc { |
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 class name 'form__searc'. It should be 'form__search' to match the intended class name.
src/style.css
Outdated
font-family: Avenir, sans-serif; | ||
} | ||
|
||
.form__searc:hover { |
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 class name 'form__searc'. It should be 'form__search' to match the intended class name.
src/style.css
Outdated
box-shadow: 0 3px 8px 0 #3d4e6133; | ||
} | ||
|
||
.form__searc:focus { |
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 class name 'form__searc'. It should be 'form__search' to match the intended class name.
src/style.css
Outdated
text-shadow: 0 4px 4px 0 #00000040; | ||
} | ||
|
||
.form__searc::placeholder { |
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 class name 'form__searc'. It should be 'form__search' to match the intended class name.
src/style.css
Outdated
font-family: Avenir, sans-serif; | ||
} | ||
|
||
.form__searc--small { |
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 class name 'form__searc--small'. It should be 'form__search--small' to match the intended class name.
src/style.css
Outdated
font-size: 14px; | ||
} | ||
|
||
.form__searc--small::placeholder { |
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 class name 'form__searc--small'. It should be 'form__search--small' to match the intended class name.
src/style.css
Outdated
font-size: 14px; | ||
} | ||
|
||
.form__searc--small:hover::placeholder { |
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 class name 'form__searc--small'. It should be 'form__search--small' to match the intended class name.
src/style.css
Outdated
font-size: 14px; | ||
} | ||
|
||
.form__searc--small:focus { |
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 class name 'form__searc--small'. It should be 'form__search--small' to match the intended class name.
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.
Great job on correcting the class name typo from form__searc
to form__search
in both the HTML and CSS files! 🎉 Your code now meets the task requirements and constraints as specified. The HTML file is well-structured, following the standard HTML5 document format, and the CSS file effectively implements styles for the form and input elements, including hover and focus states.
While there were no critical issues found, it's always a good practice to review the comments to further improve your code. This decision is made to help you move forward with your learning journey. Keep up the good work, and remember to address any feedback to avoid similar issues in the future. Happy coding! 😊
✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨
DEMO LINK
TEST REPORT LINK
Icon implemented using background-image CSS property
Inputs are written inside of 'form' tag with correctly passed attributes
All
Typical Mistakes
fromBEM
lesson theory are checked.Code follows all the Code Style Rules ❗️