Skip to content

Commit

Permalink
fix: layout with responsive design up to 768px of participant review …
Browse files Browse the repository at this point in the history
…section and step section
  • Loading branch information
yolophg committed Jul 14, 2024
1 parent be9a7a2 commit 1e92f64
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions components/participant-review-section.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ class ParticipantReviewsSection extends HTMLElement {
margin: 0 27px;
padding: 100px 0;
@media only screen and (min-width: 768px) {
width: 80%;
margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
padding: 149px 0;
}
Expand Down
6 changes: 6 additions & 0 deletions components/step-section.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ class StepsSection extends HTMLElement {
max-width: 1550px;
margin: 0 27px;
padding: 100px 0;
@media only screen and (min-width: 768px) {
width: 80%;
margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
padding: 149px 0;
}
Expand Down

0 comments on commit 1e92f64

Please sign in to comment.