Skip to content

Commit

Permalink
feat: Add missing simple style code to comply with figma
Browse files Browse the repository at this point in the history
  • Loading branch information
yolophg committed Jul 10, 2024
1 parent 69646bf commit 020c952
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions components/step.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,14 @@ class StepList extends BaseStepElement {
row-gap: 10px;
margin-top: 20px;
@media only screen and (min-width: 768px) {
margin-top: 30px;
}
@media only screen and (min-width: 1024px) {
flex-direction: row;
column-gap: 10px;
margin-top: 40px;
}
}
.step-list ::slotted(ds-step) {
Expand Down Expand Up @@ -94,6 +99,7 @@ class Step extends BaseStepElement {
.step-title h3 {
font-size: 24px;
font-weight: var(--font-weight-medium);
@media only screen and (min-width: 768px) {
font-size: 36px;
}
Expand All @@ -102,6 +108,7 @@ class Step extends BaseStepElement {
width: auto;
height: 40px;
margin: 20px 0;
@media only screen and (min-width: 768px) {
width: 60px;
height: 60px;
Expand All @@ -112,6 +119,7 @@ class Step extends BaseStepElement {
font-size: 16px;
font-weight: var(--font-weight-regular);
word-break: keep-all;
@media only screen and (min-width: 768px) {
font-size: 24px;
}
Expand Down

0 comments on commit 020c952

Please sign in to comment.