-
Notifications
You must be signed in to change notification settings - Fork 567
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
Develop #356
base: master
Are you sure you want to change the base?
Develop #356
Conversation
OstinM
commented
Oct 25, 2023
- DEMO LINK
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.
Good job, but there is quite a bit of work to be done.
According to the task, you must have certain mandatory sections, which are not all present at the moment (it is enough to change the naming):
The element for changing the language should appear in one line:
The "Send" button should not take us anywhere at the moment:
https://gyazo.com/fdc2aaf3f162dc922e28eeac190160bf
src/styles/blocks/about-us.scss
Outdated
@include onDeskTop { | ||
@include hover(transform, scale(105%)); | ||
} | ||
|
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.
src/styles/blocks/comments.scss
Outdated
grid-column: span 12; | ||
} | ||
|
||
// column-gap: 30px; |
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.
Do not leave unnecessary comments.
&__info-list { | ||
padding-inline: 30px; | ||
margin: 0 0 50px 14px; | ||
@include onTablet { |
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.
@include onTablet { | |
@include onTablet { |
src/styles/blocks/features.scss
Outdated
grid-column: 1/ 5; | ||
margin: 0 0 0 14px; | ||
padding: 0; | ||
|
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.
src/styles/blocks/features.scss
Outdated
|
||
|
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.
src/styles/utils/_vars.scss
Outdated
$c-gray: #eee; | ||
$c-menu-item: #f9f9f9; | ||
$c-white: #fff; | ||
$main-text-c: #000; | ||
$second-text-c: #7c7c7c; | ||
$btn-c: #333; | ||
$btn-hover: #131313; | ||
$page-background-c: #f7f7f7; | ||
$see-more-link-c:#0db2b3; | ||
$contarast-c: #d6ecec; | ||
$dark-green-c: #0c797a; | ||
$form-border-c:#828282; | ||
$placeholder-c: #bdbdbd; | ||
$disabled-btn-c: #d0d0d0; | ||
$submit-btn-c: #39bebf; |
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.
Do not abbreviate the names of variables to unreadable ones and try to minimally use naming according to the content (that is, if you want to keep the color white, do not make the variable white-color, but name it more universally)
src/index.html
Outdated
<img | ||
src="./images/features-vector-photo.svg" | ||
alt="features vector photo" | ||
class="features__vector-photo" | ||
> |
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.
Don't forget about good code formatting.
<h3 class="features__second-title features__second-title--hidden"> | ||
Connectivity | ||
</h3> | ||
|
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.
src/index.html
Outdated
<div class="features__bottom"> | ||
<img | ||
src="./images/features-background.png" | ||
alt="features__background-img" |
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 alt
attribute contains information that will be displayed if the photo cannot be loaded, as well as voiced by the screen reader, so there should be a description of what the image contains.
src/index.html
Outdated
class="features__background-img" | ||
> | ||
</div> | ||
|
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 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 are not fixed issues from previous review, please fix
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.
Good job 👍
Just one moment. The form should do the same as in previous tasks, just reset after submissions