@comicrelief/component-library 8.44.3 → 8.45.0
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.
- package/dist/components/Atoms/Checkbox/Checkbox.test.js +0 -4
- package/dist/components/Atoms/ErrorText/__snapshots__/ErrorText.test.js.snap +0 -2
- package/dist/components/Atoms/Input/input.test.js +0 -2
- package/dist/components/Atoms/RadioButton/RadioButton.test.js +0 -4
- package/dist/components/Atoms/Select/__snapshots__/Select.test.js.snap +0 -1
- package/dist/components/Atoms/SocialIcons/Icon/Icon.js +39 -14
- package/dist/components/Atoms/SocialIcons/SocialIcons.js +91 -22
- package/dist/components/Atoms/SocialIcons/Utils/Icons.js +26 -7
- package/dist/components/Atoms/SocialIcons/Utils/Links.js +10 -0
- package/dist/components/Atoms/SocialIcons/__snapshots__/SocialIcons.test.js.snap +63 -48
- package/{src/components/Atoms/SocialIcons/assets → dist/components/Atoms/SocialIcons/assets/circled}/facebook.svg +1 -1
- package/{src/components/Atoms/SocialIcons/assets → dist/components/Atoms/SocialIcons/assets/circled}/twitter.svg +1 -1
- package/dist/components/Atoms/SocialIcons/assets/{youtube.svg → circled/youtube.svg} +1 -1
- package/dist/components/Atoms/SocialIcons/assets/standard/facebook.svg +3 -0
- package/dist/components/Atoms/SocialIcons/assets/standard/instagram.svg +3 -0
- package/dist/components/Atoms/SocialIcons/assets/standard/tiktok.svg +3 -0
- package/dist/components/Atoms/SocialIcons/assets/standard/x.svg +3 -0
- package/dist/components/Atoms/SocialIcons/assets/standard/youtube.svg +3 -0
- package/dist/components/Atoms/Text/Text.js +28 -28
- package/dist/components/Atoms/Text/Text.md +8 -8
- package/dist/components/Atoms/Text/__snapshots__/Text.test.js.snap +0 -9
- package/dist/components/Atoms/TextArea/TextArea.test.js +0 -1
- package/dist/components/Atoms/TextInputWithDropdown/__snapshots__/TextInputWithDropdown.test.js.snap +0 -7
- package/dist/components/Molecules/Accordion/__snapshots__/Accordion.test.js.snap +0 -4
- package/dist/components/Molecules/ArticleTeaser/ArticleTeaser.test.js +0 -10
- package/dist/components/Molecules/Banner/__snapshots__/Banner.test.js.snap +0 -2
- package/dist/components/Molecules/Descriptor/Descriptor.test.js +0 -13
- package/dist/components/Molecules/EmailSignUp/EmailSignUp.js +38 -0
- package/dist/components/Molecules/EmailSignUp/EmailSignUp.style.js +113 -0
- package/dist/components/Molecules/InfoBanner/__snapshots__/InfoBanner.test.js.snap +0 -24
- package/dist/components/Molecules/LogoLinked/LogoLinked.js +6 -6
- package/dist/components/Molecules/PartnerLink/PartnerLink.test.js +0 -2
- package/dist/components/Molecules/Promo/__snapshots__/Promo.test.js.snap +0 -8
- package/dist/components/Molecules/SchoolLookup/__snapshots__/SchoolLookup.test.js.snap +0 -1
- package/dist/components/Molecules/SearchInput/SearchInput.test.js +0 -1
- package/dist/components/Molecules/SearchResult/__snapshots__/SearchResult.test.js.snap +0 -18
- package/dist/components/Molecules/SingleMessage/__snapshots__/SingleMessage.test.js.snap +0 -14
- package/dist/components/Molecules/SingleMessageDS/__snapshots__/SingleMessageDs.test.js.snap +0 -4
- package/dist/components/Molecules/Typeahead/__snapshots__/Typeahead.test.js.snap +0 -1
- package/dist/components/Organisms/CookieBanner/CookieBanner.test.js +0 -2
- package/dist/components/Organisms/Donate/__snapshots__/Donate.test.js.snap +0 -35
- package/dist/components/Organisms/EmailSignUp/__snapshots__/EmailSignUp.test.js.snap +0 -8
- package/dist/components/Organisms/Footer/Footer.md +12 -11
- package/dist/components/Organisms/Footer/FundraisingRegulatorLogo/FundraisingRegulatorLogo.js +36 -16
- package/dist/components/Organisms/Footer/Nav/Nav.style.js +8 -8
- package/dist/components/Organisms/Footer/__snapshots__/Footer.test.js.snap +188 -241
- package/dist/components/Organisms/FooterNew/FooterNew.js +136 -0
- package/dist/components/Organisms/FooterNew/FooterNew.md +47 -0
- package/dist/components/Organisms/FooterNew/FooterNew.style.js +312 -0
- package/dist/components/Organisms/FooterNew/FooterNew.test.js +20 -0
- package/dist/components/Organisms/FooterNew/Nav/PrimaryNav.js +32 -0
- package/dist/components/Organisms/FooterNew/Nav/SecondaryNav.js +32 -0
- package/dist/components/Organisms/FooterNew/__snapshots__/FooterNew.test.js.snap +1490 -0
- package/dist/components/Organisms/FooterNew/dev-data/data.js +106 -0
- package/dist/components/Organisms/Membership/Membership.test.js +0 -12
- package/dist/components/Organisms/WYMDCarousel/__snapshots__/WYMDCarousel.test.js.snap +0 -3
- package/dist/index.js +20 -0
- package/dist/theme/crTheme/colors.js +12 -7
- package/dist/theme/shared/animations.js +46 -0
- package/package.json +1 -1
- package/src/components/Atoms/Checkbox/Checkbox.test.js +0 -4
- package/src/components/Atoms/ErrorText/__snapshots__/ErrorText.test.js.snap +0 -2
- package/src/components/Atoms/Input/input.test.js +0 -2
- package/src/components/Atoms/RadioButton/RadioButton.test.js +0 -4
- package/src/components/Atoms/Select/__snapshots__/Select.test.js.snap +0 -1
- package/src/components/Atoms/SocialIcons/Icon/Icon.js +47 -11
- package/src/components/Atoms/SocialIcons/SocialIcons.js +99 -25
- package/src/components/Atoms/SocialIcons/Utils/Icons.js +29 -10
- package/src/components/Atoms/SocialIcons/Utils/Links.js +10 -0
- package/src/components/Atoms/SocialIcons/__snapshots__/SocialIcons.test.js.snap +63 -48
- package/{dist/components/Atoms/SocialIcons/assets → src/components/Atoms/SocialIcons/assets/circled}/facebook.svg +1 -1
- package/{dist/components/Atoms/SocialIcons/assets → src/components/Atoms/SocialIcons/assets/circled}/twitter.svg +1 -1
- package/src/components/Atoms/SocialIcons/assets/{youtube.svg → circled/youtube.svg} +1 -1
- package/src/components/Atoms/SocialIcons/assets/standard/facebook.svg +3 -0
- package/src/components/Atoms/SocialIcons/assets/standard/instagram.svg +3 -0
- package/src/components/Atoms/SocialIcons/assets/standard/tiktok.svg +3 -0
- package/src/components/Atoms/SocialIcons/assets/standard/x.svg +3 -0
- package/src/components/Atoms/SocialIcons/assets/standard/youtube.svg +3 -0
- package/src/components/Atoms/Text/Text.js +19 -19
- package/src/components/Atoms/Text/Text.md +8 -8
- package/src/components/Atoms/Text/__snapshots__/Text.test.js.snap +0 -9
- package/src/components/Atoms/TextArea/TextArea.test.js +0 -1
- package/src/components/Atoms/TextInputWithDropdown/__snapshots__/TextInputWithDropdown.test.js.snap +0 -7
- package/src/components/Molecules/Accordion/__snapshots__/Accordion.test.js.snap +0 -4
- package/src/components/Molecules/ArticleTeaser/ArticleTeaser.test.js +0 -10
- package/src/components/Molecules/Banner/__snapshots__/Banner.test.js.snap +0 -2
- package/src/components/Molecules/Descriptor/Descriptor.test.js +0 -13
- package/src/components/Molecules/EmailSignUp/EmailSignUp.js +55 -0
- package/src/components/Molecules/EmailSignUp/EmailSignUp.style.js +107 -0
- package/src/components/Molecules/InfoBanner/__snapshots__/InfoBanner.test.js.snap +0 -24
- package/src/components/Molecules/LogoLinked/LogoLinked.js +5 -14
- package/src/components/Molecules/PartnerLink/PartnerLink.test.js +0 -2
- package/src/components/Molecules/Promo/__snapshots__/Promo.test.js.snap +0 -8
- package/src/components/Molecules/SchoolLookup/__snapshots__/SchoolLookup.test.js.snap +0 -1
- package/src/components/Molecules/SearchInput/SearchInput.test.js +0 -1
- package/src/components/Molecules/SearchResult/__snapshots__/SearchResult.test.js.snap +0 -18
- package/src/components/Molecules/SingleMessage/__snapshots__/SingleMessage.test.js.snap +0 -14
- package/src/components/Molecules/SingleMessageDS/__snapshots__/SingleMessageDs.test.js.snap +0 -4
- package/src/components/Molecules/Typeahead/__snapshots__/Typeahead.test.js.snap +0 -1
- package/src/components/Organisms/CookieBanner/CookieBanner.test.js +0 -2
- package/src/components/Organisms/Donate/__snapshots__/Donate.test.js.snap +0 -35
- package/src/components/Organisms/EmailSignUp/__snapshots__/EmailSignUp.test.js.snap +0 -8
- package/src/components/Organisms/Footer/Footer.md +12 -11
- package/src/components/Organisms/Footer/FundraisingRegulatorLogo/FundraisingRegulatorLogo.js +14 -3
- package/src/components/Organisms/Footer/Nav/Nav.style.js +8 -8
- package/src/components/Organisms/Footer/__snapshots__/Footer.test.js.snap +188 -241
- package/src/components/Organisms/FooterNew/FooterNew.js +211 -0
- package/src/components/Organisms/FooterNew/FooterNew.md +47 -0
- package/src/components/Organisms/FooterNew/FooterNew.style.js +294 -0
- package/src/components/Organisms/FooterNew/FooterNew.test.js +24 -0
- package/src/components/Organisms/FooterNew/Nav/PrimaryNav.js +54 -0
- package/src/components/Organisms/FooterNew/Nav/SecondaryNav.js +54 -0
- package/src/components/Organisms/FooterNew/__snapshots__/FooterNew.test.js.snap +1490 -0
- package/src/components/Organisms/FooterNew/dev-data/data.js +123 -0
- package/src/components/Organisms/Membership/Membership.test.js +0 -12
- package/src/components/Organisms/WYMDCarousel/__snapshots__/WYMDCarousel.test.js.snap +0 -3
- package/src/index.js +2 -0
- package/src/theme/crTheme/colors.js +13 -7
- package/src/theme/shared/animations.js +60 -0
- /package/dist/components/Atoms/SocialIcons/assets/{X-white-Subtract.svg → circled/X-white-Subtract.svg} +0 -0
- /package/dist/components/Atoms/SocialIcons/assets/{instagram.svg → circled/instagram.svg} +0 -0
- /package/src/components/Atoms/SocialIcons/assets/{X-white-Subtract.svg → circled/X-white-Subtract.svg} +0 -0
- /package/src/components/Atoms/SocialIcons/assets/{instagram.svg → circled/instagram.svg} +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
3
|
exports[`renders correctly 1`] = `
|
|
4
|
-
.
|
|
4
|
+
.c13 {
|
|
5
5
|
font-family: 'Anton',Impact,sans-serif;
|
|
6
6
|
font-weight: 400;
|
|
7
7
|
text-transform: uppercase;
|
|
@@ -13,17 +13,17 @@ exports[`renders correctly 1`] = `
|
|
|
13
13
|
line-height: 1.5rem;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.
|
|
16
|
+
.c13 {
|
|
17
17
|
font-size: 1rem;
|
|
18
18
|
line-height: normal;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
.
|
|
21
|
+
.c13 span {
|
|
22
22
|
font-size: inherit;
|
|
23
23
|
line-height: inherit;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
.
|
|
26
|
+
.c16 {
|
|
27
27
|
font-family: 'Montserrat',Helvetica,Arial,sans-serif;
|
|
28
28
|
font-weight: 400;
|
|
29
29
|
text-transform: inherit;
|
|
@@ -35,19 +35,19 @@ exports[`renders correctly 1`] = `
|
|
|
35
35
|
line-height: 1.25rem;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
.
|
|
38
|
+
.c16 {
|
|
39
39
|
font-size: 1rem;
|
|
40
40
|
line-height: normal;
|
|
41
41
|
font-weight: bold;
|
|
42
42
|
color: #FFFFFF;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
.
|
|
45
|
+
.c16 span {
|
|
46
46
|
font-size: inherit;
|
|
47
47
|
line-height: inherit;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
.
|
|
50
|
+
.c21 {
|
|
51
51
|
font-family: 'Montserrat',Helvetica,Arial,sans-serif;
|
|
52
52
|
font-weight: 400;
|
|
53
53
|
text-transform: inherit;
|
|
@@ -59,18 +59,18 @@ exports[`renders correctly 1`] = `
|
|
|
59
59
|
line-height: 1.25rem;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
.
|
|
62
|
+
.c21 {
|
|
63
63
|
font-size: 1rem;
|
|
64
64
|
line-height: normal;
|
|
65
65
|
color: #FFFFFF;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
-
.
|
|
68
|
+
.c21 span {
|
|
69
69
|
font-size: inherit;
|
|
70
70
|
line-height: inherit;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
|
-
.
|
|
73
|
+
.c26 {
|
|
74
74
|
font-family: 'Montserrat',Helvetica,Arial,sans-serif;
|
|
75
75
|
font-weight: 400;
|
|
76
76
|
text-transform: inherit;
|
|
@@ -82,18 +82,18 @@ exports[`renders correctly 1`] = `
|
|
|
82
82
|
line-height: 1.25rem;
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
-
.
|
|
85
|
+
.c26 {
|
|
86
86
|
font-size: 1rem;
|
|
87
87
|
line-height: normal;
|
|
88
88
|
color: #969598;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
.
|
|
91
|
+
.c26 span {
|
|
92
92
|
font-size: inherit;
|
|
93
93
|
line-height: inherit;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
-
.
|
|
96
|
+
.c11 {
|
|
97
97
|
object-fit: cover;
|
|
98
98
|
width: 100%;
|
|
99
99
|
display: block;
|
|
@@ -101,7 +101,7 @@ exports[`renders correctly 1`] = `
|
|
|
101
101
|
margin-right: 1rem;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
-
.
|
|
104
|
+
.c10 {
|
|
105
105
|
display: inline-block;
|
|
106
106
|
z-index: 3;
|
|
107
107
|
width: 48px;
|
|
@@ -111,21 +111,21 @@ exports[`renders correctly 1`] = `
|
|
|
111
111
|
vertical-align: bottom;
|
|
112
112
|
}
|
|
113
113
|
|
|
114
|
-
.
|
|
114
|
+
.c8 {
|
|
115
115
|
position: relative;
|
|
116
116
|
display: inline;
|
|
117
117
|
color: #000000;
|
|
118
118
|
font-weight: normal;
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
-
.
|
|
122
|
-
.
|
|
121
|
+
.c8:hover,
|
|
122
|
+
.c8:focus {
|
|
123
123
|
color: #000000;
|
|
124
124
|
-webkit-text-decoration: none;
|
|
125
125
|
text-decoration: none;
|
|
126
126
|
}
|
|
127
127
|
|
|
128
|
-
.
|
|
128
|
+
.c24 {
|
|
129
129
|
border: 0;
|
|
130
130
|
-webkit-clip: rect(0 0 0 0);
|
|
131
131
|
clip: rect(0 0 0 0);
|
|
@@ -155,7 +155,7 @@ exports[`renders correctly 1`] = `
|
|
|
155
155
|
opacity: 0.6;
|
|
156
156
|
}
|
|
157
157
|
|
|
158
|
-
.
|
|
158
|
+
.c7 {
|
|
159
159
|
width: 100%;
|
|
160
160
|
}
|
|
161
161
|
|
|
@@ -165,11 +165,11 @@ exports[`renders correctly 1`] = `
|
|
|
165
165
|
display: -ms-flexbox;
|
|
166
166
|
display: flex;
|
|
167
167
|
list-style-type: none;
|
|
168
|
-
|
|
169
|
-
-webkit-
|
|
170
|
-
-
|
|
171
|
-
-
|
|
172
|
-
|
|
168
|
+
-webkit-box-pack: space-around;
|
|
169
|
+
-webkit-justify-content: space-around;
|
|
170
|
+
-ms-flex-pack: space-around;
|
|
171
|
+
justify-content: space-around;
|
|
172
|
+
margin: 0 auto 0 0;
|
|
173
173
|
padding: 0;
|
|
174
174
|
-webkit-align-items: center;
|
|
175
175
|
-webkit-box-align: center;
|
|
@@ -178,11 +178,15 @@ exports[`renders correctly 1`] = `
|
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
.c4 {
|
|
181
|
-
width:
|
|
181
|
+
width: 48px;
|
|
182
182
|
margin-right: 1.5rem;
|
|
183
183
|
}
|
|
184
184
|
|
|
185
|
-
.
|
|
185
|
+
.c6 {
|
|
186
|
+
width: auto;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.c19 {
|
|
186
190
|
border: 0;
|
|
187
191
|
height: 46px;
|
|
188
192
|
width: 100%;
|
|
@@ -191,18 +195,18 @@ exports[`renders correctly 1`] = `
|
|
|
191
195
|
text-decoration: none;
|
|
192
196
|
}
|
|
193
197
|
|
|
194
|
-
.
|
|
195
|
-
.
|
|
198
|
+
.c19:hover,
|
|
199
|
+
.c19:focus {
|
|
196
200
|
border-bottom: none;
|
|
197
201
|
}
|
|
198
202
|
|
|
199
|
-
.
|
|
203
|
+
.c12 {
|
|
200
204
|
display: block;
|
|
201
205
|
width: 100%;
|
|
202
206
|
text-align: left;
|
|
203
207
|
}
|
|
204
208
|
|
|
205
|
-
.
|
|
209
|
+
.c12 > h2 {
|
|
206
210
|
border: 0;
|
|
207
211
|
-webkit-clip: rect(0 0 0 0);
|
|
208
212
|
clip: rect(0 0 0 0);
|
|
@@ -217,7 +221,7 @@ exports[`renders correctly 1`] = `
|
|
|
217
221
|
width: 1px;
|
|
218
222
|
}
|
|
219
223
|
|
|
220
|
-
.
|
|
224
|
+
.c17 {
|
|
221
225
|
display: -webkit-box;
|
|
222
226
|
display: -webkit-flex;
|
|
223
227
|
display: -ms-flexbox;
|
|
@@ -234,18 +238,18 @@ exports[`renders correctly 1`] = `
|
|
|
234
238
|
flex-direction: column;
|
|
235
239
|
}
|
|
236
240
|
|
|
237
|
-
.
|
|
241
|
+
.c17 > li a {
|
|
238
242
|
display: none;
|
|
239
243
|
font-size: 15px;
|
|
240
244
|
font-weight: 500;
|
|
241
245
|
cursor: pointer;
|
|
242
246
|
}
|
|
243
247
|
|
|
244
|
-
.
|
|
248
|
+
.c17 > li a:after {
|
|
245
249
|
content: none;
|
|
246
250
|
}
|
|
247
251
|
|
|
248
|
-
.
|
|
252
|
+
.c22 {
|
|
249
253
|
display: -webkit-box;
|
|
250
254
|
display: -webkit-flex;
|
|
251
255
|
display: -ms-flexbox;
|
|
@@ -262,52 +266,52 @@ exports[`renders correctly 1`] = `
|
|
|
262
266
|
flex-direction: column;
|
|
263
267
|
}
|
|
264
268
|
|
|
265
|
-
.
|
|
269
|
+
.c22 > li a {
|
|
266
270
|
display: none;
|
|
267
271
|
font-size: 15px;
|
|
268
272
|
font-weight: 500;
|
|
269
273
|
cursor: pointer;
|
|
270
274
|
}
|
|
271
275
|
|
|
272
|
-
.
|
|
276
|
+
.c22 > li a:after {
|
|
273
277
|
content: none;
|
|
274
278
|
}
|
|
275
279
|
|
|
276
|
-
.
|
|
280
|
+
.c18 {
|
|
277
281
|
height: 40px;
|
|
278
282
|
width: 100%;
|
|
279
283
|
background-color: inherit;
|
|
280
284
|
padding: 8px 0;
|
|
281
285
|
}
|
|
282
286
|
|
|
283
|
-
.
|
|
287
|
+
.c23 {
|
|
284
288
|
height: 40px;
|
|
285
289
|
width: 100%;
|
|
286
290
|
background-color: inherit;
|
|
287
291
|
padding: 8px 0;
|
|
288
292
|
}
|
|
289
293
|
|
|
290
|
-
.
|
|
294
|
+
.c20 {
|
|
291
295
|
padding: 14px 21px;
|
|
292
296
|
height: auto;
|
|
293
297
|
position: relative;
|
|
294
298
|
}
|
|
295
299
|
|
|
296
|
-
.
|
|
300
|
+
.c14 {
|
|
297
301
|
background-color: inherit;
|
|
298
302
|
list-style: none outside;
|
|
299
303
|
padding: 0 0 4rem;
|
|
300
304
|
border-bottom: 1px solid #FFFFFF;
|
|
301
305
|
}
|
|
302
306
|
|
|
303
|
-
.
|
|
307
|
+
.c15 {
|
|
304
308
|
position: relative;
|
|
305
309
|
font-weight: 700;
|
|
306
310
|
margin: 0;
|
|
307
311
|
margin-bottom: 1rem;
|
|
308
312
|
}
|
|
309
313
|
|
|
310
|
-
.
|
|
314
|
+
.c15 a {
|
|
311
315
|
width: auto;
|
|
312
316
|
padding: 0;
|
|
313
317
|
height: auto;
|
|
@@ -318,7 +322,7 @@ exports[`renders correctly 1`] = `
|
|
|
318
322
|
font-weight: 700;
|
|
319
323
|
}
|
|
320
324
|
|
|
321
|
-
.
|
|
325
|
+
.c15 a:after {
|
|
322
326
|
content: '\\2303';
|
|
323
327
|
position: absolute;
|
|
324
328
|
font-family: Arial;
|
|
@@ -372,7 +376,7 @@ exports[`renders correctly 1`] = `
|
|
|
372
376
|
align-items: center;
|
|
373
377
|
}
|
|
374
378
|
|
|
375
|
-
.
|
|
379
|
+
.c25 {
|
|
376
380
|
display: block;
|
|
377
381
|
width: 100%;
|
|
378
382
|
height: 100%;
|
|
@@ -380,79 +384,79 @@ exports[`renders correctly 1`] = `
|
|
|
380
384
|
margin-top: 0;
|
|
381
385
|
}
|
|
382
386
|
|
|
383
|
-
.
|
|
387
|
+
.c25 p {
|
|
384
388
|
font-size: 15px;
|
|
385
389
|
line-height: 24px;
|
|
386
390
|
margin-bottom: 5px;
|
|
387
391
|
}
|
|
388
392
|
|
|
389
|
-
.
|
|
393
|
+
.c9 {
|
|
390
394
|
color: transparent;
|
|
391
395
|
border: 0;
|
|
392
396
|
}
|
|
393
397
|
|
|
394
|
-
.
|
|
398
|
+
.c9:hover {
|
|
395
399
|
border: 0;
|
|
396
400
|
}
|
|
397
401
|
|
|
398
402
|
@media (min-width:740px) {
|
|
399
|
-
.
|
|
403
|
+
.c13 {
|
|
400
404
|
font-size: 1.875rem;
|
|
401
405
|
line-height: 1.875rem;
|
|
402
406
|
}
|
|
403
407
|
}
|
|
404
408
|
|
|
405
409
|
@media (min-width:1024px) {
|
|
406
|
-
.
|
|
410
|
+
.c13 {
|
|
407
411
|
font-size: 2rem;
|
|
408
412
|
line-height: 2rem;
|
|
409
413
|
}
|
|
410
414
|
}
|
|
411
415
|
|
|
412
416
|
@media (min-width:740px) {
|
|
413
|
-
.
|
|
417
|
+
.c16 {
|
|
414
418
|
font-size: 1rem;
|
|
415
419
|
line-height: 1.25rem;
|
|
416
420
|
}
|
|
417
421
|
}
|
|
418
422
|
|
|
419
423
|
@media (min-width:1024px) {
|
|
420
|
-
.
|
|
424
|
+
.c16 {
|
|
421
425
|
font-size: 1.125rem;
|
|
422
426
|
line-height: 1.375rem;
|
|
423
427
|
}
|
|
424
428
|
}
|
|
425
429
|
|
|
426
430
|
@media (min-width:740px) {
|
|
427
|
-
.
|
|
431
|
+
.c21 {
|
|
428
432
|
font-size: 1rem;
|
|
429
433
|
line-height: 1.25rem;
|
|
430
434
|
}
|
|
431
435
|
}
|
|
432
436
|
|
|
433
437
|
@media (min-width:1024px) {
|
|
434
|
-
.
|
|
438
|
+
.c21 {
|
|
435
439
|
font-size: 1.125rem;
|
|
436
440
|
line-height: 1.375rem;
|
|
437
441
|
}
|
|
438
442
|
}
|
|
439
443
|
|
|
440
444
|
@media (min-width:740px) {
|
|
441
|
-
.
|
|
445
|
+
.c26 {
|
|
442
446
|
font-size: 1rem;
|
|
443
447
|
line-height: 1.25rem;
|
|
444
448
|
}
|
|
445
449
|
}
|
|
446
450
|
|
|
447
451
|
@media (min-width:1024px) {
|
|
448
|
-
.
|
|
452
|
+
.c26 {
|
|
449
453
|
font-size: 1.125rem;
|
|
450
454
|
line-height: 1.375rem;
|
|
451
455
|
}
|
|
452
456
|
}
|
|
453
457
|
|
|
454
458
|
@media (min-width:1150px) {
|
|
455
|
-
.
|
|
459
|
+
.c10 {
|
|
456
460
|
width: 72px;
|
|
457
461
|
}
|
|
458
462
|
}
|
|
@@ -463,29 +467,30 @@ exports[`renders correctly 1`] = `
|
|
|
463
467
|
-webkit-justify-content: start;
|
|
464
468
|
-ms-flex-pack: start;
|
|
465
469
|
justify-content: start;
|
|
470
|
+
margin: 0 auto 0 0;
|
|
466
471
|
}
|
|
467
472
|
}
|
|
468
473
|
|
|
469
474
|
@media (min-width:740px) {
|
|
470
475
|
.c4 {
|
|
471
|
-
|
|
476
|
+
margin-right: 1.5rem;
|
|
472
477
|
}
|
|
473
478
|
}
|
|
474
479
|
|
|
475
480
|
@media (min-width:740px) {
|
|
476
|
-
.
|
|
481
|
+
.c17 {
|
|
477
482
|
max-height: none;
|
|
478
483
|
height: auto;
|
|
479
484
|
}
|
|
480
485
|
|
|
481
|
-
.
|
|
486
|
+
.c17 > li a {
|
|
482
487
|
display: inline;
|
|
483
488
|
line-height: 24px;
|
|
484
489
|
}
|
|
485
490
|
}
|
|
486
491
|
|
|
487
492
|
@media (min-width:740px) {
|
|
488
|
-
.
|
|
493
|
+
.c22 {
|
|
489
494
|
max-height: none;
|
|
490
495
|
height: auto;
|
|
491
496
|
-webkit-flex-direction: row;
|
|
@@ -496,35 +501,35 @@ exports[`renders correctly 1`] = `
|
|
|
496
501
|
flex-wrap: wrap;
|
|
497
502
|
}
|
|
498
503
|
|
|
499
|
-
.
|
|
504
|
+
.c22 > li a {
|
|
500
505
|
display: inline;
|
|
501
506
|
line-height: 24px;
|
|
502
507
|
}
|
|
503
508
|
}
|
|
504
509
|
|
|
505
510
|
@media (min-width:740px) {
|
|
506
|
-
.
|
|
511
|
+
.c18 {
|
|
507
512
|
height: auto;
|
|
508
513
|
margin-top: 12px;
|
|
509
514
|
padding: 0;
|
|
510
515
|
}
|
|
511
516
|
|
|
512
|
-
.
|
|
517
|
+
.c18 a {
|
|
513
518
|
background-color: inherit;
|
|
514
519
|
height: auto;
|
|
515
520
|
}
|
|
516
521
|
|
|
517
|
-
.
|
|
522
|
+
.c18 a:after {
|
|
518
523
|
content: none !important;
|
|
519
524
|
}
|
|
520
525
|
|
|
521
|
-
.
|
|
522
|
-
.
|
|
526
|
+
.c18 a:hover,
|
|
527
|
+
.c18 a:focus {
|
|
523
528
|
border-bottom: 2px solid #fff;
|
|
524
529
|
}
|
|
525
530
|
|
|
526
|
-
.
|
|
527
|
-
.
|
|
531
|
+
.c18 a:hover span,
|
|
532
|
+
.c18 a:focus span {
|
|
528
533
|
border-bottom: 0;
|
|
529
534
|
padding-bottom: 2px;
|
|
530
535
|
}
|
|
@@ -535,7 +540,7 @@ exports[`renders correctly 1`] = `
|
|
|
535
540
|
}
|
|
536
541
|
|
|
537
542
|
@media (min-width:740px) {
|
|
538
|
-
.
|
|
543
|
+
.c23 {
|
|
539
544
|
height: auto;
|
|
540
545
|
margin-top: 12px;
|
|
541
546
|
padding: 0;
|
|
@@ -544,29 +549,29 @@ exports[`renders correctly 1`] = `
|
|
|
544
549
|
flex: 0 0 100%;
|
|
545
550
|
}
|
|
546
551
|
|
|
547
|
-
.
|
|
552
|
+
.c23 a {
|
|
548
553
|
background-color: inherit;
|
|
549
554
|
height: auto;
|
|
550
555
|
}
|
|
551
556
|
|
|
552
|
-
.
|
|
557
|
+
.c23 a:after {
|
|
553
558
|
content: none !important;
|
|
554
559
|
}
|
|
555
560
|
|
|
556
|
-
.
|
|
557
|
-
.
|
|
561
|
+
.c23 a:hover,
|
|
562
|
+
.c23 a:focus {
|
|
558
563
|
border-bottom: 2px solid #fff;
|
|
559
564
|
}
|
|
560
565
|
|
|
561
|
-
.
|
|
562
|
-
.
|
|
566
|
+
.c23 a:hover span,
|
|
567
|
+
.c23 a:focus span {
|
|
563
568
|
border-bottom: 0;
|
|
564
569
|
padding-bottom: 2px;
|
|
565
570
|
}
|
|
566
571
|
}
|
|
567
572
|
|
|
568
573
|
@media (min-width:1024px) {
|
|
569
|
-
.
|
|
574
|
+
.c23 {
|
|
570
575
|
-webkit-flex: 0 0 100%;
|
|
571
576
|
-ms-flex: 0 0 100%;
|
|
572
577
|
flex: 0 0 100%;
|
|
@@ -574,7 +579,7 @@ exports[`renders correctly 1`] = `
|
|
|
574
579
|
}
|
|
575
580
|
|
|
576
581
|
@media (min-width:740px) {
|
|
577
|
-
.
|
|
582
|
+
.c14 {
|
|
578
583
|
display: -webkit-box;
|
|
579
584
|
display: -webkit-flex;
|
|
580
585
|
display: -ms-flexbox;
|
|
@@ -590,7 +595,7 @@ exports[`renders correctly 1`] = `
|
|
|
590
595
|
}
|
|
591
596
|
|
|
592
597
|
@media (min-width:740px) {
|
|
593
|
-
.
|
|
598
|
+
.c15 {
|
|
594
599
|
-webkit-flex: 0 0 30%;
|
|
595
600
|
-ms-flex: 0 0 30%;
|
|
596
601
|
flex: 0 0 30%;
|
|
@@ -599,7 +604,7 @@ exports[`renders correctly 1`] = `
|
|
|
599
604
|
}
|
|
600
605
|
|
|
601
606
|
@media (min-width:1024px) {
|
|
602
|
-
.
|
|
607
|
+
.c15 {
|
|
603
608
|
-webkit-flex: 0 0 calc(25% - 1rem);
|
|
604
609
|
-ms-flex: 0 0 calc(25% - 1rem);
|
|
605
610
|
flex: 0 0 calc(25% - 1rem);
|
|
@@ -607,25 +612,25 @@ exports[`renders correctly 1`] = `
|
|
|
607
612
|
margin-bottom: 1rem;
|
|
608
613
|
}
|
|
609
614
|
|
|
610
|
-
.
|
|
615
|
+
.c15 > span {
|
|
611
616
|
padding: 0;
|
|
612
617
|
}
|
|
613
618
|
}
|
|
614
619
|
|
|
615
620
|
@media (min-width:740px) {
|
|
616
|
-
.
|
|
621
|
+
.c15 a {
|
|
617
622
|
font-size: 20px;
|
|
618
623
|
line-height: 40px;
|
|
619
624
|
}
|
|
620
625
|
}
|
|
621
626
|
|
|
622
627
|
@media (min-width:740px) {
|
|
623
|
-
.
|
|
628
|
+
.c15 a {
|
|
624
629
|
cursor: default;
|
|
625
630
|
display: inline;
|
|
626
631
|
}
|
|
627
632
|
|
|
628
|
-
.
|
|
633
|
+
.c15 a:after {
|
|
629
634
|
content: none;
|
|
630
635
|
}
|
|
631
636
|
}
|
|
@@ -643,7 +648,7 @@ exports[`renders correctly 1`] = `
|
|
|
643
648
|
}
|
|
644
649
|
|
|
645
650
|
@media (min-width:1024px) {
|
|
646
|
-
.
|
|
651
|
+
.c25 p {
|
|
647
652
|
font-size: 16px;
|
|
648
653
|
line-height: 27px;
|
|
649
654
|
}
|
|
@@ -671,7 +676,7 @@ exports[`renders correctly 1`] = `
|
|
|
671
676
|
className="c4"
|
|
672
677
|
>
|
|
673
678
|
<a
|
|
674
|
-
className="c5"
|
|
679
|
+
className="c5 c6"
|
|
675
680
|
data-test="icon-facebook"
|
|
676
681
|
href="https://www.facebook.com/comicrelief"
|
|
677
682
|
rel="noopener noreferrer"
|
|
@@ -680,7 +685,7 @@ exports[`renders correctly 1`] = `
|
|
|
680
685
|
>
|
|
681
686
|
<img
|
|
682
687
|
alt="facebook"
|
|
683
|
-
className="
|
|
688
|
+
className="c7"
|
|
684
689
|
src="mock.asset"
|
|
685
690
|
/>
|
|
686
691
|
</a>
|
|
@@ -689,7 +694,7 @@ exports[`renders correctly 1`] = `
|
|
|
689
694
|
className="c4"
|
|
690
695
|
>
|
|
691
696
|
<a
|
|
692
|
-
className="c5"
|
|
697
|
+
className="c5 c6"
|
|
693
698
|
data-test="icon-instagram"
|
|
694
699
|
href="https://www.instagram.com/comicrelief"
|
|
695
700
|
rel="noopener noreferrer"
|
|
@@ -698,7 +703,7 @@ exports[`renders correctly 1`] = `
|
|
|
698
703
|
>
|
|
699
704
|
<img
|
|
700
705
|
alt="instagram"
|
|
701
|
-
className="
|
|
706
|
+
className="c7"
|
|
702
707
|
src="mock.asset"
|
|
703
708
|
/>
|
|
704
709
|
</a>
|
|
@@ -707,7 +712,7 @@ exports[`renders correctly 1`] = `
|
|
|
707
712
|
className="c4"
|
|
708
713
|
>
|
|
709
714
|
<a
|
|
710
|
-
className="c5"
|
|
715
|
+
className="c5 c6"
|
|
711
716
|
data-test="icon-twitter"
|
|
712
717
|
href="https://twitter.com/comicrelief"
|
|
713
718
|
rel="noopener noreferrer"
|
|
@@ -716,7 +721,7 @@ exports[`renders correctly 1`] = `
|
|
|
716
721
|
>
|
|
717
722
|
<img
|
|
718
723
|
alt="twitter"
|
|
719
|
-
className="
|
|
724
|
+
className="c7"
|
|
720
725
|
src="mock.asset"
|
|
721
726
|
/>
|
|
722
727
|
</a>
|
|
@@ -725,7 +730,7 @@ exports[`renders correctly 1`] = `
|
|
|
725
730
|
className="c4"
|
|
726
731
|
>
|
|
727
732
|
<a
|
|
728
|
-
className="c5"
|
|
733
|
+
className="c5 c6"
|
|
729
734
|
data-test="icon-youtube"
|
|
730
735
|
href="https://www.youtube.com/channel/UCdF5u0ggeSETozc8fsprjcw"
|
|
731
736
|
rel="noopener noreferrer"
|
|
@@ -734,7 +739,7 @@ exports[`renders correctly 1`] = `
|
|
|
734
739
|
>
|
|
735
740
|
<img
|
|
736
741
|
alt="youtube"
|
|
737
|
-
className="
|
|
742
|
+
className="c7"
|
|
738
743
|
src="mock.asset"
|
|
739
744
|
/>
|
|
740
745
|
</a>
|
|
@@ -742,7 +747,7 @@ exports[`renders correctly 1`] = `
|
|
|
742
747
|
</ul>
|
|
743
748
|
</div>
|
|
744
749
|
<a
|
|
745
|
-
className="
|
|
750
|
+
className="c8 c9"
|
|
746
751
|
color="red"
|
|
747
752
|
href="/"
|
|
748
753
|
target="_self"
|
|
@@ -750,12 +755,12 @@ exports[`renders correctly 1`] = `
|
|
|
750
755
|
type="standard"
|
|
751
756
|
>
|
|
752
757
|
<div
|
|
753
|
-
className="
|
|
758
|
+
className="c10"
|
|
754
759
|
rotate={0}
|
|
755
760
|
>
|
|
756
761
|
<img
|
|
757
762
|
alt="Comic Relief logo"
|
|
758
|
-
className="
|
|
763
|
+
className="c11"
|
|
759
764
|
src="mock.asset"
|
|
760
765
|
/>
|
|
761
766
|
</div>
|
|
@@ -763,42 +768,38 @@ exports[`renders correctly 1`] = `
|
|
|
763
768
|
</div>
|
|
764
769
|
<nav
|
|
765
770
|
aria-label="main-menu"
|
|
766
|
-
className="
|
|
771
|
+
className="c12"
|
|
767
772
|
role="navigation"
|
|
768
773
|
>
|
|
769
774
|
<h2
|
|
770
|
-
className="
|
|
771
|
-
color="inherit"
|
|
775
|
+
className="c13"
|
|
772
776
|
id="footer-menu"
|
|
773
|
-
size="s"
|
|
774
777
|
>
|
|
775
778
|
Footer navigation
|
|
776
779
|
</h2>
|
|
777
780
|
<ul
|
|
778
|
-
className="
|
|
781
|
+
className="c14"
|
|
779
782
|
role="menubar"
|
|
780
783
|
>
|
|
781
784
|
<li
|
|
782
|
-
className="
|
|
785
|
+
className="c15"
|
|
783
786
|
role="none"
|
|
784
787
|
>
|
|
785
788
|
<span
|
|
786
|
-
className="
|
|
787
|
-
color="white"
|
|
788
|
-
size="s"
|
|
789
|
+
className="c16"
|
|
789
790
|
>
|
|
790
791
|
Hear from us
|
|
791
792
|
</span>
|
|
792
793
|
<ul
|
|
793
794
|
aria-label="Hear from us"
|
|
794
|
-
className="
|
|
795
|
+
className="c17"
|
|
795
796
|
role="list"
|
|
796
797
|
>
|
|
797
798
|
<li
|
|
798
|
-
className="
|
|
799
|
+
className="c18"
|
|
799
800
|
>
|
|
800
801
|
<a
|
|
801
|
-
className="
|
|
802
|
+
className="c8 c19 c20"
|
|
802
803
|
color="red"
|
|
803
804
|
href="https://www.comicrelief.com/#"
|
|
804
805
|
role="menuitem"
|
|
@@ -806,19 +807,17 @@ exports[`renders correctly 1`] = `
|
|
|
806
807
|
type="standard"
|
|
807
808
|
>
|
|
808
809
|
<span
|
|
809
|
-
className="
|
|
810
|
-
color="white"
|
|
811
|
-
size="s"
|
|
810
|
+
className="c21"
|
|
812
811
|
>
|
|
813
812
|
Get the newsletter
|
|
814
813
|
</span>
|
|
815
814
|
</a>
|
|
816
815
|
</li>
|
|
817
816
|
<li
|
|
818
|
-
className="
|
|
817
|
+
className="c18"
|
|
819
818
|
>
|
|
820
819
|
<a
|
|
821
|
-
className="
|
|
820
|
+
className="c8 c19 c20"
|
|
822
821
|
color="red"
|
|
823
822
|
href="https://www.comicrelief.com/update-your-preferences"
|
|
824
823
|
role="menuitem"
|
|
@@ -826,9 +825,7 @@ exports[`renders correctly 1`] = `
|
|
|
826
825
|
type="standard"
|
|
827
826
|
>
|
|
828
827
|
<span
|
|
829
|
-
className="
|
|
830
|
-
color="white"
|
|
831
|
-
size="s"
|
|
828
|
+
className="c21"
|
|
832
829
|
>
|
|
833
830
|
How we contact you
|
|
834
831
|
</span>
|
|
@@ -837,26 +834,24 @@ exports[`renders correctly 1`] = `
|
|
|
837
834
|
</ul>
|
|
838
835
|
</li>
|
|
839
836
|
<li
|
|
840
|
-
className="
|
|
837
|
+
className="c15"
|
|
841
838
|
role="none"
|
|
842
839
|
>
|
|
843
840
|
<span
|
|
844
|
-
className="
|
|
845
|
-
color="white"
|
|
846
|
-
size="s"
|
|
841
|
+
className="c16"
|
|
847
842
|
>
|
|
848
843
|
Get in touch
|
|
849
844
|
</span>
|
|
850
845
|
<ul
|
|
851
846
|
aria-label="Get in touch"
|
|
852
|
-
className="
|
|
847
|
+
className="c22"
|
|
853
848
|
role="list"
|
|
854
849
|
>
|
|
855
850
|
<li
|
|
856
|
-
className="
|
|
851
|
+
className="c23"
|
|
857
852
|
>
|
|
858
853
|
<a
|
|
859
|
-
className="
|
|
854
|
+
className="c8 c19 c20"
|
|
860
855
|
color="red"
|
|
861
856
|
href="/contact-us"
|
|
862
857
|
role="menuitem"
|
|
@@ -864,19 +859,17 @@ exports[`renders correctly 1`] = `
|
|
|
864
859
|
type="standard"
|
|
865
860
|
>
|
|
866
861
|
<span
|
|
867
|
-
className="
|
|
868
|
-
color="white"
|
|
869
|
-
size="s"
|
|
862
|
+
className="c21"
|
|
870
863
|
>
|
|
871
864
|
Contact us
|
|
872
865
|
</span>
|
|
873
866
|
</a>
|
|
874
867
|
</li>
|
|
875
868
|
<li
|
|
876
|
-
className="
|
|
869
|
+
className="c23"
|
|
877
870
|
>
|
|
878
871
|
<a
|
|
879
|
-
className="
|
|
872
|
+
className="c8 c19 c20"
|
|
880
873
|
color="red"
|
|
881
874
|
href="https://giftaid.comicrelief.com/update"
|
|
882
875
|
role="menuitem"
|
|
@@ -884,19 +877,17 @@ exports[`renders correctly 1`] = `
|
|
|
884
877
|
type="standard"
|
|
885
878
|
>
|
|
886
879
|
<span
|
|
887
|
-
className="
|
|
888
|
-
color="white"
|
|
889
|
-
size="s"
|
|
880
|
+
className="c21"
|
|
890
881
|
>
|
|
891
882
|
Your Gift Aid
|
|
892
883
|
</span>
|
|
893
884
|
</a>
|
|
894
885
|
</li>
|
|
895
886
|
<li
|
|
896
|
-
className="
|
|
887
|
+
className="c23"
|
|
897
888
|
>
|
|
898
889
|
<a
|
|
899
|
-
className="
|
|
890
|
+
className="c8 c19 c20"
|
|
900
891
|
color="red"
|
|
901
892
|
href="https://www.comicrelief.com/frequently-asked-questions"
|
|
902
893
|
role="menuitem"
|
|
@@ -904,19 +895,17 @@ exports[`renders correctly 1`] = `
|
|
|
904
895
|
type="standard"
|
|
905
896
|
>
|
|
906
897
|
<span
|
|
907
|
-
className="
|
|
908
|
-
color="white"
|
|
909
|
-
size="s"
|
|
898
|
+
className="c21"
|
|
910
899
|
>
|
|
911
900
|
FAQs
|
|
912
901
|
</span>
|
|
913
902
|
</a>
|
|
914
903
|
</li>
|
|
915
904
|
<li
|
|
916
|
-
className="
|
|
905
|
+
className="c23"
|
|
917
906
|
>
|
|
918
907
|
<a
|
|
919
|
-
className="
|
|
908
|
+
className="c8 c19 c20"
|
|
920
909
|
color="red"
|
|
921
910
|
href="https://www.comicrelief.com/red-nose-days-frequently-asked-questions"
|
|
922
911
|
role="menuitem"
|
|
@@ -924,9 +913,7 @@ exports[`renders correctly 1`] = `
|
|
|
924
913
|
type="standard"
|
|
925
914
|
>
|
|
926
915
|
<span
|
|
927
|
-
className="
|
|
928
|
-
color="white"
|
|
929
|
-
size="s"
|
|
916
|
+
className="c21"
|
|
930
917
|
>
|
|
931
918
|
Red Nose Day 2019 FAQs
|
|
932
919
|
</span>
|
|
@@ -935,26 +922,24 @@ exports[`renders correctly 1`] = `
|
|
|
935
922
|
</ul>
|
|
936
923
|
</li>
|
|
937
924
|
<li
|
|
938
|
-
className="
|
|
925
|
+
className="c15"
|
|
939
926
|
role="none"
|
|
940
927
|
>
|
|
941
928
|
<span
|
|
942
|
-
className="
|
|
943
|
-
color="white"
|
|
944
|
-
size="s"
|
|
929
|
+
className="c16"
|
|
945
930
|
>
|
|
946
931
|
About us
|
|
947
932
|
</span>
|
|
948
933
|
<ul
|
|
949
934
|
aria-label="About us"
|
|
950
|
-
className="
|
|
935
|
+
className="c22"
|
|
951
936
|
role="list"
|
|
952
937
|
>
|
|
953
938
|
<li
|
|
954
|
-
className="
|
|
939
|
+
className="c23"
|
|
955
940
|
>
|
|
956
941
|
<a
|
|
957
|
-
className="
|
|
942
|
+
className="c8 c19 c20"
|
|
958
943
|
color="red"
|
|
959
944
|
href="https://www.comicrelief.com/about-comic-relief"
|
|
960
945
|
role="menuitem"
|
|
@@ -962,19 +947,17 @@ exports[`renders correctly 1`] = `
|
|
|
962
947
|
type="standard"
|
|
963
948
|
>
|
|
964
949
|
<span
|
|
965
|
-
className="
|
|
966
|
-
color="white"
|
|
967
|
-
size="s"
|
|
950
|
+
className="c21"
|
|
968
951
|
>
|
|
969
952
|
Mission
|
|
970
953
|
</span>
|
|
971
954
|
</a>
|
|
972
955
|
</li>
|
|
973
956
|
<li
|
|
974
|
-
className="
|
|
957
|
+
className="c23"
|
|
975
958
|
>
|
|
976
959
|
<a
|
|
977
|
-
className="
|
|
960
|
+
className="c8 c19 c20"
|
|
978
961
|
color="red"
|
|
979
962
|
href="https://www.comicrelief.com/about-comic-relief/history"
|
|
980
963
|
role="menuitem"
|
|
@@ -982,19 +965,17 @@ exports[`renders correctly 1`] = `
|
|
|
982
965
|
type="standard"
|
|
983
966
|
>
|
|
984
967
|
<span
|
|
985
|
-
className="
|
|
986
|
-
color="white"
|
|
987
|
-
size="s"
|
|
968
|
+
className="c21"
|
|
988
969
|
>
|
|
989
970
|
Our history
|
|
990
971
|
</span>
|
|
991
972
|
</a>
|
|
992
973
|
</li>
|
|
993
974
|
<li
|
|
994
|
-
className="
|
|
975
|
+
className="c23"
|
|
995
976
|
>
|
|
996
977
|
<a
|
|
997
|
-
className="
|
|
978
|
+
className="c8 c19 c20"
|
|
998
979
|
color="red"
|
|
999
980
|
href="https://www.comicrelief.com/about-comic-relief/finances"
|
|
1000
981
|
role="menuitem"
|
|
@@ -1002,19 +983,17 @@ exports[`renders correctly 1`] = `
|
|
|
1002
983
|
type="standard"
|
|
1003
984
|
>
|
|
1004
985
|
<span
|
|
1005
|
-
className="
|
|
1006
|
-
color="white"
|
|
1007
|
-
size="s"
|
|
986
|
+
className="c21"
|
|
1008
987
|
>
|
|
1009
988
|
Finances
|
|
1010
989
|
</span>
|
|
1011
990
|
</a>
|
|
1012
991
|
</li>
|
|
1013
992
|
<li
|
|
1014
|
-
className="
|
|
993
|
+
className="c23"
|
|
1015
994
|
>
|
|
1016
995
|
<a
|
|
1017
|
-
className="
|
|
996
|
+
className="c8 c19 c20"
|
|
1018
997
|
color="red"
|
|
1019
998
|
href="https://www.comicrelief.com/working-with-us"
|
|
1020
999
|
role="menuitem"
|
|
@@ -1022,19 +1001,17 @@ exports[`renders correctly 1`] = `
|
|
|
1022
1001
|
type="standard"
|
|
1023
1002
|
>
|
|
1024
1003
|
<span
|
|
1025
|
-
className="
|
|
1026
|
-
color="white"
|
|
1027
|
-
size="s"
|
|
1004
|
+
className="c21"
|
|
1028
1005
|
>
|
|
1029
1006
|
Partners
|
|
1030
1007
|
</span>
|
|
1031
1008
|
</a>
|
|
1032
1009
|
</li>
|
|
1033
1010
|
<li
|
|
1034
|
-
className="
|
|
1011
|
+
className="c23"
|
|
1035
1012
|
>
|
|
1036
1013
|
<a
|
|
1037
|
-
className="
|
|
1014
|
+
className="c8 c19 c20"
|
|
1038
1015
|
color="red"
|
|
1039
1016
|
href="https://www.comicrelief.com/about-comic-relief/meet-the-team"
|
|
1040
1017
|
role="menuitem"
|
|
@@ -1042,19 +1019,17 @@ exports[`renders correctly 1`] = `
|
|
|
1042
1019
|
type="standard"
|
|
1043
1020
|
>
|
|
1044
1021
|
<span
|
|
1045
|
-
className="
|
|
1046
|
-
color="white"
|
|
1047
|
-
size="s"
|
|
1022
|
+
className="c21"
|
|
1048
1023
|
>
|
|
1049
1024
|
Meet the team
|
|
1050
1025
|
</span>
|
|
1051
1026
|
</a>
|
|
1052
1027
|
</li>
|
|
1053
1028
|
<li
|
|
1054
|
-
className="
|
|
1029
|
+
className="c23"
|
|
1055
1030
|
>
|
|
1056
1031
|
<a
|
|
1057
|
-
className="
|
|
1032
|
+
className="c8 c19 c20"
|
|
1058
1033
|
color="red"
|
|
1059
1034
|
href="https://www.sportrelief.com/"
|
|
1060
1035
|
role="menuitem"
|
|
@@ -1062,9 +1037,7 @@ exports[`renders correctly 1`] = `
|
|
|
1062
1037
|
type="standard"
|
|
1063
1038
|
>
|
|
1064
1039
|
<span
|
|
1065
|
-
className="
|
|
1066
|
-
color="white"
|
|
1067
|
-
size="s"
|
|
1040
|
+
className="c21"
|
|
1068
1041
|
>
|
|
1069
1042
|
Sport Relief
|
|
1070
1043
|
</span>
|
|
@@ -1073,26 +1046,24 @@ exports[`renders correctly 1`] = `
|
|
|
1073
1046
|
</ul>
|
|
1074
1047
|
</li>
|
|
1075
1048
|
<li
|
|
1076
|
-
className="
|
|
1049
|
+
className="c15"
|
|
1077
1050
|
role="none"
|
|
1078
1051
|
>
|
|
1079
1052
|
<span
|
|
1080
|
-
className="
|
|
1081
|
-
color="white"
|
|
1082
|
-
size="s"
|
|
1053
|
+
className="c16"
|
|
1083
1054
|
>
|
|
1084
1055
|
Careers
|
|
1085
1056
|
</span>
|
|
1086
1057
|
<ul
|
|
1087
1058
|
aria-label="Careers"
|
|
1088
|
-
className="
|
|
1059
|
+
className="c17"
|
|
1089
1060
|
role="list"
|
|
1090
1061
|
>
|
|
1091
1062
|
<li
|
|
1092
|
-
className="
|
|
1063
|
+
className="c18"
|
|
1093
1064
|
>
|
|
1094
1065
|
<a
|
|
1095
|
-
className="
|
|
1066
|
+
className="c8 c19 c20"
|
|
1096
1067
|
color="red"
|
|
1097
1068
|
href="https://www.comicrelief.com/careers"
|
|
1098
1069
|
role="menuitem"
|
|
@@ -1100,19 +1071,17 @@ exports[`renders correctly 1`] = `
|
|
|
1100
1071
|
type="standard"
|
|
1101
1072
|
>
|
|
1102
1073
|
<span
|
|
1103
|
-
className="
|
|
1104
|
-
color="white"
|
|
1105
|
-
size="s"
|
|
1074
|
+
className="c21"
|
|
1106
1075
|
>
|
|
1107
1076
|
Working at Comic Relief
|
|
1108
1077
|
</span>
|
|
1109
1078
|
</a>
|
|
1110
1079
|
</li>
|
|
1111
1080
|
<li
|
|
1112
|
-
className="
|
|
1081
|
+
className="c18"
|
|
1113
1082
|
>
|
|
1114
1083
|
<a
|
|
1115
|
-
className="
|
|
1084
|
+
className="c8 c19 c20"
|
|
1116
1085
|
color="red"
|
|
1117
1086
|
href="https://app.beapplied.com/org/comic-relief"
|
|
1118
1087
|
role="menuitem"
|
|
@@ -1120,9 +1089,7 @@ exports[`renders correctly 1`] = `
|
|
|
1120
1089
|
type="standard"
|
|
1121
1090
|
>
|
|
1122
1091
|
<span
|
|
1123
|
-
className="
|
|
1124
|
-
color="white"
|
|
1125
|
-
size="s"
|
|
1092
|
+
className="c21"
|
|
1126
1093
|
>
|
|
1127
1094
|
Open roles
|
|
1128
1095
|
</span>
|
|
@@ -1131,26 +1098,24 @@ exports[`renders correctly 1`] = `
|
|
|
1131
1098
|
</ul>
|
|
1132
1099
|
</li>
|
|
1133
1100
|
<li
|
|
1134
|
-
className="
|
|
1101
|
+
className="c15"
|
|
1135
1102
|
role="none"
|
|
1136
1103
|
>
|
|
1137
1104
|
<span
|
|
1138
|
-
className="
|
|
1139
|
-
color="white"
|
|
1140
|
-
size="s"
|
|
1105
|
+
className="c16"
|
|
1141
1106
|
>
|
|
1142
1107
|
News
|
|
1143
1108
|
</span>
|
|
1144
1109
|
<ul
|
|
1145
1110
|
aria-label="News"
|
|
1146
|
-
className="
|
|
1111
|
+
className="c17"
|
|
1147
1112
|
role="list"
|
|
1148
1113
|
>
|
|
1149
1114
|
<li
|
|
1150
|
-
className="
|
|
1115
|
+
className="c18"
|
|
1151
1116
|
>
|
|
1152
1117
|
<a
|
|
1153
|
-
className="
|
|
1118
|
+
className="c8 c19 c20"
|
|
1154
1119
|
color="red"
|
|
1155
1120
|
href="https://www.comicrelief.com/news"
|
|
1156
1121
|
role="menuitem"
|
|
@@ -1158,19 +1123,17 @@ exports[`renders correctly 1`] = `
|
|
|
1158
1123
|
type="standard"
|
|
1159
1124
|
>
|
|
1160
1125
|
<span
|
|
1161
|
-
className="
|
|
1162
|
-
color="white"
|
|
1163
|
-
size="s"
|
|
1126
|
+
className="c21"
|
|
1164
1127
|
>
|
|
1165
1128
|
News
|
|
1166
1129
|
</span>
|
|
1167
1130
|
</a>
|
|
1168
1131
|
</li>
|
|
1169
1132
|
<li
|
|
1170
|
-
className="
|
|
1133
|
+
className="c18"
|
|
1171
1134
|
>
|
|
1172
1135
|
<a
|
|
1173
|
-
className="
|
|
1136
|
+
className="c8 c19 c20"
|
|
1174
1137
|
color="red"
|
|
1175
1138
|
href="https://www.comicrelief.com/press-releases"
|
|
1176
1139
|
role="menuitem"
|
|
@@ -1178,9 +1141,7 @@ exports[`renders correctly 1`] = `
|
|
|
1178
1141
|
type="standard"
|
|
1179
1142
|
>
|
|
1180
1143
|
<span
|
|
1181
|
-
className="
|
|
1182
|
-
color="white"
|
|
1183
|
-
size="s"
|
|
1144
|
+
className="c21"
|
|
1184
1145
|
>
|
|
1185
1146
|
Press area
|
|
1186
1147
|
</span>
|
|
@@ -1189,26 +1150,24 @@ exports[`renders correctly 1`] = `
|
|
|
1189
1150
|
</ul>
|
|
1190
1151
|
</li>
|
|
1191
1152
|
<li
|
|
1192
|
-
className="
|
|
1153
|
+
className="c15"
|
|
1193
1154
|
role="none"
|
|
1194
1155
|
>
|
|
1195
1156
|
<span
|
|
1196
|
-
className="
|
|
1197
|
-
color="white"
|
|
1198
|
-
size="s"
|
|
1157
|
+
className="c16"
|
|
1199
1158
|
>
|
|
1200
1159
|
Legal
|
|
1201
1160
|
</span>
|
|
1202
1161
|
<ul
|
|
1203
1162
|
aria-label="Legal"
|
|
1204
|
-
className="
|
|
1163
|
+
className="c17"
|
|
1205
1164
|
role="list"
|
|
1206
1165
|
>
|
|
1207
1166
|
<li
|
|
1208
|
-
className="
|
|
1167
|
+
className="c18"
|
|
1209
1168
|
>
|
|
1210
1169
|
<a
|
|
1211
|
-
className="
|
|
1170
|
+
className="c8 c19 c20"
|
|
1212
1171
|
color="red"
|
|
1213
1172
|
href="/homepage"
|
|
1214
1173
|
role="menuitem"
|
|
@@ -1216,19 +1175,17 @@ exports[`renders correctly 1`] = `
|
|
|
1216
1175
|
type="standard"
|
|
1217
1176
|
>
|
|
1218
1177
|
<span
|
|
1219
|
-
className="
|
|
1220
|
-
color="white"
|
|
1221
|
-
size="s"
|
|
1178
|
+
className="c21"
|
|
1222
1179
|
>
|
|
1223
1180
|
Link comp with both URL and Ref
|
|
1224
1181
|
</span>
|
|
1225
1182
|
</a>
|
|
1226
1183
|
</li>
|
|
1227
1184
|
<li
|
|
1228
|
-
className="
|
|
1185
|
+
className="c18"
|
|
1229
1186
|
>
|
|
1230
1187
|
<a
|
|
1231
|
-
className="
|
|
1188
|
+
className="c8 c19 c20"
|
|
1232
1189
|
color="red"
|
|
1233
1190
|
href="/this-is-a-test"
|
|
1234
1191
|
role="menuitem"
|
|
@@ -1236,19 +1193,17 @@ exports[`renders correctly 1`] = `
|
|
|
1236
1193
|
type="standard"
|
|
1237
1194
|
>
|
|
1238
1195
|
<span
|
|
1239
|
-
className="
|
|
1240
|
-
color="white"
|
|
1241
|
-
size="s"
|
|
1196
|
+
className="c21"
|
|
1242
1197
|
>
|
|
1243
1198
|
Link comp with only Ref
|
|
1244
1199
|
</span>
|
|
1245
1200
|
</a>
|
|
1246
1201
|
</li>
|
|
1247
1202
|
<li
|
|
1248
|
-
className="
|
|
1203
|
+
className="c18"
|
|
1249
1204
|
>
|
|
1250
1205
|
<a
|
|
1251
|
-
className="
|
|
1206
|
+
className="c8 c19 c20"
|
|
1252
1207
|
color="red"
|
|
1253
1208
|
href="https://www.yahoo.com"
|
|
1254
1209
|
role="menuitem"
|
|
@@ -1256,24 +1211,22 @@ exports[`renders correctly 1`] = `
|
|
|
1256
1211
|
type="standard"
|
|
1257
1212
|
>
|
|
1258
1213
|
<span
|
|
1259
|
-
className="
|
|
1260
|
-
color="white"
|
|
1261
|
-
size="s"
|
|
1214
|
+
className="c21"
|
|
1262
1215
|
>
|
|
1263
1216
|
Link comp with only URL
|
|
1264
1217
|
</span>
|
|
1265
1218
|
<span
|
|
1266
|
-
className="
|
|
1219
|
+
className="c24"
|
|
1267
1220
|
>
|
|
1268
1221
|
(opens in new window)
|
|
1269
1222
|
</span>
|
|
1270
1223
|
</a>
|
|
1271
1224
|
</li>
|
|
1272
1225
|
<li
|
|
1273
|
-
className="
|
|
1226
|
+
className="c18"
|
|
1274
1227
|
>
|
|
1275
1228
|
<a
|
|
1276
|
-
className="
|
|
1229
|
+
className="c8 c19 c20"
|
|
1277
1230
|
color="red"
|
|
1278
1231
|
href="https://www.sportrelief.com"
|
|
1279
1232
|
role="menuitem"
|
|
@@ -1281,19 +1234,17 @@ exports[`renders correctly 1`] = `
|
|
|
1281
1234
|
type="standard"
|
|
1282
1235
|
>
|
|
1283
1236
|
<span
|
|
1284
|
-
className="
|
|
1285
|
-
color="white"
|
|
1286
|
-
size="s"
|
|
1237
|
+
className="c21"
|
|
1287
1238
|
>
|
|
1288
1239
|
Test allowListed external link
|
|
1289
1240
|
</span>
|
|
1290
1241
|
</a>
|
|
1291
1242
|
</li>
|
|
1292
1243
|
<li
|
|
1293
|
-
className="
|
|
1244
|
+
className="c18"
|
|
1294
1245
|
>
|
|
1295
1246
|
<a
|
|
1296
|
-
className="
|
|
1247
|
+
className="c8 c19 c20"
|
|
1297
1248
|
color="red"
|
|
1298
1249
|
href="https://bing.com"
|
|
1299
1250
|
role="menuitem"
|
|
@@ -1301,14 +1252,12 @@ exports[`renders correctly 1`] = `
|
|
|
1301
1252
|
type="standard"
|
|
1302
1253
|
>
|
|
1303
1254
|
<span
|
|
1304
|
-
className="
|
|
1305
|
-
color="white"
|
|
1306
|
-
size="s"
|
|
1255
|
+
className="c21"
|
|
1307
1256
|
>
|
|
1308
1257
|
Test non-allowListed external link
|
|
1309
1258
|
</span>
|
|
1310
1259
|
<span
|
|
1311
|
-
className="
|
|
1260
|
+
className="c24"
|
|
1312
1261
|
>
|
|
1313
1262
|
(opens in new window)
|
|
1314
1263
|
</span>
|
|
@@ -1319,12 +1268,10 @@ exports[`renders correctly 1`] = `
|
|
|
1319
1268
|
</ul>
|
|
1320
1269
|
</nav>
|
|
1321
1270
|
<div
|
|
1322
|
-
className="
|
|
1271
|
+
className="c25"
|
|
1323
1272
|
>
|
|
1324
1273
|
<p
|
|
1325
|
-
className="
|
|
1326
|
-
color="grey"
|
|
1327
|
-
size="s"
|
|
1274
|
+
className="c26"
|
|
1328
1275
|
>
|
|
1329
1276
|
Comic Relief is the trading name of Charity Projects, a registered charity in England and Wales (326568) and Scotland (SC039730), which is a company limited by guarantee registered in England and Wales (01806414). Registered address: 6th Floor, The White Chapel Building, 10 Whitechapel High Street, London, E1 8QS.
|
|
1330
1277
|
</p>
|