Skip to content

Commit 8545ef3

Browse files
committed
feat(API-1944): Add main Next steps block component
1 parent 23c23a4 commit 8545ef3

File tree

2 files changed

+27
-4
lines changed

2 files changed

+27
-4
lines changed

components/components.css

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,19 @@ button {
9191
background-color: #F1F4F9;
9292
padding: 20px 50px;
9393
display: flex;
94-
align-items: center;
9594

9695
font-size: 16px;
9796
line-height: 24px;
9897

9998
color: #677688;
10099
}
101-
100+
.block-next-steps.block-next-steps-main {
101+
flex-direction: column;
102+
align-items: center;
103+
}
104+
.block-next-steps.block-next-steps-alt {
105+
align-items: center;
106+
}
102107
.block-next-steps img {
103108
margin-right: 50px;
104109
}
@@ -114,7 +119,11 @@ button {
114119
line-height: 41px;
115120
margin-bottom: 20px;
116121
}
117-
.block-next-steps-text {
122+
.block-next-steps.block-next-steps-main .block-next-steps-text {
123+
margin-bottom: 30px;
124+
font-weight: 400;
125+
}
126+
.block-next-steps.block-next-steps-alt .block-next-steps-text {
118127
margin-bottom: 11px;
119128
}
120129
.block-next-steps ul {

components/components.html

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373

7474
<hr>
7575

76-
<div class="block-next-steps">
76+
<div class="block-next-steps block-next-steps-alt">
7777
<img src="../content/img/illustrations/illus--Attribute.svg" width="140px">
7878
<div class="block-next-steps-column">
7979
<div class="block-next-steps-title">Next Step</div>
@@ -89,6 +89,20 @@
8989

9090
<hr>
9191

92+
<div class="block-next-steps block-next-steps-main">
93+
<div class="block-next-steps-title">Next Step</div>
94+
<div class="block-next-steps-text">Now that you’ve gotten your App token, continue the journey with Step 2!</div>
95+
<button class="next-steps-button">
96+
<div class="next-steps-button-number">2</div>
97+
<div class="next-steps-button-text">
98+
Develop<br>
99+
your App
100+
</div>
101+
</button>
102+
</div>
103+
104+
<hr>
105+
92106
<button class="next-steps-button">
93107
<div class="next-steps-button-number">1</div>
94108
<div class="next-steps-button-text">

0 commit comments

Comments
 (0)