@cfpb/cfpb-design-system 3.1.9 → 3.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/CHANGELOG.md +119 -0
  2. package/dist/base/index.css +1 -1
  3. package/dist/base/index.css.map +2 -2
  4. package/dist/base/index.js +1 -1
  5. package/dist/base/index.js.map +1 -1
  6. package/dist/components/cfpb-expandables/index.css +1 -1
  7. package/dist/components/cfpb-expandables/index.css.map +2 -2
  8. package/dist/components/cfpb-expandables/index.js +1 -1
  9. package/dist/components/cfpb-expandables/index.js.map +1 -1
  10. package/dist/components/cfpb-forms/index.css +1 -1
  11. package/dist/components/cfpb-forms/index.css.map +2 -2
  12. package/dist/components/cfpb-forms/index.js +1 -1
  13. package/dist/components/cfpb-forms/index.js.map +1 -1
  14. package/dist/components/cfpb-layout/index.css +1 -1
  15. package/dist/components/cfpb-layout/index.css.map +2 -2
  16. package/dist/components/cfpb-layout/index.js +1 -1
  17. package/dist/components/cfpb-layout/index.js.map +1 -1
  18. package/dist/components/cfpb-notifications/index.css +1 -1
  19. package/dist/components/cfpb-notifications/index.css.map +2 -2
  20. package/dist/components/cfpb-notifications/index.js.map +1 -1
  21. package/dist/components/cfpb-tables/index.css +1 -1
  22. package/dist/components/cfpb-tables/index.css.map +2 -2
  23. package/dist/components/cfpb-tables/index.js +1 -1
  24. package/dist/components/cfpb-tables/index.js.map +1 -1
  25. package/dist/components/cfpb-typography/index.css +1 -1
  26. package/dist/components/cfpb-typography/index.css.map +2 -2
  27. package/dist/components/cfpb-typography/index.js +1 -1
  28. package/dist/components/cfpb-typography/index.js.map +1 -1
  29. package/dist/index.css +1 -1
  30. package/dist/index.css.map +2 -2
  31. package/dist/index.js +1 -1
  32. package/dist/index.js.map +3 -3
  33. package/dist/utilities/index.css +1 -1
  34. package/dist/utilities/index.css.map +2 -2
  35. package/dist/utilities/index.js +1 -1
  36. package/dist/utilities/index.js.map +3 -3
  37. package/package.json +2 -2
  38. package/src/abstracts/heading-mixins.scss +245 -190
  39. package/src/base/base.scss +12 -15
  40. package/src/components/cfpb-forms/label.scss +3 -9
  41. package/src/components/cfpb-layout/card-group.scss +1 -2
  42. package/src/components/cfpb-layout/card.scss +2 -3
  43. package/src/components/cfpb-layout/hero.scss +4 -6
  44. package/src/components/cfpb-tables/table.scss +6 -2
  45. package/src/components/cfpb-typography/date.scss +2 -2
  46. package/src/components/cfpb-typography/meta-header.scss +3 -9
  47. package/src/components/cfpb-typography/pull-quote.scss +7 -9
  48. package/src/components/cfpb-typography/slug-header.scss +2 -3
  49. package/src/utilities/utilities.scss +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cfpb/cfpb-design-system",
3
- "version": "3.1.9",
3
+ "version": "3.2.1",
4
4
  "description": "CFPB's UI framework",
5
5
  "main": "src/index.js",
6
6
  "author": {
@@ -19,6 +19,6 @@
19
19
  "bugs": {
20
20
  "url": "https://github.com/cfpb/design-system/issues"
21
21
  },
22
- "gitHead": "b6b39a3000a8fd8f75f237db1a86d3f3725780f8",
22
+ "gitHead": "d9b9862ef0a34a0ca6f4835347ac7f202ed50e3e",
23
23
  "type": "module"
24
24
  }
@@ -8,78 +8,91 @@
8
8
  Base styles
9
9
  ========================================================================== */
10
10
 
11
- @mixin heading-1() {
12
- margin-bottom: math.div(15px, $size-i) + em;
11
+ @mixin heading-1(
12
+ $has-margin-bottom: true,
13
+ $has-margin-top: true,
14
+ $is-responsive: true
15
+ ) {
13
16
  font-size: math.div($size-i, $base-font-size-px) + em;
14
17
  font-weight: 600;
15
18
  letter-spacing: inherit;
16
19
  line-height: 1.25;
17
20
  text-transform: inherit;
18
- }
19
21
 
20
- @mixin heading-2() {
21
- margin-bottom: math.div(15px, $size-ii) + em;
22
- font-size: math.div($size-ii, $base-font-size-px) + em;
23
- font-weight: 600;
24
- letter-spacing: inherit;
25
- line-height: 1.25;
26
- text-transform: inherit;
27
- }
22
+ @if $has-margin-bottom {
23
+ margin-bottom: math.div(15px, $size-i) + em;
24
+ }
28
25
 
29
- @mixin heading-3() {
30
- margin-bottom: math.div(15px, $size-iii) + em;
31
- font-size: math.div($size-iii, $base-font-size-px) + em;
32
- font-weight: normal;
33
- letter-spacing: inherit;
34
- line-height: 1.25;
35
- text-transform: inherit;
36
- }
26
+ @if $has-margin-top {
27
+ p + &,
28
+ ul + &,
29
+ ol + &,
30
+ dl + &,
31
+ figure + &,
32
+ img + &,
33
+ table + &,
34
+ blockquote + & {
35
+ margin-top: math.div(60px, $size-i) + em;
36
+ }
37
37
 
38
- @mixin heading-4() {
39
- margin-bottom: math.div(15px, $size-iv) + em;
40
- font-size: math.div($size-iv, $base-font-size-px) + em;
41
- font-weight: 500;
42
- letter-spacing: inherit;
43
- line-height: 1.25;
44
- text-transform: inherit;
45
- }
38
+ @if $is-responsive {
39
+ // Mobile only.
40
+ @include respond-to-max($bp-xs-max) {
41
+ p + &,
42
+ ul + &,
43
+ ol + &,
44
+ dl + &,
45
+ figure + &,
46
+ img + &,
47
+ table + &,
48
+ blockquote + & {
49
+ margin-top: math.div(45px, $size-ii) + em;
50
+ }
51
+ h2 + &,
52
+ .h2 + &,
53
+ h3 + &,
54
+ .h3 + &,
55
+ h4 + &,
56
+ .h4 + &,
57
+ h5 + &,
58
+ .h5 + &,
59
+ h6 + &,
60
+ .h6 + & {
61
+ margin-top: math.div(30px, $size-ii) + em;
62
+ }
63
+ }
64
+ }
65
+ }
46
66
 
47
- @mixin heading-5() {
48
- margin-bottom: math.div(15px, $size-v) + em;
49
- font-size: math.div($size-v, $base-font-size-px) + em;
50
- font-weight: 600;
51
- letter-spacing: 1px;
52
- line-height: 1.25;
53
- text-transform: uppercase;
67
+ @if $is-responsive {
68
+ // Mobile only.
69
+ @include respond-to-max($bp-xs-max) {
70
+ @include heading-2(
71
+ $has-margin-bottom,
72
+ $has-margin-top,
73
+ $is-responsive: false
74
+ );
75
+ }
76
+ }
54
77
  }
55
78
 
56
- @mixin heading-6() {
57
- margin-bottom: math.div(15px, $size-vi) + em;
58
- font-size: math.div($size-vi, $base-font-size-px) + em;
59
- font-weight: 600;
60
- letter-spacing: 1px;
79
+ @mixin heading-2(
80
+ $has-margin-bottom: true,
81
+ $has-margin-top: true,
82
+ $is-responsive: true,
83
+ $font-weight: 600
84
+ ) {
85
+ font-size: math.div($size-ii, $base-font-size-px) + em;
86
+ font-weight: $font-weight;
87
+ letter-spacing: inherit;
61
88
  line-height: 1.25;
62
- text-transform: uppercase;
63
- }
64
-
65
- @mixin h1() {
66
- @include heading-1;
89
+ text-transform: inherit;
67
90
 
68
- p + &,
69
- ul + &,
70
- ol + &,
71
- dl + &,
72
- figure + &,
73
- img + &,
74
- table + &,
75
- blockquote + & {
76
- margin-top: math.div(60px, $size-i) + em;
91
+ @if $has-margin-bottom {
92
+ margin-bottom: math.div(15px, $size-ii) + em;
77
93
  }
78
94
 
79
- // Mobile only.
80
- @include respond-to-max($bp-xs-max) {
81
- @include heading-2;
82
-
95
+ @if $has-margin-top {
83
96
  p + &,
84
97
  ul + &,
85
98
  ol + &,
@@ -90,8 +103,9 @@
90
103
  blockquote + & {
91
104
  margin-top: math.div(45px, $size-ii) + em;
92
105
  }
93
- h2 + &,
94
- .h2 + &,
106
+
107
+ h1 + &,
108
+ .h1 + &,
95
109
  h3 + &,
96
110
  .h3 + &,
97
111
  h4 + &,
@@ -102,40 +116,54 @@
102
116
  .h6 + & {
103
117
  margin-top: math.div(30px, $size-ii) + em;
104
118
  }
105
- }
106
- }
107
119
 
108
- @mixin h2() {
109
- @include heading-2;
110
-
111
- p + &,
112
- ul + &,
113
- ol + &,
114
- dl + &,
115
- figure + &,
116
- img + &,
117
- table + &,
118
- blockquote + & {
119
- margin-top: math.div(45px, $size-ii) + em;
120
+ @if $is-responsive {
121
+ // Mobile only.
122
+ @include respond-to-max($bp-xs-max) {
123
+ p + &,
124
+ ul + &,
125
+ ol + &,
126
+ dl + &,
127
+ figure + &,
128
+ img + &,
129
+ table + &,
130
+ blockquote + & {
131
+ margin-top: math.div(30px, $size-iii) + em;
132
+ }
133
+ }
134
+ }
120
135
  }
121
136
 
122
- h1 + &,
123
- .h1 + &,
124
- h3 + &,
125
- .h3 + &,
126
- h4 + &,
127
- .h4 + &,
128
- h5 + &,
129
- .h5 + &,
130
- h6 + &,
131
- .h6 + & {
132
- margin-top: math.div(30px, $size-ii) + em;
137
+ @if $is-responsive {
138
+ // Mobile only.
139
+ @include respond-to-max($bp-xs-max) {
140
+ @include heading-3(
141
+ $has-margin-bottom,
142
+ $has-margin-top,
143
+ $is-responsive: false,
144
+ $font-weight: $font-weight
145
+ );
146
+ }
133
147
  }
148
+ }
134
149
 
135
- // Mobile only.
136
- @include respond-to-max($bp-xs-max) {
137
- @include heading-3;
150
+ @mixin heading-3(
151
+ $has-margin-bottom: true,
152
+ $has-margin-top: true,
153
+ $is-responsive: true,
154
+ $font-weight: normal
155
+ ) {
156
+ font-size: math.div($size-iii, $base-font-size-px) + em;
157
+ font-weight: $font-weight;
158
+ letter-spacing: inherit;
159
+ line-height: 1.25;
160
+ text-transform: inherit;
161
+
162
+ @if $has-margin-bottom {
163
+ margin-bottom: math.div(15px, $size-iii) + em;
164
+ }
138
165
 
166
+ @if $has-margin-top {
139
167
  p + &,
140
168
  ul + &,
141
169
  ol + &,
@@ -143,136 +171,163 @@
143
171
  figure + &,
144
172
  img + &,
145
173
  table + &,
146
- blockquote + & {
174
+ blockquote + &,
175
+ h1 + &,
176
+ .h1 + &,
177
+ h2 + &,
178
+ .h2 + &,
179
+ h4 + &,
180
+ .h4 + &,
181
+ h5 + &,
182
+ .h5 + &,
183
+ h6 + &,
184
+ .h6 + & {
147
185
  margin-top: math.div(30px, $size-iii) + em;
148
186
  }
149
187
  }
188
+
189
+ @if $is-responsive {
190
+ // Mobile only.
191
+ @include respond-to-max($bp-xs-max) {
192
+ @include heading-4(
193
+ $has-margin-bottom,
194
+ $has-margin-top,
195
+ $is-responsive: false,
196
+ $font-weight: $font-weight
197
+ );
198
+ }
199
+ }
150
200
  }
151
201
 
152
- @mixin h3() {
153
- @include heading-3;
202
+ @mixin heading-4(
203
+ $has-margin-bottom: true,
204
+ $has-margin-top: true,
205
+ $is-responsive: true,
206
+ $font-weight: 500
207
+ ) {
208
+ font-size: math.div($size-iv, $base-font-size-px) + em;
209
+ font-weight: $font-weight;
210
+ letter-spacing: inherit;
211
+ line-height: 1.25;
212
+ text-transform: inherit;
213
+
214
+ @if $has-margin-bottom {
215
+ margin-bottom: math.div(15px, $size-iv) + em;
216
+ }
154
217
 
155
- p + &,
156
- ul + &,
157
- ol + &,
158
- dl + &,
159
- figure + &,
160
- img + &,
161
- table + &,
162
- blockquote + &,
163
- h1 + &,
164
- .h1 + &,
165
- h2 + &,
166
- .h2 + &,
167
- h4 + &,
168
- .h4 + &,
169
- h5 + &,
170
- .h5 + &,
171
- h6 + &,
172
- .h6 + & {
173
- margin-top: math.div(30px, $size-iii) + em;
218
+ @if $has-margin-top {
219
+ p + &,
220
+ ul + &,
221
+ ol + &,
222
+ dl + &,
223
+ figure + &,
224
+ img + &,
225
+ table + &,
226
+ blockquote + &,
227
+ h1 + &,
228
+ .h1 + &,
229
+ h2 + &,
230
+ .h2 + &,
231
+ h3 + &,
232
+ .h3 + &,
233
+ h5 + &,
234
+ .h5 + &,
235
+ h6 + &,
236
+ .h6 + & {
237
+ margin-top: math.div(30px, $size-iv) + em;
238
+ }
174
239
  }
175
240
 
176
- // Mobile only.
177
- @include respond-to-max($bp-xs-max) {
178
- @include heading-4;
241
+ @if $is-responsive {
242
+ // Mobile only.
243
+ @include respond-to-max($bp-xs-max) {
244
+ margin-bottom: math.div(10px, $base-font-size-px) + em;
245
+ font-size: 1em;
246
+ line-height: math.div(18px, $base-font-size-px);
247
+ }
179
248
  }
180
249
  }
181
250
 
182
- @mixin h4() {
183
- @include heading-4;
251
+ @mixin heading-5($has-margin-bottom: true, $has-margin-top: true) {
252
+ font-size: math.div($size-v, $base-font-size-px) + em;
253
+ font-weight: 600;
254
+ letter-spacing: 1px;
255
+ line-height: 1.25;
256
+ text-transform: uppercase;
184
257
 
185
- p + &,
186
- ul + &,
187
- ol + &,
188
- dl + &,
189
- figure + &,
190
- img + &,
191
- table + &,
192
- blockquote + &,
193
- h1 + &,
194
- .h1 + &,
195
- h2 + &,
196
- .h2 + &,
197
- h3 + &,
198
- .h3 + &,
199
- h5 + &,
200
- .h5 + &,
201
- h6 + &,
202
- .h6 + & {
203
- margin-top: math.div(30px, $size-iv) + em;
258
+ @if $has-margin-bottom {
259
+ margin-bottom: math.div(15px, $size-v) + em;
204
260
  }
205
261
 
206
- // Mobile only.
207
- @include respond-to-max($bp-xs-max) {
208
- $h4-font-size-on-xs: $base-font-size-px;
209
- margin-bottom: math.div(10px, $h4-font-size-on-xs) + em;
210
- font-size: math.div($h4-font-size-on-xs, $base-font-size-px) + em;
211
- line-height: math.div(18px, $h4-font-size-on-xs);
262
+ @if $has-margin-top {
263
+ p + &,
264
+ ul + &,
265
+ ol + &,
266
+ dl + &,
267
+ figure + &,
268
+ img + &,
269
+ table + &,
270
+ blockquote + &,
271
+ h1 + &,
272
+ .h1 + &,
273
+ h2 + &,
274
+ .h2 + &,
275
+ h3 + &,
276
+ .h3 + &,
277
+ h4 + &,
278
+ .h4 + &,
279
+ h6 + &,
280
+ .h6 + & {
281
+ margin-top: math.div(30px, $size-v) + em;
282
+ }
212
283
  }
213
284
  }
214
285
 
215
- @mixin h5() {
216
- @include heading-5;
286
+ @mixin heading-6($has-margin-bottom: true, $has-margin-top: true) {
287
+ font-size: math.div($size-vi, $base-font-size-px) + em;
288
+ font-weight: 600;
289
+ letter-spacing: 1px;
290
+ line-height: 1.25;
291
+ text-transform: uppercase;
217
292
 
218
- p + &,
219
- ul + &,
220
- ol + &,
221
- dl + &,
222
- figure + &,
223
- img + &,
224
- table + &,
225
- blockquote + &,
226
- h1 + &,
227
- .h1 + &,
228
- h2 + &,
229
- .h2 + &,
230
- h3 + &,
231
- .h3 + &,
232
- h4 + &,
233
- .h4 + &,
234
- h6 + &,
235
- .h6 + & {
236
- margin-top: math.div(30px, $size-v) + em;
293
+ @if $has-margin-bottom {
294
+ margin-bottom: math.div(15px, $size-vi) + em;
237
295
  }
238
- }
239
-
240
- @mixin h6() {
241
- @include heading-6;
242
296
 
243
- p + &,
244
- ul + &,
245
- ol + &,
246
- dl + &,
247
- figure + &,
248
- img + &,
249
- table + &,
250
- blockquote + &,
251
- h1 + &,
252
- .h1 + &,
253
- h2 + &,
254
- .h2 + &,
255
- h3 + &,
256
- .h3 + &,
257
- h4 + &,
258
- .h4 + &,
259
- h5 + &,
260
- .h5 + & {
261
- margin-top: math.div(30px, $size-vi) + em;
297
+ @if $has-margin-top {
298
+ p + &,
299
+ ul + &,
300
+ ol + &,
301
+ dl + &,
302
+ figure + &,
303
+ img + &,
304
+ table + &,
305
+ blockquote + &,
306
+ h1 + &,
307
+ .h1 + &,
308
+ h2 + &,
309
+ .h2 + &,
310
+ h3 + &,
311
+ .h3 + &,
312
+ h4 + &,
313
+ .h4 + &,
314
+ h5 + &,
315
+ .h5 + & {
316
+ margin-top: math.div(30px, $size-vi) + em;
317
+ }
262
318
  }
263
319
  }
264
320
 
265
321
  @mixin u-lead-paragraph() {
266
- @include heading-3;
267
-
268
322
  margin-top: 0;
269
323
  margin-bottom: 15px;
270
324
 
271
- // Mobile only.
272
- @include respond-to-max($bp-xs-max) {
273
- // Use the same regular weight but reduce the sizes to h4 size.
274
- font-size: math.div(18px, $base-font-size-px) + em;
275
- }
325
+ @include heading-3(
326
+ $has-margin-bottom: false,
327
+ $has-margin-top: false,
328
+ $is-responsive: true,
329
+ $font-weight: normal
330
+ );
276
331
  }
277
332
 
278
333
  // For when you want a heading that's bigger than a normal H1.
@@ -44,32 +44,32 @@ h6 {
44
44
 
45
45
  h1,
46
46
  .h1 {
47
- @include h1;
47
+ @include heading-1;
48
48
  }
49
49
 
50
50
  h2,
51
51
  .h2 {
52
- @include h2;
52
+ @include heading-2;
53
53
  }
54
54
 
55
55
  h3,
56
56
  .h3 {
57
- @include h3;
57
+ @include heading-3;
58
58
  }
59
59
 
60
60
  h4,
61
61
  .h4 {
62
- @include h4;
62
+ @include heading-4;
63
63
  }
64
64
 
65
65
  h5,
66
66
  .h5 {
67
- @include h5;
67
+ @include heading-5;
68
68
  }
69
69
 
70
70
  h6,
71
71
  .h6 {
72
- @include h6;
72
+ @include heading-6;
73
73
  }
74
74
 
75
75
  .lead-paragraph {
@@ -275,15 +275,12 @@ th {
275
275
  .h5,
276
276
  h6,
277
277
  .h6 {
278
- @include h5;
279
-
280
- // TODO: Move this above the h4 mixin. Mixin needs to allow margin override.
281
- /* stylelint-disable no-duplicate-selectors */
282
- & {
283
- margin: 0;
284
- font-size: inherit;
285
- }
286
- /* stylelint-enable */
278
+ margin: 0;
279
+ font-size: inherit;
280
+ font-weight: inherit;
281
+ letter-spacing: inherit;
282
+ line-height: inherit;
283
+ text-transform: inherit;
287
284
  }
288
285
  }
289
286
  }
@@ -18,17 +18,11 @@
18
18
  }
19
19
 
20
20
  &--heading {
21
- @include h4;
21
+ display: block;
22
22
 
23
- // TODO: Move this above the h4 mixin. Mixin needs to allow margin override.
24
- /* stylelint-disable no-duplicate-selectors */
25
- & {
26
- display: block;
23
+ margin-bottom: math.div(10px, $size-iv) + em;
27
24
 
28
- // Overwrites heading-4 margin.
29
- margin-bottom: math.div(10px, $size-iv) + em;
30
- }
31
- /* stylelint-enable */
25
+ @include heading-4($has-margin-bottom: false);
32
26
 
33
27
  // Add a gap between the label helper and label heading
34
28
  .a-label__helper--block {
@@ -1,6 +1,5 @@
1
1
  @use 'sass:math';
2
2
  @use '@cfpb/cfpb-design-system/src/abstracts' as *;
3
- @use '@cfpb/cfpb-design-system/src/abstracts' as *;
4
3
 
5
4
  // Grid-based "column" card group layouts.
6
5
  .o-card-group {
@@ -125,7 +124,7 @@ _:-ms-lang(x),
125
124
  // center the content of the first card and increase the heading.
126
125
  .m-card:nth-of-type(1) {
127
126
  h3 {
128
- @include h2;
127
+ @include heading-2;
129
128
  }
130
129
 
131
130
  > a {
@@ -1,6 +1,5 @@
1
1
  @use 'sass:math';
2
2
  @use '@cfpb/cfpb-design-system/src/abstracts' as *;
3
- @use '@cfpb/cfpb-design-system/src/abstracts' as *;
4
3
 
5
4
  // $c = default state.
6
5
  // $v = `:visited` state.
@@ -101,7 +100,7 @@
101
100
  // Shrink heading at smaller screen sizes.
102
101
  &__heading {
103
102
  @include respond-to-max($bp-med-min) {
104
- @include h3;
103
+ @include heading-3;
105
104
  }
106
105
  }
107
106
 
@@ -235,7 +234,7 @@
235
234
 
236
235
  // Breakout cards have larger links.
237
236
  .m-card__footer > span {
238
- @include heading-3;
237
+ @include heading-3($is-responsive: false);
239
238
  }
240
239
  }
241
240
  }
@@ -1,6 +1,5 @@
1
1
  @use 'sass:math';
2
2
  @use '@cfpb/cfpb-design-system/src/abstracts' as *;
3
- @use '@cfpb/cfpb-design-system/src/abstracts' as *;
4
3
 
5
4
  // Hero variables
6
5
  $hero-desktop-height: 285px;
@@ -14,7 +13,7 @@ $hero-desktop-height: 285px;
14
13
  // Tablet and above.
15
14
  @include respond-to-min($bp-sm-min) {
16
15
  .m-hero__subhead {
17
- @include heading-3;
16
+ @include heading-3($is-responsive: false);
18
17
  }
19
18
  }
20
19
 
@@ -27,8 +26,7 @@ $hero-desktop-height: 285px;
27
26
  @include u-superheading;
28
27
  }
29
28
  .m-hero__subhead {
30
- @include heading-2;
31
- font-weight: 400;
29
+ @include heading-2($is-responsive: false, $font-weight: 400);
32
30
  }
33
31
  }
34
32
  }
@@ -51,7 +49,7 @@ $hero-desktop-height: 285px;
51
49
  }
52
50
 
53
51
  &__heading {
54
- @include heading-1;
52
+ @include heading-1($is-responsive: false);
55
53
  }
56
54
 
57
55
  &__subhead {
@@ -130,7 +128,7 @@ $hero-desktop-height: 285px;
130
128
  @include respond-to-max($bp-sm-max) {
131
129
  .m-hero {
132
130
  &__heading {
133
- @include heading-2;
131
+ @include heading-2($is-responsive: false);
134
132
  }
135
133
  &__subhead {
136
134
  font-size: $size-iv;