@@ -41,7 +41,9 @@ In code form the separated components might now look like:
4141 <h1>Page title</h1>
4242 <p>Lorem ipsum dolor [...etc]</p>
4343 </div>
44- <a class="button button--primary" href="#">Call to action</a>
44+ <a class="button button--primary" href="#">
45+ Call to action
46+ </a>
4547 </div>
4648</section>
4749```
@@ -64,10 +66,14 @@ Adding the eyebrow text and secondary paragraph is pretty straightforward. Becau
6466 <h1>Page title</h1>
6567 <p>Lorem ipsum dolor [...etc]</p>
6668+ <p class="text-size-sm">
67- + Suspendisse sed dictum dolor, at hendrerit nibh. Curabitur euismod ipsum jut mi <a href="#">elementum interdum</a>.
69+ + Suspendisse sed dictum dolor, at hendrerit nibh.
70+ + Curabitur euismod ipsum jut mi
71+ + <a href="#">elementum interdum</a>.
6872+ </p>
6973 </div>
70- <a class="button button--primary" href="#">Call to action</a>
74+ <a class="button button--primary" href="#">
75+ Call to action
76+ </a>
7177 </div>
7278</section>
7379```
@@ -90,15 +96,21 @@ Next let’s look at the two button Controls, one has a new ‘secondary’ styl
9096 <h1>Page title</h1>
9197 <p>Lorem ipsum dolor [...etc]</p>
9298 <p class="text-size-sm">
93- Suspendisse sed dictum dolor, at hendrerit nibh. Curabitur euismod ipsum jut mi <a href="#">elementum interdum</a>.
99+ Suspendisse sed dictum dolor, at hendrerit nibh.
100+ Curabitur euismod ipsum jut mi
101+ <a href="#">elementum interdum</a>.
94102 </p>
95103 </div>
96104+ <div class="grid">
97105+ <div class="grid__item">
98- <a class="button button--primary" href="#">Main action</a>
106+ <a class="button button--primary" href="#">
107+ Main action
108+ </a>
99109+ </div>
100110+ <div class="grid__item">
101- + <a class="button button--secondary" href="#">Secondary action</a>
111+ + <a class="button button--secondary" href="#">
112+ + Secondary action
113+ + </a>
102114+ </div>
103115+ </div>
104116 </div>
@@ -127,7 +139,13 @@ Now when the product team decide they need an email signup in the main hero or t
127139+ <email-input><input type="email" /></email-input>
128140 </div>
129141 <div class="grid__item">
130- + <button type="submit" class="button button--primary" href="#">Sign up</button>
142+ + <button
143+ + type="submit"
144+ + class="button button--primary"
145+ + href="#"
146+ + >
147+ + Sign up
148+ + </button>
131149 </div>
132150 </div>
133151+ </form>
0 commit comments