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 task solution #4318

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

add task solution #4318

wants to merge 5 commits into from

Conversation

tuhusova
Copy link

@tuhusova tuhusova commented Jun 2, 2024

  • 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 ❗️

@tuhusova tuhusova closed this Jun 2, 2024
@tuhusova tuhusova reopened this Jun 2, 2024
@tuhusova
Copy link
Author

tuhusova commented Jun 2, 2024

  • 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

@volodymyr-soltys97 volodymyr-soltys97 left a comment

Choose a reason for hiding this comment

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

Hi, there are no styles on the demo link, you need to make a deploy and check it after on the demo
image

src/index.html Outdated
data-qa="keypress"
placeholder="Try “Los Angeles“"
/>
<div class="search-bar">

Choose a reason for hiding this comment

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

This div is redundant

Suggested change
<div class="search-bar">

src/style.css Outdated
* {
font-family: Avenir, Arial, Helvetica, sans-serif;
box-sizing: border-box;
font-weight: 300px;

Choose a reason for hiding this comment

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

Suggested change
font-weight: 300px;
font-weight: 300;

}

* {
font-family: Avenir, Arial, Helvetica, sans-serif;

Choose a reason for hiding this comment

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

it is better to set font-family for html tag selector and let other elements inherit it

src/style.css Outdated
width: 100%;
border: 1px solid #e1e7ed;
box-shadow: 0 1px 8px 0 rgba(61, 78, 97, 0.1);
line-height: 21.86px;

Choose a reason for hiding this comment

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

do not set decimal pixel values

src/style.css Outdated
.search-bar-input--down {
display: flex;
font-size: 14px;
border-radius: 5;

Choose a reason for hiding this comment

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

Suggested change
border-radius: 5;
border-radius: 5px;

src/style.css Outdated
width: 100%;
border: 1px solid #e1e7ed;
box-shadow: 0 1px 8px 0 rgba(61, 78, 97, 0.1);
font-family: Avenir, Arial, Helvetica, sans-serif;

Choose a reason for hiding this comment

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

Suggested change
font-family: Avenir, Arial, Helvetica, sans-serif;
font-family: inherit;

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.

3 participants