-
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
Create solution #4734
base: master
Are you sure you want to change the base?
Create solution #4734
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.
Great job on your submission! 🎉 Your code meets the task requirements, and the functionality is intact. There are a couple of minor improvements you might consider: ensure the data-qa
attribute is consistent across form inputs if needed for your logic, and double-check the commented-out CSS line to see if it should be active. Keep up the great work! 🚀
✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨
<input | ||
class="search-input search-input--small" | ||
type="text" | ||
placeholder="Try "Los Angeles"" | ||
/> |
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 second form input is missing the data-qa
attribute that is present in the first form input. Consider adding data-qa="keypress"
to maintain consistency if it is required for your application logic.
|
||
/* background: linear-gradient(var(--gradient_white-top-color),var(--gradient_white-bottom-color)); */ |
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 line defining a background gradient is commented out. If this is intentional, you can ignore this comment. Otherwise, consider uncommenting it to apply the gradient effect when the input is focused.
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 ❗️