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

add solution #4715

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

add solution #4715

wants to merge 1 commit into from

Conversation

VM93
Copy link

@VM93 VM93 commented Jan 16, 2025

  • 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 from BEM lesson theory are checked.

  • 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 your submission! 🎉 While there are a few minor issues, such as the use of the * selector in CSS and the self-closing <form> tag, these do not critically impact the functionality of your code. You've done well in meeting the core requirements, and with a few tweaks, your code will be even better. Keep up the good work and continue refining your skills! 😊

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

Comment on lines +20 to +23
<form
class="search-bar big-search-bar"
data-qa="big"
>

Choose a reason for hiding this comment

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

The <form> tag should not be self-closing. In HTML, form tags should have an opening <form> and a closing </form> tag. Please remove the self-closing slash to ensure proper HTML syntax.

Comment on lines +32 to +35
<form
class="search-bar small-search-bar"
data-qa="small"
>

Choose a reason for hiding this comment

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

Similar to the previous form, the <form> tag should not be self-closing. Ensure it has an opening <form> and a closing </form> tag.


.search-bar-input:focus {
outline: none;
font-family: Avenir-Heavy, sans-serif;

Choose a reason for hiding this comment

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

The font-family 'Avenir-Heavy' is not defined in the @font-face rules. You should use 'Avenir' with the appropriate font-weight to achieve the desired effect. Consider using 'font-weight: 900;' instead to apply the heavy font style.

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