@newskit-render/core 1.17.4 → 1.27.2
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/.eslintrc +1 -1
- package/CHANGELOG.md +185 -0
- package/Dockerfile +1 -1
- package/__tests__/pages/__snapshots__/home.test.tsx.snap +179 -320
- package/__tests__/pages/home.test.tsx +4 -0
- package/applitools.config.js +9 -0
- package/components/article/__tests__/__snapshots__/index.test.tsx.snap +288 -513
- package/components/article/__tests__/index.test.tsx +4 -0
- package/components/footer/__snapshots__/index.test.tsx.snap +8 -12
- package/components/footer/index.test.tsx +4 -0
- package/components/footer/index.tsx +93 -65
- package/components/header/index.tsx +52 -26
- package/components/section/layouts/__tests__/__snapshots__/Lead.test.tsx.snap +30 -50
- package/components/section/layouts/__tests__/__snapshots__/SectionRow.test.tsx.snap +221 -358
- package/cypress/config/config.e2e.json +14 -0
- package/cypress/config/config.visual.json +8 -0
- package/cypress/e2e/account/SkipToContent.spec.js +12 -0
- package/cypress/e2e/account/accessibility.spec.js +69 -0
- package/cypress/e2e/account/account-page.spec.js +339 -0
- package/cypress/e2e/account/commenting-notifications.spec.js +44 -0
- package/cypress/e2e/account/main-api.spec.js +93 -0
- package/cypress/e2e/account/payment-page.spec.js +42 -0
- package/cypress/{integration → e2e/core}/home-page.spec.js +0 -0
- package/cypress/plugins/index.js +31 -0
- package/cypress/support/commands.js +48 -25
- package/cypress/support/index.js +2 -0
- package/cypress/visual/account/visual-regression.spec.js +31 -0
- package/helpers/getYear.ts +1 -0
- package/infrastructure/.circleci/config.yml +3 -3
- package/package.json +21 -15
- package/pages/_app.tsx +44 -13
- package/pages/_document.tsx +15 -7
- package/pages/checkout/account-creation/index.tsx +9 -1
- package/public/MyAccount/no-subscription.svg +15 -0
- package/public/MyAccount/previous-subscription.svg +15 -0
- package/public/MyAccount/primary-navigation-logo-white.svg +6 -0
- package/theme/colours.json +4 -0
- package/theme/render-custom-theme.ts +12 -2
- package/tsconfig.json +4 -1
- package/helpers/articleUtil.ts +0 -4
|
@@ -44,35 +44,32 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
44
44
|
|
|
45
45
|
.emotion-3 {
|
|
46
46
|
margin-right: 16px;
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
47
|
+
-webkit-box-flex: 1;
|
|
48
|
+
-webkit-flex-grow: 1;
|
|
49
|
+
-ms-flex-positive: 1;
|
|
50
|
+
flex-grow: 1;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
@media screen and (max-width: 767px) {
|
|
54
54
|
.emotion-4 {
|
|
55
55
|
font-family: "Bitter",serif;
|
|
56
56
|
font-size: 28px;
|
|
57
|
-
line-height:
|
|
57
|
+
line-height: 31.5px;
|
|
58
58
|
font-weight: 500;
|
|
59
|
-
letter-spacing:
|
|
59
|
+
letter-spacing: 0;
|
|
60
|
+
padding: 0.5px 0px;
|
|
60
61
|
}
|
|
61
62
|
|
|
62
63
|
.emotion-4::before {
|
|
63
64
|
content: '';
|
|
65
|
+
margin-bottom: -0.2055em;
|
|
64
66
|
display: block;
|
|
65
|
-
height: 0;
|
|
66
|
-
width: 0;
|
|
67
|
-
margin-bottom: -0.22142857142857142em;
|
|
68
67
|
}
|
|
69
68
|
|
|
70
69
|
.emotion-4::after {
|
|
71
70
|
content: '';
|
|
71
|
+
margin-top: -0.2275em;
|
|
72
72
|
display: block;
|
|
73
|
-
height: 0;
|
|
74
|
-
width: 0;
|
|
75
|
-
margin-top: -0.2839285714285714em;
|
|
76
73
|
}
|
|
77
74
|
}
|
|
78
75
|
|
|
@@ -80,25 +77,22 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
80
77
|
.emotion-4 {
|
|
81
78
|
font-family: "Bitter",serif;
|
|
82
79
|
font-size: 32px;
|
|
83
|
-
line-height:
|
|
80
|
+
line-height: 36px;
|
|
84
81
|
font-weight: 500;
|
|
85
|
-
letter-spacing:
|
|
82
|
+
letter-spacing: 0;
|
|
83
|
+
padding: 0.5px 0px;
|
|
86
84
|
}
|
|
87
85
|
|
|
88
86
|
.emotion-4::before {
|
|
89
87
|
content: '';
|
|
88
|
+
margin-bottom: -0.2055em;
|
|
90
89
|
display: block;
|
|
91
|
-
height: 0;
|
|
92
|
-
width: 0;
|
|
93
|
-
margin-bottom: -0.21250000000000002em;
|
|
94
90
|
}
|
|
95
91
|
|
|
96
92
|
.emotion-4::after {
|
|
97
93
|
content: '';
|
|
94
|
+
margin-top: -0.2275em;
|
|
98
95
|
display: block;
|
|
99
|
-
height: 0;
|
|
100
|
-
width: 0;
|
|
101
|
-
margin-top: -0.275em;
|
|
102
96
|
}
|
|
103
97
|
}
|
|
104
98
|
|
|
@@ -106,25 +100,22 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
106
100
|
.emotion-4 {
|
|
107
101
|
font-family: "Bitter",serif;
|
|
108
102
|
font-size: 36px;
|
|
109
|
-
line-height:
|
|
103
|
+
line-height: 40.5px;
|
|
110
104
|
font-weight: 500;
|
|
111
|
-
letter-spacing:
|
|
105
|
+
letter-spacing: 0;
|
|
106
|
+
padding: 0.5px 0px;
|
|
112
107
|
}
|
|
113
108
|
|
|
114
109
|
.emotion-4::before {
|
|
115
110
|
content: '';
|
|
111
|
+
margin-bottom: -0.2055em;
|
|
116
112
|
display: block;
|
|
117
|
-
height: 0;
|
|
118
|
-
width: 0;
|
|
119
|
-
margin-bottom: -0.2055555555555556em;
|
|
120
113
|
}
|
|
121
114
|
|
|
122
115
|
.emotion-4::after {
|
|
123
116
|
content: '';
|
|
117
|
+
margin-top: -0.2275em;
|
|
124
118
|
display: block;
|
|
125
|
-
height: 0;
|
|
126
|
-
width: 0;
|
|
127
|
-
margin-top: -0.2680555555555556em;
|
|
128
119
|
}
|
|
129
120
|
}
|
|
130
121
|
|
|
@@ -213,30 +204,26 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
213
204
|
|
|
214
205
|
.emotion-10 {
|
|
215
206
|
margin: 0;
|
|
216
|
-
padding: 1px 0;
|
|
217
207
|
font-family: "Poppins",sans-serif;
|
|
218
208
|
font-size: 14px;
|
|
219
|
-
line-height:
|
|
209
|
+
line-height: 21px;
|
|
220
210
|
font-weight: 500;
|
|
221
|
-
letter-spacing:
|
|
211
|
+
letter-spacing: 0;
|
|
212
|
+
padding: 0.5px 0px;
|
|
222
213
|
display: inline-block;
|
|
223
214
|
display: block;
|
|
224
215
|
}
|
|
225
216
|
|
|
226
217
|
.emotion-10::before {
|
|
227
218
|
content: '';
|
|
219
|
+
margin-bottom: -0.403em;
|
|
228
220
|
display: block;
|
|
229
|
-
height: 0;
|
|
230
|
-
width: 0;
|
|
231
|
-
margin-bottom: -0.3955357142857143em;
|
|
232
221
|
}
|
|
233
222
|
|
|
234
223
|
.emotion-10::after {
|
|
235
224
|
content: '';
|
|
225
|
+
margin-top: -0.4em;
|
|
236
226
|
display: block;
|
|
237
|
-
height: 0;
|
|
238
|
-
width: 0;
|
|
239
|
-
margin-top: -0.3955357142857143em;
|
|
240
227
|
}
|
|
241
228
|
|
|
242
229
|
.emotion-12 {
|
|
@@ -503,7 +490,6 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
503
490
|
|
|
504
491
|
.emotion-27 {
|
|
505
492
|
margin: 0;
|
|
506
|
-
padding: 1px 0;
|
|
507
493
|
color: #0A0A0A;
|
|
508
494
|
}
|
|
509
495
|
|
|
@@ -515,25 +501,22 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
515
501
|
.emotion-27 {
|
|
516
502
|
font-family: "Bitter",serif;
|
|
517
503
|
font-size: 20px;
|
|
518
|
-
line-height:
|
|
504
|
+
line-height: 22.5px;
|
|
519
505
|
font-weight: 500;
|
|
520
|
-
letter-spacing:
|
|
506
|
+
letter-spacing: 0;
|
|
507
|
+
padding: 0.5px 0px;
|
|
521
508
|
}
|
|
522
509
|
|
|
523
510
|
.emotion-27::before {
|
|
524
511
|
content: '';
|
|
512
|
+
margin-bottom: -0.2055em;
|
|
525
513
|
display: block;
|
|
526
|
-
height: 0;
|
|
527
|
-
width: 0;
|
|
528
|
-
margin-bottom: -0.25em;
|
|
529
514
|
}
|
|
530
515
|
|
|
531
516
|
.emotion-27::after {
|
|
532
517
|
content: '';
|
|
518
|
+
margin-top: -0.2275em;
|
|
533
519
|
display: block;
|
|
534
|
-
height: 0;
|
|
535
|
-
width: 0;
|
|
536
|
-
margin-top: -0.3125em;
|
|
537
520
|
}
|
|
538
521
|
}
|
|
539
522
|
|
|
@@ -541,25 +524,22 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
541
524
|
.emotion-27 {
|
|
542
525
|
font-family: "Bitter",serif;
|
|
543
526
|
font-size: 22px;
|
|
544
|
-
line-height:
|
|
527
|
+
line-height: 24.75px;
|
|
545
528
|
font-weight: 500;
|
|
546
|
-
letter-spacing:
|
|
529
|
+
letter-spacing: 0;
|
|
530
|
+
padding: 0.5px 0px;
|
|
547
531
|
}
|
|
548
532
|
|
|
549
533
|
.emotion-27::before {
|
|
550
534
|
content: '';
|
|
535
|
+
margin-bottom: -0.2055em;
|
|
551
536
|
display: block;
|
|
552
|
-
height: 0;
|
|
553
|
-
width: 0;
|
|
554
|
-
margin-bottom: -0.19545454545454544em;
|
|
555
537
|
}
|
|
556
538
|
|
|
557
539
|
.emotion-27::after {
|
|
558
540
|
content: '';
|
|
541
|
+
margin-top: -0.2275em;
|
|
559
542
|
display: block;
|
|
560
|
-
height: 0;
|
|
561
|
-
width: 0;
|
|
562
|
-
margin-top: -0.25795454545454544em;
|
|
563
543
|
}
|
|
564
544
|
}
|
|
565
545
|
|
|
@@ -567,25 +547,22 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
567
547
|
.emotion-27 {
|
|
568
548
|
font-family: "Bitter",serif;
|
|
569
549
|
font-size: 24px;
|
|
570
|
-
line-height:
|
|
550
|
+
line-height: 27px;
|
|
571
551
|
font-weight: 500;
|
|
572
|
-
letter-spacing:
|
|
552
|
+
letter-spacing: 0;
|
|
553
|
+
padding: 0.5px 0px;
|
|
573
554
|
}
|
|
574
555
|
|
|
575
556
|
.emotion-27::before {
|
|
576
557
|
content: '';
|
|
558
|
+
margin-bottom: -0.2055em;
|
|
577
559
|
display: block;
|
|
578
|
-
height: 0;
|
|
579
|
-
width: 0;
|
|
580
|
-
margin-bottom: -0.2333333333333334em;
|
|
581
560
|
}
|
|
582
561
|
|
|
583
562
|
.emotion-27::after {
|
|
584
563
|
content: '';
|
|
564
|
+
margin-top: -0.2275em;
|
|
585
565
|
display: block;
|
|
586
|
-
height: 0;
|
|
587
|
-
width: 0;
|
|
588
|
-
margin-top: -0.2958333333333334em;
|
|
589
566
|
}
|
|
590
567
|
}
|
|
591
568
|
|
|
@@ -595,7 +572,6 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
595
572
|
|
|
596
573
|
.emotion-29 {
|
|
597
574
|
margin: 0;
|
|
598
|
-
padding: 1px 0;
|
|
599
575
|
color: #0A0A0A;
|
|
600
576
|
}
|
|
601
577
|
|
|
@@ -607,25 +583,22 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
607
583
|
.emotion-29 {
|
|
608
584
|
font-family: "DM Sans",sans-serif;
|
|
609
585
|
font-size: 14px;
|
|
610
|
-
line-height:
|
|
586
|
+
line-height: 21px;
|
|
611
587
|
font-weight: 400;
|
|
612
|
-
letter-spacing:
|
|
588
|
+
letter-spacing: 0;
|
|
589
|
+
padding: 0.5px 0px;
|
|
613
590
|
}
|
|
614
591
|
|
|
615
592
|
.emotion-29::before {
|
|
616
593
|
content: '';
|
|
594
|
+
margin-bottom: -0.391em;
|
|
617
595
|
display: block;
|
|
618
|
-
height: 0;
|
|
619
|
-
width: 0;
|
|
620
|
-
margin-bottom: -0.3955357142857143em;
|
|
621
596
|
}
|
|
622
597
|
|
|
623
598
|
.emotion-29::after {
|
|
624
599
|
content: '';
|
|
600
|
+
margin-top: -0.409em;
|
|
625
601
|
display: block;
|
|
626
|
-
height: 0;
|
|
627
|
-
width: 0;
|
|
628
|
-
margin-top: -0.3955357142857143em;
|
|
629
602
|
}
|
|
630
603
|
}
|
|
631
604
|
|
|
@@ -633,25 +606,22 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
633
606
|
.emotion-29 {
|
|
634
607
|
font-family: "DM Sans",sans-serif;
|
|
635
608
|
font-size: 16px;
|
|
636
|
-
line-height:
|
|
609
|
+
line-height: 24px;
|
|
637
610
|
font-weight: 400;
|
|
638
|
-
letter-spacing:
|
|
611
|
+
letter-spacing: 0;
|
|
612
|
+
padding: 0.5px 0px;
|
|
639
613
|
}
|
|
640
614
|
|
|
641
615
|
.emotion-29::before {
|
|
642
616
|
content: '';
|
|
617
|
+
margin-bottom: -0.391em;
|
|
643
618
|
display: block;
|
|
644
|
-
height: 0;
|
|
645
|
-
width: 0;
|
|
646
|
-
margin-bottom: -0.43125em;
|
|
647
619
|
}
|
|
648
620
|
|
|
649
621
|
.emotion-29::after {
|
|
650
622
|
content: '';
|
|
623
|
+
margin-top: -0.409em;
|
|
651
624
|
display: block;
|
|
652
|
-
height: 0;
|
|
653
|
-
width: 0;
|
|
654
|
-
margin-top: -0.43125em;
|
|
655
625
|
}
|
|
656
626
|
}
|
|
657
627
|
|
|
@@ -1022,35 +992,32 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1022
992
|
|
|
1023
993
|
.emotion-3 {
|
|
1024
994
|
margin-right: 16px;
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
995
|
+
-webkit-box-flex: 1;
|
|
996
|
+
-webkit-flex-grow: 1;
|
|
997
|
+
-ms-flex-positive: 1;
|
|
998
|
+
flex-grow: 1;
|
|
1029
999
|
}
|
|
1030
1000
|
|
|
1031
1001
|
@media screen and (max-width: 767px) {
|
|
1032
1002
|
.emotion-4 {
|
|
1033
1003
|
font-family: "Bitter",serif;
|
|
1034
1004
|
font-size: 28px;
|
|
1035
|
-
line-height:
|
|
1005
|
+
line-height: 31.5px;
|
|
1036
1006
|
font-weight: 500;
|
|
1037
|
-
letter-spacing:
|
|
1007
|
+
letter-spacing: 0;
|
|
1008
|
+
padding: 0.5px 0px;
|
|
1038
1009
|
}
|
|
1039
1010
|
|
|
1040
1011
|
.emotion-4::before {
|
|
1041
1012
|
content: '';
|
|
1013
|
+
margin-bottom: -0.2055em;
|
|
1042
1014
|
display: block;
|
|
1043
|
-
height: 0;
|
|
1044
|
-
width: 0;
|
|
1045
|
-
margin-bottom: -0.22142857142857142em;
|
|
1046
1015
|
}
|
|
1047
1016
|
|
|
1048
1017
|
.emotion-4::after {
|
|
1049
1018
|
content: '';
|
|
1019
|
+
margin-top: -0.2275em;
|
|
1050
1020
|
display: block;
|
|
1051
|
-
height: 0;
|
|
1052
|
-
width: 0;
|
|
1053
|
-
margin-top: -0.2839285714285714em;
|
|
1054
1021
|
}
|
|
1055
1022
|
}
|
|
1056
1023
|
|
|
@@ -1058,25 +1025,22 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1058
1025
|
.emotion-4 {
|
|
1059
1026
|
font-family: "Bitter",serif;
|
|
1060
1027
|
font-size: 32px;
|
|
1061
|
-
line-height:
|
|
1028
|
+
line-height: 36px;
|
|
1062
1029
|
font-weight: 500;
|
|
1063
|
-
letter-spacing:
|
|
1030
|
+
letter-spacing: 0;
|
|
1031
|
+
padding: 0.5px 0px;
|
|
1064
1032
|
}
|
|
1065
1033
|
|
|
1066
1034
|
.emotion-4::before {
|
|
1067
1035
|
content: '';
|
|
1036
|
+
margin-bottom: -0.2055em;
|
|
1068
1037
|
display: block;
|
|
1069
|
-
height: 0;
|
|
1070
|
-
width: 0;
|
|
1071
|
-
margin-bottom: -0.21250000000000002em;
|
|
1072
1038
|
}
|
|
1073
1039
|
|
|
1074
1040
|
.emotion-4::after {
|
|
1075
1041
|
content: '';
|
|
1042
|
+
margin-top: -0.2275em;
|
|
1076
1043
|
display: block;
|
|
1077
|
-
height: 0;
|
|
1078
|
-
width: 0;
|
|
1079
|
-
margin-top: -0.275em;
|
|
1080
1044
|
}
|
|
1081
1045
|
}
|
|
1082
1046
|
|
|
@@ -1084,25 +1048,22 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1084
1048
|
.emotion-4 {
|
|
1085
1049
|
font-family: "Bitter",serif;
|
|
1086
1050
|
font-size: 36px;
|
|
1087
|
-
line-height:
|
|
1051
|
+
line-height: 40.5px;
|
|
1088
1052
|
font-weight: 500;
|
|
1089
|
-
letter-spacing:
|
|
1053
|
+
letter-spacing: 0;
|
|
1054
|
+
padding: 0.5px 0px;
|
|
1090
1055
|
}
|
|
1091
1056
|
|
|
1092
1057
|
.emotion-4::before {
|
|
1093
1058
|
content: '';
|
|
1059
|
+
margin-bottom: -0.2055em;
|
|
1094
1060
|
display: block;
|
|
1095
|
-
height: 0;
|
|
1096
|
-
width: 0;
|
|
1097
|
-
margin-bottom: -0.2055555555555556em;
|
|
1098
1061
|
}
|
|
1099
1062
|
|
|
1100
1063
|
.emotion-4::after {
|
|
1101
1064
|
content: '';
|
|
1065
|
+
margin-top: -0.2275em;
|
|
1102
1066
|
display: block;
|
|
1103
|
-
height: 0;
|
|
1104
|
-
width: 0;
|
|
1105
|
-
margin-top: -0.2680555555555556em;
|
|
1106
1067
|
}
|
|
1107
1068
|
}
|
|
1108
1069
|
|
|
@@ -1191,30 +1152,26 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1191
1152
|
|
|
1192
1153
|
.emotion-10 {
|
|
1193
1154
|
margin: 0;
|
|
1194
|
-
padding: 1px 0;
|
|
1195
1155
|
font-family: "Poppins",sans-serif;
|
|
1196
1156
|
font-size: 14px;
|
|
1197
|
-
line-height:
|
|
1157
|
+
line-height: 21px;
|
|
1198
1158
|
font-weight: 500;
|
|
1199
|
-
letter-spacing:
|
|
1159
|
+
letter-spacing: 0;
|
|
1160
|
+
padding: 0.5px 0px;
|
|
1200
1161
|
display: inline-block;
|
|
1201
1162
|
display: block;
|
|
1202
1163
|
}
|
|
1203
1164
|
|
|
1204
1165
|
.emotion-10::before {
|
|
1205
1166
|
content: '';
|
|
1167
|
+
margin-bottom: -0.403em;
|
|
1206
1168
|
display: block;
|
|
1207
|
-
height: 0;
|
|
1208
|
-
width: 0;
|
|
1209
|
-
margin-bottom: -0.3955357142857143em;
|
|
1210
1169
|
}
|
|
1211
1170
|
|
|
1212
1171
|
.emotion-10::after {
|
|
1213
1172
|
content: '';
|
|
1173
|
+
margin-top: -0.4em;
|
|
1214
1174
|
display: block;
|
|
1215
|
-
height: 0;
|
|
1216
|
-
width: 0;
|
|
1217
|
-
margin-top: -0.3955357142857143em;
|
|
1218
1175
|
}
|
|
1219
1176
|
|
|
1220
1177
|
.emotion-12 {
|
|
@@ -1481,7 +1438,6 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1481
1438
|
|
|
1482
1439
|
.emotion-27 {
|
|
1483
1440
|
margin: 0;
|
|
1484
|
-
padding: 1px 0;
|
|
1485
1441
|
color: #0A0A0A;
|
|
1486
1442
|
}
|
|
1487
1443
|
|
|
@@ -1493,25 +1449,22 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1493
1449
|
.emotion-27 {
|
|
1494
1450
|
font-family: "Bitter",serif;
|
|
1495
1451
|
font-size: 20px;
|
|
1496
|
-
line-height:
|
|
1452
|
+
line-height: 22.5px;
|
|
1497
1453
|
font-weight: 500;
|
|
1498
|
-
letter-spacing:
|
|
1454
|
+
letter-spacing: 0;
|
|
1455
|
+
padding: 0.5px 0px;
|
|
1499
1456
|
}
|
|
1500
1457
|
|
|
1501
1458
|
.emotion-27::before {
|
|
1502
1459
|
content: '';
|
|
1460
|
+
margin-bottom: -0.2055em;
|
|
1503
1461
|
display: block;
|
|
1504
|
-
height: 0;
|
|
1505
|
-
width: 0;
|
|
1506
|
-
margin-bottom: -0.25em;
|
|
1507
1462
|
}
|
|
1508
1463
|
|
|
1509
1464
|
.emotion-27::after {
|
|
1510
1465
|
content: '';
|
|
1466
|
+
margin-top: -0.2275em;
|
|
1511
1467
|
display: block;
|
|
1512
|
-
height: 0;
|
|
1513
|
-
width: 0;
|
|
1514
|
-
margin-top: -0.3125em;
|
|
1515
1468
|
}
|
|
1516
1469
|
}
|
|
1517
1470
|
|
|
@@ -1519,25 +1472,22 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1519
1472
|
.emotion-27 {
|
|
1520
1473
|
font-family: "Bitter",serif;
|
|
1521
1474
|
font-size: 22px;
|
|
1522
|
-
line-height:
|
|
1475
|
+
line-height: 24.75px;
|
|
1523
1476
|
font-weight: 500;
|
|
1524
|
-
letter-spacing:
|
|
1477
|
+
letter-spacing: 0;
|
|
1478
|
+
padding: 0.5px 0px;
|
|
1525
1479
|
}
|
|
1526
1480
|
|
|
1527
1481
|
.emotion-27::before {
|
|
1528
1482
|
content: '';
|
|
1483
|
+
margin-bottom: -0.2055em;
|
|
1529
1484
|
display: block;
|
|
1530
|
-
height: 0;
|
|
1531
|
-
width: 0;
|
|
1532
|
-
margin-bottom: -0.19545454545454544em;
|
|
1533
1485
|
}
|
|
1534
1486
|
|
|
1535
1487
|
.emotion-27::after {
|
|
1536
1488
|
content: '';
|
|
1489
|
+
margin-top: -0.2275em;
|
|
1537
1490
|
display: block;
|
|
1538
|
-
height: 0;
|
|
1539
|
-
width: 0;
|
|
1540
|
-
margin-top: -0.25795454545454544em;
|
|
1541
1491
|
}
|
|
1542
1492
|
}
|
|
1543
1493
|
|
|
@@ -1545,25 +1495,22 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1545
1495
|
.emotion-27 {
|
|
1546
1496
|
font-family: "Bitter",serif;
|
|
1547
1497
|
font-size: 24px;
|
|
1548
|
-
line-height:
|
|
1498
|
+
line-height: 27px;
|
|
1549
1499
|
font-weight: 500;
|
|
1550
|
-
letter-spacing:
|
|
1500
|
+
letter-spacing: 0;
|
|
1501
|
+
padding: 0.5px 0px;
|
|
1551
1502
|
}
|
|
1552
1503
|
|
|
1553
1504
|
.emotion-27::before {
|
|
1554
1505
|
content: '';
|
|
1506
|
+
margin-bottom: -0.2055em;
|
|
1555
1507
|
display: block;
|
|
1556
|
-
height: 0;
|
|
1557
|
-
width: 0;
|
|
1558
|
-
margin-bottom: -0.2333333333333334em;
|
|
1559
1508
|
}
|
|
1560
1509
|
|
|
1561
1510
|
.emotion-27::after {
|
|
1562
1511
|
content: '';
|
|
1512
|
+
margin-top: -0.2275em;
|
|
1563
1513
|
display: block;
|
|
1564
|
-
height: 0;
|
|
1565
|
-
width: 0;
|
|
1566
|
-
margin-top: -0.2958333333333334em;
|
|
1567
1514
|
}
|
|
1568
1515
|
}
|
|
1569
1516
|
|
|
@@ -1573,7 +1520,6 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1573
1520
|
|
|
1574
1521
|
.emotion-29 {
|
|
1575
1522
|
margin: 0;
|
|
1576
|
-
padding: 1px 0;
|
|
1577
1523
|
color: #0A0A0A;
|
|
1578
1524
|
}
|
|
1579
1525
|
|
|
@@ -1585,25 +1531,22 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1585
1531
|
.emotion-29 {
|
|
1586
1532
|
font-family: "DM Sans",sans-serif;
|
|
1587
1533
|
font-size: 14px;
|
|
1588
|
-
line-height:
|
|
1534
|
+
line-height: 21px;
|
|
1589
1535
|
font-weight: 400;
|
|
1590
|
-
letter-spacing:
|
|
1536
|
+
letter-spacing: 0;
|
|
1537
|
+
padding: 0.5px 0px;
|
|
1591
1538
|
}
|
|
1592
1539
|
|
|
1593
1540
|
.emotion-29::before {
|
|
1594
1541
|
content: '';
|
|
1542
|
+
margin-bottom: -0.391em;
|
|
1595
1543
|
display: block;
|
|
1596
|
-
height: 0;
|
|
1597
|
-
width: 0;
|
|
1598
|
-
margin-bottom: -0.3955357142857143em;
|
|
1599
1544
|
}
|
|
1600
1545
|
|
|
1601
1546
|
.emotion-29::after {
|
|
1602
1547
|
content: '';
|
|
1548
|
+
margin-top: -0.409em;
|
|
1603
1549
|
display: block;
|
|
1604
|
-
height: 0;
|
|
1605
|
-
width: 0;
|
|
1606
|
-
margin-top: -0.3955357142857143em;
|
|
1607
1550
|
}
|
|
1608
1551
|
}
|
|
1609
1552
|
|
|
@@ -1611,25 +1554,22 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1611
1554
|
.emotion-29 {
|
|
1612
1555
|
font-family: "DM Sans",sans-serif;
|
|
1613
1556
|
font-size: 16px;
|
|
1614
|
-
line-height:
|
|
1557
|
+
line-height: 24px;
|
|
1615
1558
|
font-weight: 400;
|
|
1616
|
-
letter-spacing:
|
|
1559
|
+
letter-spacing: 0;
|
|
1560
|
+
padding: 0.5px 0px;
|
|
1617
1561
|
}
|
|
1618
1562
|
|
|
1619
1563
|
.emotion-29::before {
|
|
1620
1564
|
content: '';
|
|
1565
|
+
margin-bottom: -0.391em;
|
|
1621
1566
|
display: block;
|
|
1622
|
-
height: 0;
|
|
1623
|
-
width: 0;
|
|
1624
|
-
margin-bottom: -0.43125em;
|
|
1625
1567
|
}
|
|
1626
1568
|
|
|
1627
1569
|
.emotion-29::after {
|
|
1628
1570
|
content: '';
|
|
1571
|
+
margin-top: -0.409em;
|
|
1629
1572
|
display: block;
|
|
1630
|
-
height: 0;
|
|
1631
|
-
width: 0;
|
|
1632
|
-
margin-top: -0.43125em;
|
|
1633
1573
|
}
|
|
1634
1574
|
}
|
|
1635
1575
|
|
|
@@ -2000,35 +1940,32 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2000
1940
|
|
|
2001
1941
|
.emotion-3 {
|
|
2002
1942
|
margin-right: 16px;
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
1943
|
+
-webkit-box-flex: 1;
|
|
1944
|
+
-webkit-flex-grow: 1;
|
|
1945
|
+
-ms-flex-positive: 1;
|
|
1946
|
+
flex-grow: 1;
|
|
2007
1947
|
}
|
|
2008
1948
|
|
|
2009
1949
|
@media screen and (max-width: 767px) {
|
|
2010
1950
|
.emotion-4 {
|
|
2011
1951
|
font-family: "Bitter",serif;
|
|
2012
1952
|
font-size: 28px;
|
|
2013
|
-
line-height:
|
|
1953
|
+
line-height: 31.5px;
|
|
2014
1954
|
font-weight: 500;
|
|
2015
|
-
letter-spacing:
|
|
1955
|
+
letter-spacing: 0;
|
|
1956
|
+
padding: 0.5px 0px;
|
|
2016
1957
|
}
|
|
2017
1958
|
|
|
2018
1959
|
.emotion-4::before {
|
|
2019
1960
|
content: '';
|
|
1961
|
+
margin-bottom: -0.2055em;
|
|
2020
1962
|
display: block;
|
|
2021
|
-
height: 0;
|
|
2022
|
-
width: 0;
|
|
2023
|
-
margin-bottom: -0.22142857142857142em;
|
|
2024
1963
|
}
|
|
2025
1964
|
|
|
2026
1965
|
.emotion-4::after {
|
|
2027
1966
|
content: '';
|
|
1967
|
+
margin-top: -0.2275em;
|
|
2028
1968
|
display: block;
|
|
2029
|
-
height: 0;
|
|
2030
|
-
width: 0;
|
|
2031
|
-
margin-top: -0.2839285714285714em;
|
|
2032
1969
|
}
|
|
2033
1970
|
}
|
|
2034
1971
|
|
|
@@ -2036,25 +1973,22 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2036
1973
|
.emotion-4 {
|
|
2037
1974
|
font-family: "Bitter",serif;
|
|
2038
1975
|
font-size: 32px;
|
|
2039
|
-
line-height:
|
|
1976
|
+
line-height: 36px;
|
|
2040
1977
|
font-weight: 500;
|
|
2041
|
-
letter-spacing:
|
|
1978
|
+
letter-spacing: 0;
|
|
1979
|
+
padding: 0.5px 0px;
|
|
2042
1980
|
}
|
|
2043
1981
|
|
|
2044
1982
|
.emotion-4::before {
|
|
2045
1983
|
content: '';
|
|
1984
|
+
margin-bottom: -0.2055em;
|
|
2046
1985
|
display: block;
|
|
2047
|
-
height: 0;
|
|
2048
|
-
width: 0;
|
|
2049
|
-
margin-bottom: -0.21250000000000002em;
|
|
2050
1986
|
}
|
|
2051
1987
|
|
|
2052
1988
|
.emotion-4::after {
|
|
2053
1989
|
content: '';
|
|
1990
|
+
margin-top: -0.2275em;
|
|
2054
1991
|
display: block;
|
|
2055
|
-
height: 0;
|
|
2056
|
-
width: 0;
|
|
2057
|
-
margin-top: -0.275em;
|
|
2058
1992
|
}
|
|
2059
1993
|
}
|
|
2060
1994
|
|
|
@@ -2062,25 +1996,22 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2062
1996
|
.emotion-4 {
|
|
2063
1997
|
font-family: "Bitter",serif;
|
|
2064
1998
|
font-size: 36px;
|
|
2065
|
-
line-height:
|
|
1999
|
+
line-height: 40.5px;
|
|
2066
2000
|
font-weight: 500;
|
|
2067
|
-
letter-spacing:
|
|
2001
|
+
letter-spacing: 0;
|
|
2002
|
+
padding: 0.5px 0px;
|
|
2068
2003
|
}
|
|
2069
2004
|
|
|
2070
2005
|
.emotion-4::before {
|
|
2071
2006
|
content: '';
|
|
2007
|
+
margin-bottom: -0.2055em;
|
|
2072
2008
|
display: block;
|
|
2073
|
-
height: 0;
|
|
2074
|
-
width: 0;
|
|
2075
|
-
margin-bottom: -0.2055555555555556em;
|
|
2076
2009
|
}
|
|
2077
2010
|
|
|
2078
2011
|
.emotion-4::after {
|
|
2079
2012
|
content: '';
|
|
2013
|
+
margin-top: -0.2275em;
|
|
2080
2014
|
display: block;
|
|
2081
|
-
height: 0;
|
|
2082
|
-
width: 0;
|
|
2083
|
-
margin-top: -0.2680555555555556em;
|
|
2084
2015
|
}
|
|
2085
2016
|
}
|
|
2086
2017
|
|
|
@@ -2169,30 +2100,26 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2169
2100
|
|
|
2170
2101
|
.emotion-10 {
|
|
2171
2102
|
margin: 0;
|
|
2172
|
-
padding: 1px 0;
|
|
2173
2103
|
font-family: "Poppins",sans-serif;
|
|
2174
2104
|
font-size: 14px;
|
|
2175
|
-
line-height:
|
|
2105
|
+
line-height: 21px;
|
|
2176
2106
|
font-weight: 500;
|
|
2177
|
-
letter-spacing:
|
|
2107
|
+
letter-spacing: 0;
|
|
2108
|
+
padding: 0.5px 0px;
|
|
2178
2109
|
display: inline-block;
|
|
2179
2110
|
display: block;
|
|
2180
2111
|
}
|
|
2181
2112
|
|
|
2182
2113
|
.emotion-10::before {
|
|
2183
2114
|
content: '';
|
|
2115
|
+
margin-bottom: -0.403em;
|
|
2184
2116
|
display: block;
|
|
2185
|
-
height: 0;
|
|
2186
|
-
width: 0;
|
|
2187
|
-
margin-bottom: -0.3955357142857143em;
|
|
2188
2117
|
}
|
|
2189
2118
|
|
|
2190
2119
|
.emotion-10::after {
|
|
2191
2120
|
content: '';
|
|
2121
|
+
margin-top: -0.4em;
|
|
2192
2122
|
display: block;
|
|
2193
|
-
height: 0;
|
|
2194
|
-
width: 0;
|
|
2195
|
-
margin-top: -0.3955357142857143em;
|
|
2196
2123
|
}
|
|
2197
2124
|
|
|
2198
2125
|
.emotion-12 {
|
|
@@ -2459,7 +2386,6 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2459
2386
|
|
|
2460
2387
|
.emotion-27 {
|
|
2461
2388
|
margin: 0;
|
|
2462
|
-
padding: 1px 0;
|
|
2463
2389
|
color: #0A0A0A;
|
|
2464
2390
|
}
|
|
2465
2391
|
|
|
@@ -2471,25 +2397,22 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2471
2397
|
.emotion-27 {
|
|
2472
2398
|
font-family: "Bitter",serif;
|
|
2473
2399
|
font-size: 20px;
|
|
2474
|
-
line-height:
|
|
2400
|
+
line-height: 22.5px;
|
|
2475
2401
|
font-weight: 500;
|
|
2476
|
-
letter-spacing:
|
|
2402
|
+
letter-spacing: 0;
|
|
2403
|
+
padding: 0.5px 0px;
|
|
2477
2404
|
}
|
|
2478
2405
|
|
|
2479
2406
|
.emotion-27::before {
|
|
2480
2407
|
content: '';
|
|
2408
|
+
margin-bottom: -0.2055em;
|
|
2481
2409
|
display: block;
|
|
2482
|
-
height: 0;
|
|
2483
|
-
width: 0;
|
|
2484
|
-
margin-bottom: -0.25em;
|
|
2485
2410
|
}
|
|
2486
2411
|
|
|
2487
2412
|
.emotion-27::after {
|
|
2488
2413
|
content: '';
|
|
2414
|
+
margin-top: -0.2275em;
|
|
2489
2415
|
display: block;
|
|
2490
|
-
height: 0;
|
|
2491
|
-
width: 0;
|
|
2492
|
-
margin-top: -0.3125em;
|
|
2493
2416
|
}
|
|
2494
2417
|
}
|
|
2495
2418
|
|
|
@@ -2497,25 +2420,22 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2497
2420
|
.emotion-27 {
|
|
2498
2421
|
font-family: "Bitter",serif;
|
|
2499
2422
|
font-size: 22px;
|
|
2500
|
-
line-height:
|
|
2423
|
+
line-height: 24.75px;
|
|
2501
2424
|
font-weight: 500;
|
|
2502
|
-
letter-spacing:
|
|
2425
|
+
letter-spacing: 0;
|
|
2426
|
+
padding: 0.5px 0px;
|
|
2503
2427
|
}
|
|
2504
2428
|
|
|
2505
2429
|
.emotion-27::before {
|
|
2506
2430
|
content: '';
|
|
2431
|
+
margin-bottom: -0.2055em;
|
|
2507
2432
|
display: block;
|
|
2508
|
-
height: 0;
|
|
2509
|
-
width: 0;
|
|
2510
|
-
margin-bottom: -0.19545454545454544em;
|
|
2511
2433
|
}
|
|
2512
2434
|
|
|
2513
2435
|
.emotion-27::after {
|
|
2514
2436
|
content: '';
|
|
2437
|
+
margin-top: -0.2275em;
|
|
2515
2438
|
display: block;
|
|
2516
|
-
height: 0;
|
|
2517
|
-
width: 0;
|
|
2518
|
-
margin-top: -0.25795454545454544em;
|
|
2519
2439
|
}
|
|
2520
2440
|
}
|
|
2521
2441
|
|
|
@@ -2523,25 +2443,22 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2523
2443
|
.emotion-27 {
|
|
2524
2444
|
font-family: "Bitter",serif;
|
|
2525
2445
|
font-size: 24px;
|
|
2526
|
-
line-height:
|
|
2446
|
+
line-height: 27px;
|
|
2527
2447
|
font-weight: 500;
|
|
2528
|
-
letter-spacing:
|
|
2448
|
+
letter-spacing: 0;
|
|
2449
|
+
padding: 0.5px 0px;
|
|
2529
2450
|
}
|
|
2530
2451
|
|
|
2531
2452
|
.emotion-27::before {
|
|
2532
2453
|
content: '';
|
|
2454
|
+
margin-bottom: -0.2055em;
|
|
2533
2455
|
display: block;
|
|
2534
|
-
height: 0;
|
|
2535
|
-
width: 0;
|
|
2536
|
-
margin-bottom: -0.2333333333333334em;
|
|
2537
2456
|
}
|
|
2538
2457
|
|
|
2539
2458
|
.emotion-27::after {
|
|
2540
2459
|
content: '';
|
|
2460
|
+
margin-top: -0.2275em;
|
|
2541
2461
|
display: block;
|
|
2542
|
-
height: 0;
|
|
2543
|
-
width: 0;
|
|
2544
|
-
margin-top: -0.2958333333333334em;
|
|
2545
2462
|
}
|
|
2546
2463
|
}
|
|
2547
2464
|
|
|
@@ -2551,7 +2468,6 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2551
2468
|
|
|
2552
2469
|
.emotion-29 {
|
|
2553
2470
|
margin: 0;
|
|
2554
|
-
padding: 1px 0;
|
|
2555
2471
|
color: #0A0A0A;
|
|
2556
2472
|
}
|
|
2557
2473
|
|
|
@@ -2563,25 +2479,22 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2563
2479
|
.emotion-29 {
|
|
2564
2480
|
font-family: "DM Sans",sans-serif;
|
|
2565
2481
|
font-size: 14px;
|
|
2566
|
-
line-height:
|
|
2482
|
+
line-height: 21px;
|
|
2567
2483
|
font-weight: 400;
|
|
2568
|
-
letter-spacing:
|
|
2484
|
+
letter-spacing: 0;
|
|
2485
|
+
padding: 0.5px 0px;
|
|
2569
2486
|
}
|
|
2570
2487
|
|
|
2571
2488
|
.emotion-29::before {
|
|
2572
2489
|
content: '';
|
|
2490
|
+
margin-bottom: -0.391em;
|
|
2573
2491
|
display: block;
|
|
2574
|
-
height: 0;
|
|
2575
|
-
width: 0;
|
|
2576
|
-
margin-bottom: -0.3955357142857143em;
|
|
2577
2492
|
}
|
|
2578
2493
|
|
|
2579
2494
|
.emotion-29::after {
|
|
2580
2495
|
content: '';
|
|
2496
|
+
margin-top: -0.409em;
|
|
2581
2497
|
display: block;
|
|
2582
|
-
height: 0;
|
|
2583
|
-
width: 0;
|
|
2584
|
-
margin-top: -0.3955357142857143em;
|
|
2585
2498
|
}
|
|
2586
2499
|
}
|
|
2587
2500
|
|
|
@@ -2589,25 +2502,22 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2589
2502
|
.emotion-29 {
|
|
2590
2503
|
font-family: "DM Sans",sans-serif;
|
|
2591
2504
|
font-size: 16px;
|
|
2592
|
-
line-height:
|
|
2505
|
+
line-height: 24px;
|
|
2593
2506
|
font-weight: 400;
|
|
2594
|
-
letter-spacing:
|
|
2507
|
+
letter-spacing: 0;
|
|
2508
|
+
padding: 0.5px 0px;
|
|
2595
2509
|
}
|
|
2596
2510
|
|
|
2597
2511
|
.emotion-29::before {
|
|
2598
2512
|
content: '';
|
|
2513
|
+
margin-bottom: -0.391em;
|
|
2599
2514
|
display: block;
|
|
2600
|
-
height: 0;
|
|
2601
|
-
width: 0;
|
|
2602
|
-
margin-bottom: -0.43125em;
|
|
2603
2515
|
}
|
|
2604
2516
|
|
|
2605
2517
|
.emotion-29::after {
|
|
2606
2518
|
content: '';
|
|
2519
|
+
margin-top: -0.409em;
|
|
2607
2520
|
display: block;
|
|
2608
|
-
height: 0;
|
|
2609
|
-
width: 0;
|
|
2610
|
-
margin-top: -0.43125em;
|
|
2611
2521
|
}
|
|
2612
2522
|
}
|
|
2613
2523
|
|
|
@@ -2994,35 +2904,32 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
2994
2904
|
|
|
2995
2905
|
.emotion-5 {
|
|
2996
2906
|
margin-right: 16px;
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
2907
|
+
-webkit-box-flex: 1;
|
|
2908
|
+
-webkit-flex-grow: 1;
|
|
2909
|
+
-ms-flex-positive: 1;
|
|
2910
|
+
flex-grow: 1;
|
|
3001
2911
|
}
|
|
3002
2912
|
|
|
3003
2913
|
@media screen and (max-width: 767px) {
|
|
3004
2914
|
.emotion-6 {
|
|
3005
2915
|
font-family: "Bitter",serif;
|
|
3006
2916
|
font-size: 28px;
|
|
3007
|
-
line-height:
|
|
2917
|
+
line-height: 31.5px;
|
|
3008
2918
|
font-weight: 500;
|
|
3009
|
-
letter-spacing:
|
|
2919
|
+
letter-spacing: 0;
|
|
2920
|
+
padding: 0.5px 0px;
|
|
3010
2921
|
}
|
|
3011
2922
|
|
|
3012
2923
|
.emotion-6::before {
|
|
3013
2924
|
content: '';
|
|
2925
|
+
margin-bottom: -0.2055em;
|
|
3014
2926
|
display: block;
|
|
3015
|
-
height: 0;
|
|
3016
|
-
width: 0;
|
|
3017
|
-
margin-bottom: -0.22142857142857142em;
|
|
3018
2927
|
}
|
|
3019
2928
|
|
|
3020
2929
|
.emotion-6::after {
|
|
3021
2930
|
content: '';
|
|
2931
|
+
margin-top: -0.2275em;
|
|
3022
2932
|
display: block;
|
|
3023
|
-
height: 0;
|
|
3024
|
-
width: 0;
|
|
3025
|
-
margin-top: -0.2839285714285714em;
|
|
3026
2933
|
}
|
|
3027
2934
|
}
|
|
3028
2935
|
|
|
@@ -3030,25 +2937,22 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3030
2937
|
.emotion-6 {
|
|
3031
2938
|
font-family: "Bitter",serif;
|
|
3032
2939
|
font-size: 32px;
|
|
3033
|
-
line-height:
|
|
2940
|
+
line-height: 36px;
|
|
3034
2941
|
font-weight: 500;
|
|
3035
|
-
letter-spacing:
|
|
2942
|
+
letter-spacing: 0;
|
|
2943
|
+
padding: 0.5px 0px;
|
|
3036
2944
|
}
|
|
3037
2945
|
|
|
3038
2946
|
.emotion-6::before {
|
|
3039
2947
|
content: '';
|
|
2948
|
+
margin-bottom: -0.2055em;
|
|
3040
2949
|
display: block;
|
|
3041
|
-
height: 0;
|
|
3042
|
-
width: 0;
|
|
3043
|
-
margin-bottom: -0.21250000000000002em;
|
|
3044
2950
|
}
|
|
3045
2951
|
|
|
3046
2952
|
.emotion-6::after {
|
|
3047
2953
|
content: '';
|
|
2954
|
+
margin-top: -0.2275em;
|
|
3048
2955
|
display: block;
|
|
3049
|
-
height: 0;
|
|
3050
|
-
width: 0;
|
|
3051
|
-
margin-top: -0.275em;
|
|
3052
2956
|
}
|
|
3053
2957
|
}
|
|
3054
2958
|
|
|
@@ -3056,25 +2960,22 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3056
2960
|
.emotion-6 {
|
|
3057
2961
|
font-family: "Bitter",serif;
|
|
3058
2962
|
font-size: 36px;
|
|
3059
|
-
line-height:
|
|
2963
|
+
line-height: 40.5px;
|
|
3060
2964
|
font-weight: 500;
|
|
3061
|
-
letter-spacing:
|
|
2965
|
+
letter-spacing: 0;
|
|
2966
|
+
padding: 0.5px 0px;
|
|
3062
2967
|
}
|
|
3063
2968
|
|
|
3064
2969
|
.emotion-6::before {
|
|
3065
2970
|
content: '';
|
|
2971
|
+
margin-bottom: -0.2055em;
|
|
3066
2972
|
display: block;
|
|
3067
|
-
height: 0;
|
|
3068
|
-
width: 0;
|
|
3069
|
-
margin-bottom: -0.2055555555555556em;
|
|
3070
2973
|
}
|
|
3071
2974
|
|
|
3072
2975
|
.emotion-6::after {
|
|
3073
2976
|
content: '';
|
|
2977
|
+
margin-top: -0.2275em;
|
|
3074
2978
|
display: block;
|
|
3075
|
-
height: 0;
|
|
3076
|
-
width: 0;
|
|
3077
|
-
margin-top: -0.2680555555555556em;
|
|
3078
2979
|
}
|
|
3079
2980
|
}
|
|
3080
2981
|
|
|
@@ -3163,30 +3064,26 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3163
3064
|
|
|
3164
3065
|
.emotion-12 {
|
|
3165
3066
|
margin: 0;
|
|
3166
|
-
padding: 1px 0;
|
|
3167
3067
|
font-family: "Poppins",sans-serif;
|
|
3168
3068
|
font-size: 14px;
|
|
3169
|
-
line-height:
|
|
3069
|
+
line-height: 21px;
|
|
3170
3070
|
font-weight: 500;
|
|
3171
|
-
letter-spacing:
|
|
3071
|
+
letter-spacing: 0;
|
|
3072
|
+
padding: 0.5px 0px;
|
|
3172
3073
|
display: inline-block;
|
|
3173
3074
|
display: block;
|
|
3174
3075
|
}
|
|
3175
3076
|
|
|
3176
3077
|
.emotion-12::before {
|
|
3177
3078
|
content: '';
|
|
3079
|
+
margin-bottom: -0.403em;
|
|
3178
3080
|
display: block;
|
|
3179
|
-
height: 0;
|
|
3180
|
-
width: 0;
|
|
3181
|
-
margin-bottom: -0.3955357142857143em;
|
|
3182
3081
|
}
|
|
3183
3082
|
|
|
3184
3083
|
.emotion-12::after {
|
|
3185
3084
|
content: '';
|
|
3085
|
+
margin-top: -0.4em;
|
|
3186
3086
|
display: block;
|
|
3187
|
-
height: 0;
|
|
3188
|
-
width: 0;
|
|
3189
|
-
margin-top: -0.3955357142857143em;
|
|
3190
3087
|
}
|
|
3191
3088
|
|
|
3192
3089
|
.emotion-14 {
|
|
@@ -3453,7 +3350,6 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3453
3350
|
|
|
3454
3351
|
.emotion-29 {
|
|
3455
3352
|
margin: 0;
|
|
3456
|
-
padding: 1px 0;
|
|
3457
3353
|
color: #0A0A0A;
|
|
3458
3354
|
}
|
|
3459
3355
|
|
|
@@ -3465,25 +3361,22 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3465
3361
|
.emotion-29 {
|
|
3466
3362
|
font-family: "Bitter",serif;
|
|
3467
3363
|
font-size: 20px;
|
|
3468
|
-
line-height:
|
|
3364
|
+
line-height: 22.5px;
|
|
3469
3365
|
font-weight: 500;
|
|
3470
|
-
letter-spacing:
|
|
3366
|
+
letter-spacing: 0;
|
|
3367
|
+
padding: 0.5px 0px;
|
|
3471
3368
|
}
|
|
3472
3369
|
|
|
3473
3370
|
.emotion-29::before {
|
|
3474
3371
|
content: '';
|
|
3372
|
+
margin-bottom: -0.2055em;
|
|
3475
3373
|
display: block;
|
|
3476
|
-
height: 0;
|
|
3477
|
-
width: 0;
|
|
3478
|
-
margin-bottom: -0.25em;
|
|
3479
3374
|
}
|
|
3480
3375
|
|
|
3481
3376
|
.emotion-29::after {
|
|
3482
3377
|
content: '';
|
|
3378
|
+
margin-top: -0.2275em;
|
|
3483
3379
|
display: block;
|
|
3484
|
-
height: 0;
|
|
3485
|
-
width: 0;
|
|
3486
|
-
margin-top: -0.3125em;
|
|
3487
3380
|
}
|
|
3488
3381
|
}
|
|
3489
3382
|
|
|
@@ -3491,25 +3384,22 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3491
3384
|
.emotion-29 {
|
|
3492
3385
|
font-family: "Bitter",serif;
|
|
3493
3386
|
font-size: 22px;
|
|
3494
|
-
line-height:
|
|
3387
|
+
line-height: 24.75px;
|
|
3495
3388
|
font-weight: 500;
|
|
3496
|
-
letter-spacing:
|
|
3389
|
+
letter-spacing: 0;
|
|
3390
|
+
padding: 0.5px 0px;
|
|
3497
3391
|
}
|
|
3498
3392
|
|
|
3499
3393
|
.emotion-29::before {
|
|
3500
3394
|
content: '';
|
|
3395
|
+
margin-bottom: -0.2055em;
|
|
3501
3396
|
display: block;
|
|
3502
|
-
height: 0;
|
|
3503
|
-
width: 0;
|
|
3504
|
-
margin-bottom: -0.19545454545454544em;
|
|
3505
3397
|
}
|
|
3506
3398
|
|
|
3507
3399
|
.emotion-29::after {
|
|
3508
3400
|
content: '';
|
|
3401
|
+
margin-top: -0.2275em;
|
|
3509
3402
|
display: block;
|
|
3510
|
-
height: 0;
|
|
3511
|
-
width: 0;
|
|
3512
|
-
margin-top: -0.25795454545454544em;
|
|
3513
3403
|
}
|
|
3514
3404
|
}
|
|
3515
3405
|
|
|
@@ -3517,25 +3407,22 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3517
3407
|
.emotion-29 {
|
|
3518
3408
|
font-family: "Bitter",serif;
|
|
3519
3409
|
font-size: 24px;
|
|
3520
|
-
line-height:
|
|
3410
|
+
line-height: 27px;
|
|
3521
3411
|
font-weight: 500;
|
|
3522
|
-
letter-spacing:
|
|
3412
|
+
letter-spacing: 0;
|
|
3413
|
+
padding: 0.5px 0px;
|
|
3523
3414
|
}
|
|
3524
3415
|
|
|
3525
3416
|
.emotion-29::before {
|
|
3526
3417
|
content: '';
|
|
3418
|
+
margin-bottom: -0.2055em;
|
|
3527
3419
|
display: block;
|
|
3528
|
-
height: 0;
|
|
3529
|
-
width: 0;
|
|
3530
|
-
margin-bottom: -0.2333333333333334em;
|
|
3531
3420
|
}
|
|
3532
3421
|
|
|
3533
3422
|
.emotion-29::after {
|
|
3534
3423
|
content: '';
|
|
3424
|
+
margin-top: -0.2275em;
|
|
3535
3425
|
display: block;
|
|
3536
|
-
height: 0;
|
|
3537
|
-
width: 0;
|
|
3538
|
-
margin-top: -0.2958333333333334em;
|
|
3539
3426
|
}
|
|
3540
3427
|
}
|
|
3541
3428
|
|
|
@@ -3545,7 +3432,6 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3545
3432
|
|
|
3546
3433
|
.emotion-31 {
|
|
3547
3434
|
margin: 0;
|
|
3548
|
-
padding: 1px 0;
|
|
3549
3435
|
color: #0A0A0A;
|
|
3550
3436
|
}
|
|
3551
3437
|
|
|
@@ -3557,25 +3443,22 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3557
3443
|
.emotion-31 {
|
|
3558
3444
|
font-family: "DM Sans",sans-serif;
|
|
3559
3445
|
font-size: 14px;
|
|
3560
|
-
line-height:
|
|
3446
|
+
line-height: 21px;
|
|
3561
3447
|
font-weight: 400;
|
|
3562
|
-
letter-spacing:
|
|
3448
|
+
letter-spacing: 0;
|
|
3449
|
+
padding: 0.5px 0px;
|
|
3563
3450
|
}
|
|
3564
3451
|
|
|
3565
3452
|
.emotion-31::before {
|
|
3566
3453
|
content: '';
|
|
3454
|
+
margin-bottom: -0.391em;
|
|
3567
3455
|
display: block;
|
|
3568
|
-
height: 0;
|
|
3569
|
-
width: 0;
|
|
3570
|
-
margin-bottom: -0.3955357142857143em;
|
|
3571
3456
|
}
|
|
3572
3457
|
|
|
3573
3458
|
.emotion-31::after {
|
|
3574
3459
|
content: '';
|
|
3460
|
+
margin-top: -0.409em;
|
|
3575
3461
|
display: block;
|
|
3576
|
-
height: 0;
|
|
3577
|
-
width: 0;
|
|
3578
|
-
margin-top: -0.3955357142857143em;
|
|
3579
3462
|
}
|
|
3580
3463
|
}
|
|
3581
3464
|
|
|
@@ -3583,25 +3466,22 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3583
3466
|
.emotion-31 {
|
|
3584
3467
|
font-family: "DM Sans",sans-serif;
|
|
3585
3468
|
font-size: 16px;
|
|
3586
|
-
line-height:
|
|
3469
|
+
line-height: 24px;
|
|
3587
3470
|
font-weight: 400;
|
|
3588
|
-
letter-spacing:
|
|
3471
|
+
letter-spacing: 0;
|
|
3472
|
+
padding: 0.5px 0px;
|
|
3589
3473
|
}
|
|
3590
3474
|
|
|
3591
3475
|
.emotion-31::before {
|
|
3592
3476
|
content: '';
|
|
3477
|
+
margin-bottom: -0.391em;
|
|
3593
3478
|
display: block;
|
|
3594
|
-
height: 0;
|
|
3595
|
-
width: 0;
|
|
3596
|
-
margin-bottom: -0.43125em;
|
|
3597
3479
|
}
|
|
3598
3480
|
|
|
3599
3481
|
.emotion-31::after {
|
|
3600
3482
|
content: '';
|
|
3483
|
+
margin-top: -0.409em;
|
|
3601
3484
|
display: block;
|
|
3602
|
-
height: 0;
|
|
3603
|
-
width: 0;
|
|
3604
|
-
margin-top: -0.43125em;
|
|
3605
3485
|
}
|
|
3606
3486
|
}
|
|
3607
3487
|
|
|
@@ -4180,7 +4060,6 @@ exports[`SectionRow SectionRow without title 1`] = `
|
|
|
4180
4060
|
|
|
4181
4061
|
.emotion-14 {
|
|
4182
4062
|
margin: 0;
|
|
4183
|
-
padding: 1px 0;
|
|
4184
4063
|
color: #0A0A0A;
|
|
4185
4064
|
}
|
|
4186
4065
|
|
|
@@ -4192,25 +4071,22 @@ exports[`SectionRow SectionRow without title 1`] = `
|
|
|
4192
4071
|
.emotion-14 {
|
|
4193
4072
|
font-family: "Bitter",serif;
|
|
4194
4073
|
font-size: 20px;
|
|
4195
|
-
line-height:
|
|
4074
|
+
line-height: 22.5px;
|
|
4196
4075
|
font-weight: 500;
|
|
4197
|
-
letter-spacing:
|
|
4076
|
+
letter-spacing: 0;
|
|
4077
|
+
padding: 0.5px 0px;
|
|
4198
4078
|
}
|
|
4199
4079
|
|
|
4200
4080
|
.emotion-14::before {
|
|
4201
4081
|
content: '';
|
|
4082
|
+
margin-bottom: -0.2055em;
|
|
4202
4083
|
display: block;
|
|
4203
|
-
height: 0;
|
|
4204
|
-
width: 0;
|
|
4205
|
-
margin-bottom: -0.25em;
|
|
4206
4084
|
}
|
|
4207
4085
|
|
|
4208
4086
|
.emotion-14::after {
|
|
4209
4087
|
content: '';
|
|
4088
|
+
margin-top: -0.2275em;
|
|
4210
4089
|
display: block;
|
|
4211
|
-
height: 0;
|
|
4212
|
-
width: 0;
|
|
4213
|
-
margin-top: -0.3125em;
|
|
4214
4090
|
}
|
|
4215
4091
|
}
|
|
4216
4092
|
|
|
@@ -4218,25 +4094,22 @@ exports[`SectionRow SectionRow without title 1`] = `
|
|
|
4218
4094
|
.emotion-14 {
|
|
4219
4095
|
font-family: "Bitter",serif;
|
|
4220
4096
|
font-size: 22px;
|
|
4221
|
-
line-height:
|
|
4097
|
+
line-height: 24.75px;
|
|
4222
4098
|
font-weight: 500;
|
|
4223
|
-
letter-spacing:
|
|
4099
|
+
letter-spacing: 0;
|
|
4100
|
+
padding: 0.5px 0px;
|
|
4224
4101
|
}
|
|
4225
4102
|
|
|
4226
4103
|
.emotion-14::before {
|
|
4227
4104
|
content: '';
|
|
4105
|
+
margin-bottom: -0.2055em;
|
|
4228
4106
|
display: block;
|
|
4229
|
-
height: 0;
|
|
4230
|
-
width: 0;
|
|
4231
|
-
margin-bottom: -0.19545454545454544em;
|
|
4232
4107
|
}
|
|
4233
4108
|
|
|
4234
4109
|
.emotion-14::after {
|
|
4235
4110
|
content: '';
|
|
4111
|
+
margin-top: -0.2275em;
|
|
4236
4112
|
display: block;
|
|
4237
|
-
height: 0;
|
|
4238
|
-
width: 0;
|
|
4239
|
-
margin-top: -0.25795454545454544em;
|
|
4240
4113
|
}
|
|
4241
4114
|
}
|
|
4242
4115
|
|
|
@@ -4244,25 +4117,22 @@ exports[`SectionRow SectionRow without title 1`] = `
|
|
|
4244
4117
|
.emotion-14 {
|
|
4245
4118
|
font-family: "Bitter",serif;
|
|
4246
4119
|
font-size: 24px;
|
|
4247
|
-
line-height:
|
|
4120
|
+
line-height: 27px;
|
|
4248
4121
|
font-weight: 500;
|
|
4249
|
-
letter-spacing:
|
|
4122
|
+
letter-spacing: 0;
|
|
4123
|
+
padding: 0.5px 0px;
|
|
4250
4124
|
}
|
|
4251
4125
|
|
|
4252
4126
|
.emotion-14::before {
|
|
4253
4127
|
content: '';
|
|
4128
|
+
margin-bottom: -0.2055em;
|
|
4254
4129
|
display: block;
|
|
4255
|
-
height: 0;
|
|
4256
|
-
width: 0;
|
|
4257
|
-
margin-bottom: -0.2333333333333334em;
|
|
4258
4130
|
}
|
|
4259
4131
|
|
|
4260
4132
|
.emotion-14::after {
|
|
4261
4133
|
content: '';
|
|
4134
|
+
margin-top: -0.2275em;
|
|
4262
4135
|
display: block;
|
|
4263
|
-
height: 0;
|
|
4264
|
-
width: 0;
|
|
4265
|
-
margin-top: -0.2958333333333334em;
|
|
4266
4136
|
}
|
|
4267
4137
|
}
|
|
4268
4138
|
|
|
@@ -4272,7 +4142,6 @@ exports[`SectionRow SectionRow without title 1`] = `
|
|
|
4272
4142
|
|
|
4273
4143
|
.emotion-16 {
|
|
4274
4144
|
margin: 0;
|
|
4275
|
-
padding: 1px 0;
|
|
4276
4145
|
color: #0A0A0A;
|
|
4277
4146
|
}
|
|
4278
4147
|
|
|
@@ -4284,25 +4153,22 @@ exports[`SectionRow SectionRow without title 1`] = `
|
|
|
4284
4153
|
.emotion-16 {
|
|
4285
4154
|
font-family: "DM Sans",sans-serif;
|
|
4286
4155
|
font-size: 14px;
|
|
4287
|
-
line-height:
|
|
4156
|
+
line-height: 21px;
|
|
4288
4157
|
font-weight: 400;
|
|
4289
|
-
letter-spacing:
|
|
4158
|
+
letter-spacing: 0;
|
|
4159
|
+
padding: 0.5px 0px;
|
|
4290
4160
|
}
|
|
4291
4161
|
|
|
4292
4162
|
.emotion-16::before {
|
|
4293
4163
|
content: '';
|
|
4164
|
+
margin-bottom: -0.391em;
|
|
4294
4165
|
display: block;
|
|
4295
|
-
height: 0;
|
|
4296
|
-
width: 0;
|
|
4297
|
-
margin-bottom: -0.3955357142857143em;
|
|
4298
4166
|
}
|
|
4299
4167
|
|
|
4300
4168
|
.emotion-16::after {
|
|
4301
4169
|
content: '';
|
|
4170
|
+
margin-top: -0.409em;
|
|
4302
4171
|
display: block;
|
|
4303
|
-
height: 0;
|
|
4304
|
-
width: 0;
|
|
4305
|
-
margin-top: -0.3955357142857143em;
|
|
4306
4172
|
}
|
|
4307
4173
|
}
|
|
4308
4174
|
|
|
@@ -4310,25 +4176,22 @@ exports[`SectionRow SectionRow without title 1`] = `
|
|
|
4310
4176
|
.emotion-16 {
|
|
4311
4177
|
font-family: "DM Sans",sans-serif;
|
|
4312
4178
|
font-size: 16px;
|
|
4313
|
-
line-height:
|
|
4179
|
+
line-height: 24px;
|
|
4314
4180
|
font-weight: 400;
|
|
4315
|
-
letter-spacing:
|
|
4181
|
+
letter-spacing: 0;
|
|
4182
|
+
padding: 0.5px 0px;
|
|
4316
4183
|
}
|
|
4317
4184
|
|
|
4318
4185
|
.emotion-16::before {
|
|
4319
4186
|
content: '';
|
|
4187
|
+
margin-bottom: -0.391em;
|
|
4320
4188
|
display: block;
|
|
4321
|
-
height: 0;
|
|
4322
|
-
width: 0;
|
|
4323
|
-
margin-bottom: -0.43125em;
|
|
4324
4189
|
}
|
|
4325
4190
|
|
|
4326
4191
|
.emotion-16::after {
|
|
4327
4192
|
content: '';
|
|
4193
|
+
margin-top: -0.409em;
|
|
4328
4194
|
display: block;
|
|
4329
|
-
height: 0;
|
|
4330
|
-
width: 0;
|
|
4331
|
-
margin-top: -0.43125em;
|
|
4332
4195
|
}
|
|
4333
4196
|
}
|
|
4334
4197
|
|