-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat:implement responsive learn-more section #34
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.
We need to change title to "we know a lot". Also the links are made incorrectly, but we could fix that later since it's not about responsiveness.
line-height: 22px; | ||
} | ||
} | ||
|
||
@media only screen and (min-width: 769px) and (max-width: 1024px) { |
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.
You don't need the and (max-width: ... ) in my opinion
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.
I know
@@ -3,6 +3,13 @@ | |||
line-height: 19px; | |||
} | |||
|
|||
@media only screen and (max-width: 320px) { |
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.
I don't have where to write it but, the additional title in 320px screen is 28px and should be 20px.
Also, why in additional info the title block is unique to additional info? why not use content title?
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.
switched
@@ -15,5 +15,6 @@ | |||
.additional-info__subtitle { | |||
font-size: 18px; | |||
line-height: 18px; | |||
margin: 22px 0 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.
In 320px screen the size of the subtitle is 12px
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.
switched to content_subtitle
blocks/arrow-icon/arrow-icon.css
Outdated
|
||
@media only screen and (max-width: 320px) { | ||
.arrow-icon { | ||
font-size: 14px; |
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 icon of the arrow is aligned to the upper row of the link and not the lower row
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.
updated
.arrow-icon { | ||
font-size: 14px; | ||
width: 26px; | ||
height: 22px; |
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 arrow is too big compared to the figma design
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.
fixed
@@ -1,11 +1,11 @@ | |||
.additional-info__list-item { | |||
margin-bottom: 20px; | |||
margin-bottom: 16px; |
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.
You should add "last-of-type", you have extra margin on the second list item
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.
done
@@ -1,11 +1,11 @@ | |||
.additional-info__list-item { | |||
margin-bottom: 20px; | |||
margin-bottom: 16px; |
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.
margin bottom should be 18px for 320px
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.
done
@@ -3,6 +3,13 @@ | |||
line-height: 19px; | |||
} | |||
|
|||
@media only screen and (max-width: 320px) { | |||
.additional-info__link { | |||
font-size: 14px; |
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.
You should specify font-weight everywhere. font-weight 500 looks different the the normal one.
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.
I don't see any issues! Good job!
No description provided.