@comicrelief/component-library 8.43.0 → 8.44.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.
Files changed (73) hide show
  1. package/dist/components/Atoms/Checkbox/Checkbox.test.js +50 -10
  2. package/dist/components/Atoms/ErrorText/__snapshots__/ErrorText.test.js.snap +27 -4
  3. package/dist/components/Atoms/Input/Input.js +4 -9
  4. package/dist/components/Atoms/Input/input.test.js +92 -14
  5. package/dist/components/Atoms/Label/Label.js +14 -7
  6. package/dist/components/Atoms/RadioButton/RadioButton.test.js +50 -10
  7. package/dist/components/Atoms/Select/__snapshots__/Select.test.js.snap +45 -6
  8. package/dist/components/Atoms/Text/Text.js +60 -75
  9. package/dist/components/Atoms/Text/Text.md +84 -87
  10. package/dist/components/Atoms/Text/__snapshots__/Text.test.js.snap +130 -21
  11. package/dist/components/Atoms/TextArea/TextArea.test.js +45 -6
  12. package/dist/components/Atoms/TextInputWithDropdown/__snapshots__/TextInputWithDropdown.test.js.snap +138 -25
  13. package/dist/components/Molecules/Accordion/__snapshots__/Accordion.test.js.snap +48 -7
  14. package/dist/components/Molecules/ArticleTeaser/ArticleTeaser.test.js +110 -20
  15. package/dist/components/Molecules/Banner/__snapshots__/Banner.test.js.snap +26 -6
  16. package/dist/components/Molecules/Descriptor/Descriptor.test.js +85 -15
  17. package/dist/components/Molecules/InfoBanner/__snapshots__/InfoBanner.test.js.snap +53 -3
  18. package/dist/components/Molecules/PartnerLink/PartnerLink.test.js +27 -4
  19. package/dist/components/Molecules/Promo/__snapshots__/Promo.test.js.snap +112 -28
  20. package/dist/components/Molecules/SchoolLookup/__snapshots__/SchoolLookup.test.js.snap +46 -7
  21. package/dist/components/Molecules/SearchInput/SearchInput.test.js +23 -6
  22. package/dist/components/Molecules/SearchResult/__snapshots__/SearchResult.test.js.snap +232 -20
  23. package/dist/components/Molecules/SingleMessage/__snapshots__/SingleMessage.test.js.snap +187 -30
  24. package/dist/components/Molecules/SingleMessageDS/__snapshots__/SingleMessageDs.test.js.snap +50 -9
  25. package/dist/components/Molecules/Typeahead/__snapshots__/Typeahead.test.js.snap +46 -7
  26. package/dist/components/Organisms/CookieBanner/CookieBanner.test.js +26 -7
  27. package/dist/components/Organisms/Donate/__snapshots__/Donate.test.js.snap +544 -101
  28. package/dist/components/Organisms/EmailSignUp/__snapshots__/EmailSignUp.test.js.snap +75 -19
  29. package/dist/components/Organisms/Footer/Nav/Nav.style.js +1 -1
  30. package/dist/components/Organisms/Footer/__snapshots__/Footer.test.js.snap +100 -47
  31. package/dist/components/Organisms/Membership/Membership.test.js +122 -22
  32. package/dist/components/Organisms/Membership/MoneyBox/MoneyBox.js +1 -1
  33. package/dist/components/Organisms/WYMDCarousel/__snapshots__/WYMDCarousel.test.js.snap +75 -19
  34. package/dist/theme/crTheme/fontConfig.js +217 -0
  35. package/dist/theme/crTheme/fontHelper.js +38 -0
  36. package/dist/theme/shared/global.css +3 -1
  37. package/package.json +1 -1
  38. package/src/components/Atoms/Checkbox/Checkbox.test.js +50 -10
  39. package/src/components/Atoms/ErrorText/__snapshots__/ErrorText.test.js.snap +27 -4
  40. package/src/components/Atoms/Input/Input.js +2 -2
  41. package/src/components/Atoms/Input/input.test.js +92 -14
  42. package/src/components/Atoms/Label/Label.js +7 -3
  43. package/src/components/Atoms/RadioButton/RadioButton.test.js +50 -10
  44. package/src/components/Atoms/Select/__snapshots__/Select.test.js.snap +45 -6
  45. package/src/components/Atoms/Text/Text.js +55 -54
  46. package/src/components/Atoms/Text/Text.md +84 -87
  47. package/src/components/Atoms/Text/__snapshots__/Text.test.js.snap +130 -21
  48. package/src/components/Atoms/TextArea/TextArea.test.js +45 -6
  49. package/src/components/Atoms/TextInputWithDropdown/__snapshots__/TextInputWithDropdown.test.js.snap +138 -25
  50. package/src/components/Molecules/Accordion/__snapshots__/Accordion.test.js.snap +48 -7
  51. package/src/components/Molecules/ArticleTeaser/ArticleTeaser.test.js +110 -20
  52. package/src/components/Molecules/Banner/__snapshots__/Banner.test.js.snap +26 -6
  53. package/src/components/Molecules/Descriptor/Descriptor.test.js +85 -15
  54. package/src/components/Molecules/InfoBanner/__snapshots__/InfoBanner.test.js.snap +53 -3
  55. package/src/components/Molecules/PartnerLink/PartnerLink.test.js +27 -4
  56. package/src/components/Molecules/Promo/__snapshots__/Promo.test.js.snap +112 -28
  57. package/src/components/Molecules/SchoolLookup/__snapshots__/SchoolLookup.test.js.snap +46 -7
  58. package/src/components/Molecules/SearchInput/SearchInput.test.js +23 -6
  59. package/src/components/Molecules/SearchResult/__snapshots__/SearchResult.test.js.snap +232 -20
  60. package/src/components/Molecules/SingleMessage/__snapshots__/SingleMessage.test.js.snap +187 -30
  61. package/src/components/Molecules/SingleMessageDS/__snapshots__/SingleMessageDs.test.js.snap +50 -9
  62. package/src/components/Molecules/Typeahead/__snapshots__/Typeahead.test.js.snap +46 -7
  63. package/src/components/Organisms/CookieBanner/CookieBanner.test.js +26 -7
  64. package/src/components/Organisms/Donate/__snapshots__/Donate.test.js.snap +544 -101
  65. package/src/components/Organisms/EmailSignUp/__snapshots__/EmailSignUp.test.js.snap +75 -19
  66. package/src/components/Organisms/Footer/Nav/Nav.style.js +1 -1
  67. package/src/components/Organisms/Footer/__snapshots__/Footer.test.js.snap +100 -47
  68. package/src/components/Organisms/Membership/Membership.test.js +122 -22
  69. package/src/components/Organisms/Membership/MoneyBox/MoneyBox.js +1 -1
  70. package/src/components/Organisms/WYMDCarousel/__snapshots__/WYMDCarousel.test.js.snap +75 -19
  71. package/src/theme/crTheme/fontConfig.js +211 -0
  72. package/src/theme/crTheme/fontHelper.js +31 -0
  73. package/src/theme/shared/global.css +3 -1
@@ -2,43 +2,72 @@
2
2
 
3
3
  exports[`"Single Giving, No Money Buys, with overridden manual input value" renders correctly 1`] = `
4
4
  .c4 {
5
- color: #FFFFFF;
6
- font-size: 4rem;
7
- line-height: 4rem;
5
+ font-family: 'Anton',Impact,sans-serif;
6
+ font-weight: 400;
8
7
  text-transform: uppercase;
9
- font-weight: normal;
8
+ -webkit-letter-spacing: 0;
9
+ -moz-letter-spacing: 0;
10
+ -ms-letter-spacing: 0;
11
+ letter-spacing: 0;
12
+ font-size: 1.5rem;
13
+ line-height: 1.5rem;
14
+ }
15
+
16
+ .c4 {
17
+ font-size: 4rem;
18
+ line-height: normal;
10
19
  font-family: 'Anton',Impact,sans-serif;
11
- -webkit-letter-spacing: 0.03rem;
12
- -moz-letter-spacing: 0.03rem;
13
- -ms-letter-spacing: 0.03rem;
14
- letter-spacing: 0.03rem;
20
+ font-weight: normal;
21
+ text-transform: uppercase;
22
+ color: #FFFFFF;
15
23
  }
16
24
 
17
25
  .c5 {
18
- color: #FFFFFF;
19
- font-size: 1.25rem;
20
- line-height: 1.25rem;
26
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
27
+ font-weight: 400;
21
28
  text-transform: inherit;
29
+ -webkit-letter-spacing: 0;
30
+ -moz-letter-spacing: 0;
31
+ -ms-letter-spacing: 0;
32
+ letter-spacing: 0;
33
+ font-size: 1rem;
34
+ line-height: 1.25rem;
35
+ }
36
+
37
+ .c5 {
38
+ font-size: 1.25rem;
22
39
  line-height: normal;
40
+ color: #FFFFFF;
41
+ }
42
+
43
+ .c16 {
23
44
  font-family: 'Montserrat',Helvetica,Arial,sans-serif;
45
+ font-weight: 400;
46
+ text-transform: inherit;
47
+ -webkit-letter-spacing: 0;
48
+ -moz-letter-spacing: 0;
49
+ -ms-letter-spacing: 0;
50
+ letter-spacing: 0;
24
51
  font-size: 1rem;
52
+ line-height: 1.25rem;
25
53
  }
26
54
 
27
55
  .c16 {
28
56
  font-size: 1.5rem;
29
- line-height: 1.5rem;
30
- text-transform: inherit;
31
- font-weight: bold;
32
57
  line-height: normal;
33
- font-family: 'Montserrat',Helvetica,Arial,sans-serif;
58
+ font-weight: bold;
34
59
  }
35
60
 
36
61
  .c20 {
37
- font-size: 1rem;
38
- line-height: 1rem;
39
- text-transform: inherit;
40
- line-height: normal;
41
62
  font-family: 'Montserrat',Helvetica,Arial,sans-serif;
63
+ font-weight: 400;
64
+ text-transform: inherit;
65
+ -webkit-letter-spacing: 0;
66
+ -moz-letter-spacing: 0;
67
+ -ms-letter-spacing: 0;
68
+ letter-spacing: 0;
69
+ font-size: 1rem;
70
+ line-height: 1.25rem;
42
71
  }
43
72
 
44
73
  .c18 {
@@ -56,7 +85,15 @@ exports[`"Single Giving, No Money Buys, with overridden manual input value" rend
56
85
 
57
86
  .c21 {
58
87
  margin-bottom: 0.5rem;
59
- font-weight: normal;
88
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
89
+ font-weight: 400;
90
+ text-transform: inherit;
91
+ -webkit-letter-spacing: 0;
92
+ -moz-letter-spacing: 0;
93
+ -ms-letter-spacing: 0;
94
+ letter-spacing: 0;
95
+ font-size: 1rem;
96
+ line-height: 1.25rem;
60
97
  }
61
98
 
62
99
  .c22 {
@@ -98,7 +135,7 @@ exports[`"Single Giving, No Money Buys, with overridden manual input value" rend
98
135
  border-radius: 0.5rem;
99
136
  font-size: inherit;
100
137
  z-index: 2;
101
- font-family: 'Montserrat',Helvetica,Arial,sans-serif;
138
+ font-family: inherit;
102
139
  }
103
140
 
104
141
  .c24:focus {
@@ -425,9 +462,73 @@ exports[`"Single Giving, No Money Buys, with overridden manual input value" rend
425
462
  box-shadow: inset 0 0 0 4px #2042AD;
426
463
  }
427
464
 
465
+ @media (min-width:740px) {
466
+ .c4 {
467
+ font-size: 1.875rem;
468
+ line-height: 1.875rem;
469
+ }
470
+ }
471
+
472
+ @media (min-width:1024px) {
473
+ .c4 {
474
+ font-size: 2rem;
475
+ line-height: 2rem;
476
+ }
477
+ }
478
+
428
479
  @media (min-width:740px) {
429
480
  .c5 {
430
- font-size: 1.25rem;
481
+ font-size: 1rem;
482
+ line-height: 1.25rem;
483
+ }
484
+ }
485
+
486
+ @media (min-width:1024px) {
487
+ .c5 {
488
+ font-size: 1.125rem;
489
+ line-height: 1.375rem;
490
+ }
491
+ }
492
+
493
+ @media (min-width:740px) {
494
+ .c16 {
495
+ font-size: 1rem;
496
+ line-height: 1.25rem;
497
+ }
498
+ }
499
+
500
+ @media (min-width:1024px) {
501
+ .c16 {
502
+ font-size: 1.125rem;
503
+ line-height: 1.375rem;
504
+ }
505
+ }
506
+
507
+ @media (min-width:740px) {
508
+ .c20 {
509
+ font-size: 1rem;
510
+ line-height: 1.25rem;
511
+ }
512
+ }
513
+
514
+ @media (min-width:1024px) {
515
+ .c20 {
516
+ font-size: 1.125rem;
517
+ line-height: 1.375rem;
518
+ }
519
+ }
520
+
521
+ @media (min-width:740px) {
522
+ .c21 {
523
+ font-size: 1rem;
524
+ line-height: 1.25rem;
525
+ }
526
+ }
527
+
528
+ @media (min-width:1024px) {
529
+ .c21 {
530
+ font-size: 1rem;
531
+ line-height: 1.25rem;
431
532
  }
432
533
  }
433
534
 
@@ -637,7 +738,6 @@ exports[`"Single Giving, No Money Buys, with overridden manual input value" rend
637
738
  "__html": "£",
638
739
  }
639
740
  }
640
- size="s"
641
741
  />
642
742
  <div
643
743
  className="c22"
@@ -692,52 +792,90 @@ exports[`"Single Giving, No Money Buys, with overridden manual input value" rend
692
792
 
693
793
  exports[`Monthly donation renders correctly 1`] = `
694
794
  .c4 {
695
- color: #FFFFFF;
696
- font-size: 4rem;
697
- line-height: 4rem;
795
+ font-family: 'Anton',Impact,sans-serif;
796
+ font-weight: 400;
698
797
  text-transform: uppercase;
699
- font-weight: normal;
798
+ -webkit-letter-spacing: 0;
799
+ -moz-letter-spacing: 0;
800
+ -ms-letter-spacing: 0;
801
+ letter-spacing: 0;
802
+ font-size: 1.5rem;
803
+ line-height: 1.5rem;
804
+ }
805
+
806
+ .c4 {
807
+ font-size: 4rem;
808
+ line-height: normal;
700
809
  font-family: 'Anton',Impact,sans-serif;
701
- -webkit-letter-spacing: 0.03rem;
702
- -moz-letter-spacing: 0.03rem;
703
- -ms-letter-spacing: 0.03rem;
704
- letter-spacing: 0.03rem;
810
+ font-weight: normal;
811
+ text-transform: uppercase;
812
+ color: #FFFFFF;
705
813
  }
706
814
 
707
815
  .c5 {
708
- color: #FFFFFF;
709
- font-size: 1.25rem;
710
- line-height: 1.25rem;
816
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
817
+ font-weight: 400;
711
818
  text-transform: inherit;
819
+ -webkit-letter-spacing: 0;
820
+ -moz-letter-spacing: 0;
821
+ -ms-letter-spacing: 0;
822
+ letter-spacing: 0;
823
+ font-size: 1rem;
824
+ line-height: 1.25rem;
825
+ }
826
+
827
+ .c5 {
828
+ font-size: 1.25rem;
712
829
  line-height: normal;
830
+ color: #FFFFFF;
831
+ }
832
+
833
+ .c15 {
713
834
  font-family: 'Montserrat',Helvetica,Arial,sans-serif;
835
+ font-weight: 400;
836
+ text-transform: inherit;
837
+ -webkit-letter-spacing: 0;
838
+ -moz-letter-spacing: 0;
839
+ -ms-letter-spacing: 0;
840
+ letter-spacing: 0;
714
841
  font-size: 1rem;
842
+ line-height: 1.25rem;
715
843
  }
716
844
 
717
845
  .c15 {
718
846
  font-size: 1.5rem;
719
- line-height: 1.5rem;
720
- text-transform: inherit;
721
- font-weight: bold;
722
847
  line-height: normal;
848
+ font-weight: bold;
849
+ }
850
+
851
+ .c17 {
723
852
  font-family: 'Montserrat',Helvetica,Arial,sans-serif;
853
+ font-weight: 400;
854
+ text-transform: inherit;
855
+ -webkit-letter-spacing: 0;
856
+ -moz-letter-spacing: 0;
857
+ -ms-letter-spacing: 0;
858
+ letter-spacing: 0;
859
+ font-size: 1rem;
860
+ line-height: 1.25rem;
724
861
  }
725
862
 
726
863
  .c17 {
727
864
  font-size: 1rem;
728
- line-height: 1rem;
729
- text-transform: inherit;
730
- font-weight: 500;
731
865
  line-height: normal;
732
- font-family: 'Montserrat',Helvetica,Arial,sans-serif;
866
+ font-weight: 500;
733
867
  }
734
868
 
735
869
  .c21 {
736
- font-size: 1rem;
737
- line-height: 1rem;
738
- text-transform: inherit;
739
- line-height: normal;
740
870
  font-family: 'Montserrat',Helvetica,Arial,sans-serif;
871
+ font-weight: 400;
872
+ text-transform: inherit;
873
+ -webkit-letter-spacing: 0;
874
+ -moz-letter-spacing: 0;
875
+ -ms-letter-spacing: 0;
876
+ letter-spacing: 0;
877
+ font-size: 1rem;
878
+ line-height: 1.25rem;
741
879
  }
742
880
 
743
881
  .c19 {
@@ -755,7 +893,15 @@ exports[`Monthly donation renders correctly 1`] = `
755
893
 
756
894
  .c22 {
757
895
  margin-bottom: 0.5rem;
758
- font-weight: normal;
896
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
897
+ font-weight: 400;
898
+ text-transform: inherit;
899
+ -webkit-letter-spacing: 0;
900
+ -moz-letter-spacing: 0;
901
+ -ms-letter-spacing: 0;
902
+ letter-spacing: 0;
903
+ font-size: 1rem;
904
+ line-height: 1.25rem;
759
905
  }
760
906
 
761
907
  .c23 {
@@ -797,7 +943,7 @@ exports[`Monthly donation renders correctly 1`] = `
797
943
  border-radius: 0.5rem;
798
944
  font-size: inherit;
799
945
  z-index: 2;
800
- font-family: 'Montserrat',Helvetica,Arial,sans-serif;
946
+ font-family: inherit;
801
947
  }
802
948
 
803
949
  .c25:focus {
@@ -1089,9 +1235,87 @@ exports[`Monthly donation renders correctly 1`] = `
1089
1235
  box-shadow: inset 0 0 0 4px #2042AD;
1090
1236
  }
1091
1237
 
1238
+ @media (min-width:740px) {
1239
+ .c4 {
1240
+ font-size: 1.875rem;
1241
+ line-height: 1.875rem;
1242
+ }
1243
+ }
1244
+
1245
+ @media (min-width:1024px) {
1246
+ .c4 {
1247
+ font-size: 2rem;
1248
+ line-height: 2rem;
1249
+ }
1250
+ }
1251
+
1092
1252
  @media (min-width:740px) {
1093
1253
  .c5 {
1094
- font-size: 1.25rem;
1254
+ font-size: 1rem;
1255
+ line-height: 1.25rem;
1256
+ }
1257
+ }
1258
+
1259
+ @media (min-width:1024px) {
1260
+ .c5 {
1261
+ font-size: 1.125rem;
1262
+ line-height: 1.375rem;
1263
+ }
1264
+ }
1265
+
1266
+ @media (min-width:740px) {
1267
+ .c15 {
1268
+ font-size: 1rem;
1269
+ line-height: 1.25rem;
1270
+ }
1271
+ }
1272
+
1273
+ @media (min-width:1024px) {
1274
+ .c15 {
1275
+ font-size: 1.125rem;
1276
+ line-height: 1.375rem;
1277
+ }
1278
+ }
1279
+
1280
+ @media (min-width:740px) {
1281
+ .c17 {
1282
+ font-size: 1rem;
1283
+ line-height: 1.25rem;
1284
+ }
1285
+ }
1286
+
1287
+ @media (min-width:1024px) {
1288
+ .c17 {
1289
+ font-size: 1.125rem;
1290
+ line-height: 1.375rem;
1291
+ }
1292
+ }
1293
+
1294
+ @media (min-width:740px) {
1295
+ .c21 {
1296
+ font-size: 1rem;
1297
+ line-height: 1.25rem;
1298
+ }
1299
+ }
1300
+
1301
+ @media (min-width:1024px) {
1302
+ .c21 {
1303
+ font-size: 1.125rem;
1304
+ line-height: 1.375rem;
1305
+ }
1306
+ }
1307
+
1308
+ @media (min-width:740px) {
1309
+ .c22 {
1310
+ font-size: 1rem;
1311
+ line-height: 1.25rem;
1312
+ }
1313
+ }
1314
+
1315
+ @media (min-width:1024px) {
1316
+ .c22 {
1317
+ font-size: 1rem;
1318
+ line-height: 1.25rem;
1095
1319
  }
1096
1320
  }
1097
1321
 
@@ -1304,7 +1528,6 @@ exports[`Monthly donation renders correctly 1`] = `
1304
1528
  "__html": "£",
1305
1529
  }
1306
1530
  }
1307
- size="s"
1308
1531
  />
1309
1532
  <div
1310
1533
  className="c23"
@@ -1358,52 +1581,90 @@ exports[`Monthly donation renders correctly 1`] = `
1358
1581
 
1359
1582
  exports[`Single donation renders correctly 1`] = `
1360
1583
  .c4 {
1361
- color: #FFFFFF;
1362
- font-size: 4rem;
1363
- line-height: 4rem;
1584
+ font-family: 'Anton',Impact,sans-serif;
1585
+ font-weight: 400;
1364
1586
  text-transform: uppercase;
1365
- font-weight: normal;
1587
+ -webkit-letter-spacing: 0;
1588
+ -moz-letter-spacing: 0;
1589
+ -ms-letter-spacing: 0;
1590
+ letter-spacing: 0;
1591
+ font-size: 1.5rem;
1592
+ line-height: 1.5rem;
1593
+ }
1594
+
1595
+ .c4 {
1596
+ font-size: 4rem;
1597
+ line-height: normal;
1366
1598
  font-family: 'Anton',Impact,sans-serif;
1367
- -webkit-letter-spacing: 0.03rem;
1368
- -moz-letter-spacing: 0.03rem;
1369
- -ms-letter-spacing: 0.03rem;
1370
- letter-spacing: 0.03rem;
1599
+ font-weight: normal;
1600
+ text-transform: uppercase;
1601
+ color: #FFFFFF;
1371
1602
  }
1372
1603
 
1373
1604
  .c5 {
1374
- color: #FFFFFF;
1375
- font-size: 1.25rem;
1376
- line-height: 1.25rem;
1605
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
1606
+ font-weight: 400;
1377
1607
  text-transform: inherit;
1608
+ -webkit-letter-spacing: 0;
1609
+ -moz-letter-spacing: 0;
1610
+ -ms-letter-spacing: 0;
1611
+ letter-spacing: 0;
1612
+ font-size: 1rem;
1613
+ line-height: 1.25rem;
1614
+ }
1615
+
1616
+ .c5 {
1617
+ font-size: 1.25rem;
1378
1618
  line-height: normal;
1619
+ color: #FFFFFF;
1620
+ }
1621
+
1622
+ .c10 {
1379
1623
  font-family: 'Montserrat',Helvetica,Arial,sans-serif;
1624
+ font-weight: 400;
1625
+ text-transform: inherit;
1626
+ -webkit-letter-spacing: 0;
1627
+ -moz-letter-spacing: 0;
1628
+ -ms-letter-spacing: 0;
1629
+ letter-spacing: 0;
1380
1630
  font-size: 1rem;
1631
+ line-height: 1.25rem;
1381
1632
  }
1382
1633
 
1383
1634
  .c10 {
1384
1635
  font-size: 1.5rem;
1385
- line-height: 1.5rem;
1386
- text-transform: inherit;
1387
- font-weight: bold;
1388
1636
  line-height: normal;
1637
+ font-weight: bold;
1638
+ }
1639
+
1640
+ .c21 {
1389
1641
  font-family: 'Montserrat',Helvetica,Arial,sans-serif;
1642
+ font-weight: 400;
1643
+ text-transform: inherit;
1644
+ -webkit-letter-spacing: 0;
1645
+ -moz-letter-spacing: 0;
1646
+ -ms-letter-spacing: 0;
1647
+ letter-spacing: 0;
1648
+ font-size: 1rem;
1649
+ line-height: 1.25rem;
1390
1650
  }
1391
1651
 
1392
1652
  .c21 {
1393
1653
  font-size: 1rem;
1394
- line-height: 1rem;
1395
- text-transform: inherit;
1396
- font-weight: 500;
1397
1654
  line-height: normal;
1398
- font-family: 'Montserrat',Helvetica,Arial,sans-serif;
1655
+ font-weight: 500;
1399
1656
  }
1400
1657
 
1401
1658
  .c14 {
1402
- font-size: 1rem;
1403
- line-height: 1rem;
1404
- text-transform: inherit;
1405
- line-height: normal;
1406
1659
  font-family: 'Montserrat',Helvetica,Arial,sans-serif;
1660
+ font-weight: 400;
1661
+ text-transform: inherit;
1662
+ -webkit-letter-spacing: 0;
1663
+ -moz-letter-spacing: 0;
1664
+ -ms-letter-spacing: 0;
1665
+ letter-spacing: 0;
1666
+ font-size: 1rem;
1667
+ line-height: 1.25rem;
1407
1668
  }
1408
1669
 
1409
1670
  .c12 {
@@ -1421,7 +1682,15 @@ exports[`Single donation renders correctly 1`] = `
1421
1682
 
1422
1683
  .c15 {
1423
1684
  margin-bottom: 0.5rem;
1424
- font-weight: normal;
1685
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
1686
+ font-weight: 400;
1687
+ text-transform: inherit;
1688
+ -webkit-letter-spacing: 0;
1689
+ -moz-letter-spacing: 0;
1690
+ -ms-letter-spacing: 0;
1691
+ letter-spacing: 0;
1692
+ font-size: 1rem;
1693
+ line-height: 1.25rem;
1425
1694
  }
1426
1695
 
1427
1696
  .c16 {
@@ -1463,7 +1732,7 @@ exports[`Single donation renders correctly 1`] = `
1463
1732
  border-radius: 0.5rem;
1464
1733
  font-size: inherit;
1465
1734
  z-index: 2;
1466
- font-family: 'Montserrat',Helvetica,Arial,sans-serif;
1735
+ font-family: inherit;
1467
1736
  }
1468
1737
 
1469
1738
  .c18:focus {
@@ -1741,9 +2010,87 @@ exports[`Single donation renders correctly 1`] = `
1741
2010
  background-color: #961D35;
1742
2011
  }
1743
2012
 
2013
+ @media (min-width:740px) {
2014
+ .c4 {
2015
+ font-size: 1.875rem;
2016
+ line-height: 1.875rem;
2017
+ }
2018
+ }
2019
+
2020
+ @media (min-width:1024px) {
2021
+ .c4 {
2022
+ font-size: 2rem;
2023
+ line-height: 2rem;
2024
+ }
2025
+ }
2026
+
1744
2027
  @media (min-width:740px) {
1745
2028
  .c5 {
1746
- font-size: 1.25rem;
2029
+ font-size: 1rem;
2030
+ line-height: 1.25rem;
2031
+ }
2032
+ }
2033
+
2034
+ @media (min-width:1024px) {
2035
+ .c5 {
2036
+ font-size: 1.125rem;
2037
+ line-height: 1.375rem;
2038
+ }
2039
+ }
2040
+
2041
+ @media (min-width:740px) {
2042
+ .c10 {
2043
+ font-size: 1rem;
2044
+ line-height: 1.25rem;
2045
+ }
2046
+ }
2047
+
2048
+ @media (min-width:1024px) {
2049
+ .c10 {
2050
+ font-size: 1.125rem;
2051
+ line-height: 1.375rem;
2052
+ }
2053
+ }
2054
+
2055
+ @media (min-width:740px) {
2056
+ .c21 {
2057
+ font-size: 1rem;
2058
+ line-height: 1.25rem;
2059
+ }
2060
+ }
2061
+
2062
+ @media (min-width:1024px) {
2063
+ .c21 {
2064
+ font-size: 1.125rem;
2065
+ line-height: 1.375rem;
2066
+ }
2067
+ }
2068
+
2069
+ @media (min-width:740px) {
2070
+ .c14 {
2071
+ font-size: 1rem;
2072
+ line-height: 1.25rem;
2073
+ }
2074
+ }
2075
+
2076
+ @media (min-width:1024px) {
2077
+ .c14 {
2078
+ font-size: 1.125rem;
2079
+ line-height: 1.375rem;
2080
+ }
2081
+ }
2082
+
2083
+ @media (min-width:740px) {
2084
+ .c15 {
2085
+ font-size: 1rem;
2086
+ line-height: 1.25rem;
2087
+ }
2088
+ }
2089
+
2090
+ @media (min-width:1024px) {
2091
+ .c15 {
2092
+ font-size: 1rem;
2093
+ line-height: 1.25rem;
1747
2094
  }
1748
2095
  }
1749
2096
 
@@ -1939,7 +2286,6 @@ exports[`Single donation renders correctly 1`] = `
1939
2286
  "__html": "",
1940
2287
  }
1941
2288
  }
1942
- size="s"
1943
2289
  />
1944
2290
  <div
1945
2291
  className="c16"
@@ -1977,7 +2323,6 @@ exports[`Single donation renders correctly 1`] = `
1977
2323
  "__html": "",
1978
2324
  }
1979
2325
  }
1980
- size="s"
1981
2326
  />
1982
2327
  <div
1983
2328
  className="c16"
@@ -2015,7 +2360,6 @@ exports[`Single donation renders correctly 1`] = `
2015
2360
  "__html": "",
2016
2361
  }
2017
2362
  }
2018
- size="s"
2019
2363
  />
2020
2364
  <div
2021
2365
  className="c16"
@@ -2064,7 +2408,6 @@ exports[`Single donation renders correctly 1`] = `
2064
2408
  "__html": "£",
2065
2409
  }
2066
2410
  }
2067
- size="s"
2068
2411
  />
2069
2412
  <div
2070
2413
  className="c16"
@@ -2119,43 +2462,72 @@ exports[`Single donation renders correctly 1`] = `
2119
2462
 
2120
2463
  exports[`Single donation with no Money Buys renders correctly 1`] = `
2121
2464
  .c4 {
2122
- color: #FFFFFF;
2123
- font-size: 4rem;
2124
- line-height: 4rem;
2465
+ font-family: 'Anton',Impact,sans-serif;
2466
+ font-weight: 400;
2125
2467
  text-transform: uppercase;
2126
- font-weight: normal;
2468
+ -webkit-letter-spacing: 0;
2469
+ -moz-letter-spacing: 0;
2470
+ -ms-letter-spacing: 0;
2471
+ letter-spacing: 0;
2472
+ font-size: 1.5rem;
2473
+ line-height: 1.5rem;
2474
+ }
2475
+
2476
+ .c4 {
2477
+ font-size: 4rem;
2478
+ line-height: normal;
2127
2479
  font-family: 'Anton',Impact,sans-serif;
2128
- -webkit-letter-spacing: 0.03rem;
2129
- -moz-letter-spacing: 0.03rem;
2130
- -ms-letter-spacing: 0.03rem;
2131
- letter-spacing: 0.03rem;
2480
+ font-weight: normal;
2481
+ text-transform: uppercase;
2482
+ color: #FFFFFF;
2132
2483
  }
2133
2484
 
2134
2485
  .c5 {
2135
- color: #FFFFFF;
2136
- font-size: 1.25rem;
2137
- line-height: 1.25rem;
2486
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
2487
+ font-weight: 400;
2138
2488
  text-transform: inherit;
2489
+ -webkit-letter-spacing: 0;
2490
+ -moz-letter-spacing: 0;
2491
+ -ms-letter-spacing: 0;
2492
+ letter-spacing: 0;
2493
+ font-size: 1rem;
2494
+ line-height: 1.25rem;
2495
+ }
2496
+
2497
+ .c5 {
2498
+ font-size: 1.25rem;
2139
2499
  line-height: normal;
2500
+ color: #FFFFFF;
2501
+ }
2502
+
2503
+ .c10 {
2140
2504
  font-family: 'Montserrat',Helvetica,Arial,sans-serif;
2505
+ font-weight: 400;
2506
+ text-transform: inherit;
2507
+ -webkit-letter-spacing: 0;
2508
+ -moz-letter-spacing: 0;
2509
+ -ms-letter-spacing: 0;
2510
+ letter-spacing: 0;
2141
2511
  font-size: 1rem;
2512
+ line-height: 1.25rem;
2142
2513
  }
2143
2514
 
2144
2515
  .c10 {
2145
2516
  font-size: 1.5rem;
2146
- line-height: 1.5rem;
2147
- text-transform: inherit;
2148
- font-weight: bold;
2149
2517
  line-height: normal;
2150
- font-family: 'Montserrat',Helvetica,Arial,sans-serif;
2518
+ font-weight: bold;
2151
2519
  }
2152
2520
 
2153
2521
  .c14 {
2154
- font-size: 1rem;
2155
- line-height: 1rem;
2156
- text-transform: inherit;
2157
- line-height: normal;
2158
2522
  font-family: 'Montserrat',Helvetica,Arial,sans-serif;
2523
+ font-weight: 400;
2524
+ text-transform: inherit;
2525
+ -webkit-letter-spacing: 0;
2526
+ -moz-letter-spacing: 0;
2527
+ -ms-letter-spacing: 0;
2528
+ letter-spacing: 0;
2529
+ font-size: 1rem;
2530
+ line-height: 1.25rem;
2159
2531
  }
2160
2532
 
2161
2533
  .c12 {
@@ -2173,7 +2545,15 @@ exports[`Single donation with no Money Buys renders correctly 1`] = `
2173
2545
 
2174
2546
  .c15 {
2175
2547
  margin-bottom: 0.5rem;
2176
- font-weight: normal;
2548
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
2549
+ font-weight: 400;
2550
+ text-transform: inherit;
2551
+ -webkit-letter-spacing: 0;
2552
+ -moz-letter-spacing: 0;
2553
+ -ms-letter-spacing: 0;
2554
+ letter-spacing: 0;
2555
+ font-size: 1rem;
2556
+ line-height: 1.25rem;
2177
2557
  }
2178
2558
 
2179
2559
  .c16 {
@@ -2215,7 +2595,7 @@ exports[`Single donation with no Money Buys renders correctly 1`] = `
2215
2595
  border-radius: 0.5rem;
2216
2596
  font-size: inherit;
2217
2597
  z-index: 2;
2218
- font-family: 'Montserrat',Helvetica,Arial,sans-serif;
2598
+ font-family: inherit;
2219
2599
  }
2220
2600
 
2221
2601
  .c18:focus {
@@ -2403,9 +2783,73 @@ exports[`Single donation with no Money Buys renders correctly 1`] = `
2403
2783
  background-color: #961D35;
2404
2784
  }
2405
2785
 
2786
+ @media (min-width:740px) {
2787
+ .c4 {
2788
+ font-size: 1.875rem;
2789
+ line-height: 1.875rem;
2790
+ }
2791
+ }
2792
+
2793
+ @media (min-width:1024px) {
2794
+ .c4 {
2795
+ font-size: 2rem;
2796
+ line-height: 2rem;
2797
+ }
2798
+ }
2799
+
2406
2800
  @media (min-width:740px) {
2407
2801
  .c5 {
2408
- font-size: 1.25rem;
2802
+ font-size: 1rem;
2803
+ line-height: 1.25rem;
2804
+ }
2805
+ }
2806
+
2807
+ @media (min-width:1024px) {
2808
+ .c5 {
2809
+ font-size: 1.125rem;
2810
+ line-height: 1.375rem;
2811
+ }
2812
+ }
2813
+
2814
+ @media (min-width:740px) {
2815
+ .c10 {
2816
+ font-size: 1rem;
2817
+ line-height: 1.25rem;
2818
+ }
2819
+ }
2820
+
2821
+ @media (min-width:1024px) {
2822
+ .c10 {
2823
+ font-size: 1.125rem;
2824
+ line-height: 1.375rem;
2825
+ }
2826
+ }
2827
+
2828
+ @media (min-width:740px) {
2829
+ .c14 {
2830
+ font-size: 1rem;
2831
+ line-height: 1.25rem;
2832
+ }
2833
+ }
2834
+
2835
+ @media (min-width:1024px) {
2836
+ .c14 {
2837
+ font-size: 1.125rem;
2838
+ line-height: 1.375rem;
2839
+ }
2840
+ }
2841
+
2842
+ @media (min-width:740px) {
2843
+ .c15 {
2844
+ font-size: 1rem;
2845
+ line-height: 1.25rem;
2846
+ }
2847
+ }
2848
+
2849
+ @media (min-width:1024px) {
2850
+ .c15 {
2851
+ font-size: 1rem;
2852
+ line-height: 1.25rem;
2409
2853
  }
2410
2854
  }
2411
2855
 
@@ -2561,7 +3005,6 @@ exports[`Single donation with no Money Buys renders correctly 1`] = `
2561
3005
  "__html": "£",
2562
3006
  }
2563
3007
  }
2564
- size="s"
2565
3008
  />
2566
3009
  <div
2567
3010
  className="c16"