@npm_leadtech/legal-lib-components 7.7.1 → 7.7.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/dist/src/components/atoms/PopularDocsItem/PopularDocsItem.styled.js +5 -1
- package/dist/src/components/atoms/PopularDocsItem/PopularDocsItem.styled.ts +5 -1
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.js +3 -3
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.styled.js +35 -83
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.styled.ts +35 -83
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.tsx +5 -28
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContentProps.types.d.ts +1 -7
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContentProps.types.ts +1 -8
- package/dist/src/components/sections/CardStorySection/CardStorySection.styled.js +1 -2
- package/dist/src/components/sections/CardStorySection/CardStorySection.styled.ts +1 -2
- package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.js +1 -2
- package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.ts +1 -2
- package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.js +1 -1
- package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.tsx +0 -5
- package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.js +2 -0
- package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.ts +2 -0
- package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.styled.js +1 -1
- package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.styled.ts +1 -1
- package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.js +1 -0
- package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.ts +1 -0
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ export const PopularDocsItemStyled = styled.a `
|
|
|
5
5
|
flex-direction: row;
|
|
6
6
|
align-items: center;
|
|
7
7
|
padding: 1.5rem 1rem 1.5rem 1.5rem;
|
|
8
|
-
gap:
|
|
8
|
+
gap: 1rem;
|
|
9
9
|
height: 6rem;
|
|
10
10
|
background: var(--others-white);
|
|
11
11
|
box-shadow: var(--box-shadow-container);
|
|
@@ -39,6 +39,10 @@ export const PopularDocsItemStyled = styled.a `
|
|
|
39
39
|
text-align: left;
|
|
40
40
|
width: 100%;
|
|
41
41
|
|
|
42
|
+
strong {
|
|
43
|
+
font-size: 0.9rem;
|
|
44
|
+
}
|
|
45
|
+
|
|
42
46
|
.description {
|
|
43
47
|
color: var(--neutral-neutral-2);
|
|
44
48
|
font-size: 12px;
|
|
@@ -6,7 +6,7 @@ export const PopularDocsItemStyled = styled.a`
|
|
|
6
6
|
flex-direction: row;
|
|
7
7
|
align-items: center;
|
|
8
8
|
padding: 1.5rem 1rem 1.5rem 1.5rem;
|
|
9
|
-
gap:
|
|
9
|
+
gap: 1rem;
|
|
10
10
|
height: 6rem;
|
|
11
11
|
background: var(--others-white);
|
|
12
12
|
box-shadow: var(--box-shadow-container);
|
|
@@ -40,6 +40,10 @@ export const PopularDocsItemStyled = styled.a`
|
|
|
40
40
|
text-align: left;
|
|
41
41
|
width: 100%;
|
|
42
42
|
|
|
43
|
+
strong {
|
|
44
|
+
font-size: 0.9rem;
|
|
45
|
+
}
|
|
46
|
+
|
|
43
47
|
.description {
|
|
44
48
|
color: var(--neutral-neutral-2);
|
|
45
49
|
font-size: 12px;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import {
|
|
2
|
+
import { RichTextInner, RichTextStrapi } from '../../atoms';
|
|
3
3
|
import { GuideslinesContentStyled } from './GuidelinesContent.styled';
|
|
4
|
-
const GuidelinesContent = ({ title, detail, children
|
|
5
|
-
return (_jsxs(GuideslinesContentStyled, { children: [
|
|
4
|
+
const GuidelinesContent = ({ title, image, detail, children }) => {
|
|
5
|
+
return (_jsxs(GuideslinesContentStyled, { children: [_jsxs("div", { className: 'guidelines-section-main wrapper', children: [_jsx("div", { className: 'guidelines-section__image big-devices', children: image }), _jsxs("div", { className: 'guidelines-section__texts', children: [_jsx("h2", { className: 'guidelines-section__texts__title', children: title }), _jsx(RichTextInner, { customClass: 'guidelines-section__texts__body', children: children })] }), _jsx("div", { className: 'guidelines-section__image is-mobile', children: image })] }), Array.isArray(detail) && (_jsx("div", { className: 'guidelines-section-detail wrapper', children: detail.map((item, index) => (_jsxs("div", { className: 'guidelines-section-detail__item', children: [_jsx("div", { className: 'guidelines-section-detail__item__image', children: item.image }), _jsx("div", { className: 'guidelines-section-detail__item__title', children: item.title }), _jsx(RichTextStrapi, { html: item.body?.data?.childMarkdownRemark?.html })] }, index))) }))] }));
|
|
6
6
|
};
|
|
7
7
|
export default GuidelinesContent;
|
|
@@ -14,6 +14,7 @@ export const GuideslinesContentStyled = styled.div `
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.guidelines-section__texts {
|
|
17
|
+
flex-basis: 50%;
|
|
17
18
|
display: flex;
|
|
18
19
|
flex-direction: column;
|
|
19
20
|
justify-content: center;
|
|
@@ -25,19 +26,18 @@ export const GuideslinesContentStyled = styled.div `
|
|
|
25
26
|
letter-spacing: -0.3px;
|
|
26
27
|
|
|
27
28
|
@media ${device['landscape-tablets']} {
|
|
28
|
-
margin-left:
|
|
29
|
+
margin-left: 3rem;
|
|
29
30
|
margin-bottom: 0;
|
|
30
31
|
}
|
|
31
32
|
|
|
32
33
|
&__title {
|
|
33
|
-
font-family: var(--font-
|
|
34
|
+
font-family: var(--font-serif);
|
|
34
35
|
margin-bottom: 2rem;
|
|
35
36
|
text-align: center;
|
|
36
|
-
font-
|
|
37
|
-
font-size: 1.75rem;
|
|
38
|
-
color: var(--neutral-neutral-1);
|
|
37
|
+
font-size: 32px;
|
|
39
38
|
font-style: normal;
|
|
40
|
-
|
|
39
|
+
font-weight: 400;
|
|
40
|
+
line-height: 42px;
|
|
41
41
|
letter-spacing: -0.3px;
|
|
42
42
|
|
|
43
43
|
@media ${device['landscape-tablets']} {
|
|
@@ -57,6 +57,31 @@ export const GuideslinesContentStyled = styled.div `
|
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
.guidelines-section__image {
|
|
61
|
+
flex-basis: 50%;
|
|
62
|
+
margin-bottom: 2rem;
|
|
63
|
+
|
|
64
|
+
&.big-devices {
|
|
65
|
+
display: none;
|
|
66
|
+
|
|
67
|
+
@media ${device['landscape-tablets']} {
|
|
68
|
+
display: flex;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
&.is-mobile {
|
|
73
|
+
display: none;
|
|
74
|
+
|
|
75
|
+
@media ${device['landscape-tablets']} {
|
|
76
|
+
display: none;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
img {
|
|
80
|
+
display: none;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
60
85
|
.guidelines-section-detail {
|
|
61
86
|
display: flex;
|
|
62
87
|
flex-direction: column;
|
|
@@ -81,11 +106,11 @@ export const GuideslinesContentStyled = styled.div `
|
|
|
81
106
|
}
|
|
82
107
|
|
|
83
108
|
&__title {
|
|
84
|
-
font-family: var(--font-
|
|
109
|
+
font-family: var(--font-serif);
|
|
85
110
|
font-style: normal;
|
|
86
|
-
font-weight:
|
|
87
|
-
font-size:
|
|
88
|
-
line-height:
|
|
111
|
+
font-weight: 400;
|
|
112
|
+
font-size: 24px;
|
|
113
|
+
line-height: 32px;
|
|
89
114
|
letter-spacing: -0.3px;
|
|
90
115
|
color: var(--neutral-neutral-1);
|
|
91
116
|
margin: 1.5rem 0 1rem 0;
|
|
@@ -110,77 +135,4 @@ export const GuideslinesContentStyled = styled.div `
|
|
|
110
135
|
}
|
|
111
136
|
}
|
|
112
137
|
}
|
|
113
|
-
|
|
114
|
-
.guidelines-section-trial {
|
|
115
|
-
display: flex;
|
|
116
|
-
flex-direction: column;
|
|
117
|
-
gap: 1.5rem;
|
|
118
|
-
margin: 2rem 0 1rem 0;
|
|
119
|
-
|
|
120
|
-
@media ${device.laptop} {
|
|
121
|
-
flex-direction: row;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
&__texts {
|
|
125
|
-
flex-basis: 50%;
|
|
126
|
-
display: flex;
|
|
127
|
-
flex-direction: column;
|
|
128
|
-
justify-content: flex-start;
|
|
129
|
-
color: var(--neutral-neutral-1);
|
|
130
|
-
font-style: normal;
|
|
131
|
-
font-weight: 400;
|
|
132
|
-
letter-spacing: -0.3px;
|
|
133
|
-
margin-right: 3rem;
|
|
134
|
-
|
|
135
|
-
&__body {
|
|
136
|
-
font-family: var(--font-sans);
|
|
137
|
-
font-size: 16px;
|
|
138
|
-
line-height: 22px;
|
|
139
|
-
margin-bottom: 1.5rem;
|
|
140
|
-
a {
|
|
141
|
-
color: var(--primary-main-light-1);
|
|
142
|
-
font-weight: 400 !important;
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
.e-button {
|
|
146
|
-
height: auto;
|
|
147
|
-
align-self: flex-start;
|
|
148
|
-
margin-top: 2.5rem;
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
&__item {
|
|
153
|
-
display: flex;
|
|
154
|
-
flex-direction: column;
|
|
155
|
-
justify-content: space-between;
|
|
156
|
-
background: var(--others-white);
|
|
157
|
-
border-radius: var(--m-border-radius);
|
|
158
|
-
|
|
159
|
-
@media ${device.laptop} {
|
|
160
|
-
padding: 1.5rem;
|
|
161
|
-
flex-direction: row;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
.guidelines-section__image {
|
|
167
|
-
flex-basis: 50%;
|
|
168
|
-
margin-bottom: 2rem;
|
|
169
|
-
|
|
170
|
-
&.big-devices {
|
|
171
|
-
display: none;
|
|
172
|
-
}
|
|
173
|
-
&.is-mobile {
|
|
174
|
-
display: flex;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
@media ${device.laptop} {
|
|
178
|
-
&.big-devices {
|
|
179
|
-
display: flex;
|
|
180
|
-
}
|
|
181
|
-
&.is-mobile {
|
|
182
|
-
display: none;
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
138
|
`;
|
|
@@ -15,6 +15,7 @@ export const GuideslinesContentStyled = styled.div`
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.guidelines-section__texts {
|
|
18
|
+
flex-basis: 50%;
|
|
18
19
|
display: flex;
|
|
19
20
|
flex-direction: column;
|
|
20
21
|
justify-content: center;
|
|
@@ -26,19 +27,18 @@ export const GuideslinesContentStyled = styled.div`
|
|
|
26
27
|
letter-spacing: -0.3px;
|
|
27
28
|
|
|
28
29
|
@media ${device['landscape-tablets']} {
|
|
29
|
-
margin-left:
|
|
30
|
+
margin-left: 3rem;
|
|
30
31
|
margin-bottom: 0;
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
&__title {
|
|
34
|
-
font-family: var(--font-
|
|
35
|
+
font-family: var(--font-serif);
|
|
35
36
|
margin-bottom: 2rem;
|
|
36
37
|
text-align: center;
|
|
37
|
-
font-
|
|
38
|
-
font-size: 1.75rem;
|
|
39
|
-
color: var(--neutral-neutral-1);
|
|
38
|
+
font-size: 32px;
|
|
40
39
|
font-style: normal;
|
|
41
|
-
|
|
40
|
+
font-weight: 400;
|
|
41
|
+
line-height: 42px;
|
|
42
42
|
letter-spacing: -0.3px;
|
|
43
43
|
|
|
44
44
|
@media ${device['landscape-tablets']} {
|
|
@@ -58,6 +58,31 @@ export const GuideslinesContentStyled = styled.div`
|
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
+
.guidelines-section__image {
|
|
62
|
+
flex-basis: 50%;
|
|
63
|
+
margin-bottom: 2rem;
|
|
64
|
+
|
|
65
|
+
&.big-devices {
|
|
66
|
+
display: none;
|
|
67
|
+
|
|
68
|
+
@media ${device['landscape-tablets']} {
|
|
69
|
+
display: flex;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
&.is-mobile {
|
|
74
|
+
display: none;
|
|
75
|
+
|
|
76
|
+
@media ${device['landscape-tablets']} {
|
|
77
|
+
display: none;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
img {
|
|
81
|
+
display: none;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
61
86
|
.guidelines-section-detail {
|
|
62
87
|
display: flex;
|
|
63
88
|
flex-direction: column;
|
|
@@ -82,11 +107,11 @@ export const GuideslinesContentStyled = styled.div`
|
|
|
82
107
|
}
|
|
83
108
|
|
|
84
109
|
&__title {
|
|
85
|
-
font-family: var(--font-
|
|
110
|
+
font-family: var(--font-serif);
|
|
86
111
|
font-style: normal;
|
|
87
|
-
font-weight:
|
|
88
|
-
font-size:
|
|
89
|
-
line-height:
|
|
112
|
+
font-weight: 400;
|
|
113
|
+
font-size: 24px;
|
|
114
|
+
line-height: 32px;
|
|
90
115
|
letter-spacing: -0.3px;
|
|
91
116
|
color: var(--neutral-neutral-1);
|
|
92
117
|
margin: 1.5rem 0 1rem 0;
|
|
@@ -111,77 +136,4 @@ export const GuideslinesContentStyled = styled.div`
|
|
|
111
136
|
}
|
|
112
137
|
}
|
|
113
138
|
}
|
|
114
|
-
|
|
115
|
-
.guidelines-section-trial {
|
|
116
|
-
display: flex;
|
|
117
|
-
flex-direction: column;
|
|
118
|
-
gap: 1.5rem;
|
|
119
|
-
margin: 2rem 0 1rem 0;
|
|
120
|
-
|
|
121
|
-
@media ${device.laptop} {
|
|
122
|
-
flex-direction: row;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
&__texts {
|
|
126
|
-
flex-basis: 50%;
|
|
127
|
-
display: flex;
|
|
128
|
-
flex-direction: column;
|
|
129
|
-
justify-content: flex-start;
|
|
130
|
-
color: var(--neutral-neutral-1);
|
|
131
|
-
font-style: normal;
|
|
132
|
-
font-weight: 400;
|
|
133
|
-
letter-spacing: -0.3px;
|
|
134
|
-
margin-right: 3rem;
|
|
135
|
-
|
|
136
|
-
&__body {
|
|
137
|
-
font-family: var(--font-sans);
|
|
138
|
-
font-size: 16px;
|
|
139
|
-
line-height: 22px;
|
|
140
|
-
margin-bottom: 1.5rem;
|
|
141
|
-
a {
|
|
142
|
-
color: var(--primary-main-light-1);
|
|
143
|
-
font-weight: 400 !important;
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
.e-button {
|
|
147
|
-
height: auto;
|
|
148
|
-
align-self: flex-start;
|
|
149
|
-
margin-top: 2.5rem;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
&__item {
|
|
154
|
-
display: flex;
|
|
155
|
-
flex-direction: column;
|
|
156
|
-
justify-content: space-between;
|
|
157
|
-
background: var(--others-white);
|
|
158
|
-
border-radius: var(--m-border-radius);
|
|
159
|
-
|
|
160
|
-
@media ${device.laptop} {
|
|
161
|
-
padding: 1.5rem;
|
|
162
|
-
flex-direction: row;
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
.guidelines-section__image {
|
|
168
|
-
flex-basis: 50%;
|
|
169
|
-
margin-bottom: 2rem;
|
|
170
|
-
|
|
171
|
-
&.big-devices {
|
|
172
|
-
display: none;
|
|
173
|
-
}
|
|
174
|
-
&.is-mobile {
|
|
175
|
-
display: flex;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
@media ${device.laptop} {
|
|
179
|
-
&.big-devices {
|
|
180
|
-
display: flex;
|
|
181
|
-
}
|
|
182
|
-
&.is-mobile {
|
|
183
|
-
display: none;
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
139
|
`
|
|
@@ -1,54 +1,31 @@
|
|
|
1
1
|
import React, { type FC } from 'react'
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { RichTextInner, RichTextStrapi } from '../../atoms'
|
|
4
4
|
import { type GuidelinesContentProps } from './GuidelinesContentProps.types'
|
|
5
5
|
import { GuideslinesContentStyled } from './GuidelinesContent.styled'
|
|
6
6
|
|
|
7
|
-
const GuidelinesContent: FC<GuidelinesContentProps> = ({
|
|
8
|
-
title,
|
|
9
|
-
detail,
|
|
10
|
-
children,
|
|
11
|
-
tryNowText,
|
|
12
|
-
tryNowButtonText,
|
|
13
|
-
tryNowButtonLink,
|
|
14
|
-
tryNowButtonDataQa,
|
|
15
|
-
tryNowImage
|
|
16
|
-
}) => {
|
|
7
|
+
const GuidelinesContent: FC<GuidelinesContentProps> = ({ title, image, detail, children }) => {
|
|
17
8
|
return (
|
|
18
9
|
<GuideslinesContentStyled>
|
|
19
10
|
<div className='guidelines-section-main wrapper'>
|
|
11
|
+
<div className='guidelines-section__image big-devices'>{image}</div>
|
|
20
12
|
<div className='guidelines-section__texts'>
|
|
21
13
|
<h2 className='guidelines-section__texts__title'>{title}</h2>
|
|
22
14
|
<RichTextInner customClass='guidelines-section__texts__body'>{children}</RichTextInner>
|
|
23
15
|
</div>
|
|
16
|
+
<div className='guidelines-section__image is-mobile'>{image}</div>
|
|
24
17
|
</div>
|
|
25
18
|
{Array.isArray(detail) && (
|
|
26
19
|
<div className='guidelines-section-detail wrapper'>
|
|
27
20
|
{detail.map((item, index) => (
|
|
28
21
|
<div className='guidelines-section-detail__item' key={index}>
|
|
29
22
|
<div className='guidelines-section-detail__item__image'>{item.image}</div>
|
|
30
|
-
<
|
|
23
|
+
<div className='guidelines-section-detail__item__title'>{item.title}</div>
|
|
31
24
|
<RichTextStrapi html={item.body?.data?.childMarkdownRemark?.html as string} />
|
|
32
25
|
</div>
|
|
33
26
|
))}
|
|
34
27
|
</div>
|
|
35
28
|
)}
|
|
36
|
-
<div className='guidelines-section-trial wrapper'>
|
|
37
|
-
<div className='guidelines-section-trial__item'>
|
|
38
|
-
<div className='guidelines-section__image is-mobile'>{tryNowImage}</div>
|
|
39
|
-
<div className='guidelines-section-trial__texts'>
|
|
40
|
-
<RichTextInner customClass='guidelines-section__texts__body'>{tryNowText}</RichTextInner>
|
|
41
|
-
<Button
|
|
42
|
-
givenClass='mid-banner-ratafia-content__cta'
|
|
43
|
-
dataQa={tryNowButtonDataQa}
|
|
44
|
-
link={tryNowButtonLink}
|
|
45
|
-
color='primary'
|
|
46
|
-
label={tryNowButtonText}
|
|
47
|
-
/>
|
|
48
|
-
</div>
|
|
49
|
-
<div className='guidelines-section__image big-devices'>{tryNowImage}</div>
|
|
50
|
-
</div>
|
|
51
|
-
</div>
|
|
52
29
|
</GuideslinesContentStyled>
|
|
53
30
|
)
|
|
54
31
|
}
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
export interface GuidelinesContentProps {
|
|
3
2
|
title: string;
|
|
4
|
-
image
|
|
3
|
+
image: React.ReactNode;
|
|
5
4
|
children: React.ReactNode;
|
|
6
5
|
detail?: React.ReactNode;
|
|
7
|
-
tryNowText: React.ReactNode;
|
|
8
|
-
tryNowButtonText: string;
|
|
9
|
-
tryNowButtonLink: string;
|
|
10
|
-
tryNowButtonDataQa: string;
|
|
11
|
-
tryNowImage?: React.ReactNode;
|
|
12
6
|
}
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
|
|
3
1
|
export interface GuidelinesContentProps {
|
|
4
2
|
title: string
|
|
5
|
-
image
|
|
3
|
+
image: React.ReactNode
|
|
6
4
|
children: React.ReactNode
|
|
7
5
|
detail?: React.ReactNode
|
|
8
|
-
tryNowText: React.ReactNode
|
|
9
|
-
tryNowButtonText: string
|
|
10
|
-
tryNowButtonLink: string
|
|
11
|
-
tryNowButtonDataQa: string
|
|
12
|
-
tryNowImage?: React.ReactNode
|
|
13
6
|
}
|
|
@@ -7,10 +7,9 @@ export const CardStorySectionStyled = styled.div `
|
|
|
7
7
|
.card-story-section {
|
|
8
8
|
&__title {
|
|
9
9
|
font-weight: 700;
|
|
10
|
-
font-size: 1.
|
|
10
|
+
font-size: 1.8rem;
|
|
11
11
|
color: var(--neutral-neutral-1);
|
|
12
12
|
font-family: var(--font-sans);
|
|
13
|
-
letter-spacing: -0.3px;
|
|
14
13
|
padding-bottom: 1.5rem;
|
|
15
14
|
}
|
|
16
15
|
&__text {
|
|
@@ -8,10 +8,9 @@ export const CardStorySectionStyled = styled.div`
|
|
|
8
8
|
.card-story-section {
|
|
9
9
|
&__title {
|
|
10
10
|
font-weight: 700;
|
|
11
|
-
font-size: 1.
|
|
11
|
+
font-size: 1.8rem;
|
|
12
12
|
color: var(--neutral-neutral-1);
|
|
13
13
|
font-family: var(--font-sans);
|
|
14
|
-
letter-spacing: -0.3px;
|
|
15
14
|
padding-bottom: 1.5rem;
|
|
16
15
|
}
|
|
17
16
|
&__text {
|
|
@@ -14,8 +14,7 @@ export const ExpertsSectionStyled = styled.div `
|
|
|
14
14
|
.experts-section {
|
|
15
15
|
&__title {
|
|
16
16
|
font-family: var(--font-sans);
|
|
17
|
-
font-size:
|
|
18
|
-
color: var(--neutral-neutral-1);
|
|
17
|
+
font-size: 32px;
|
|
19
18
|
font-weight: 700;
|
|
20
19
|
line-height: 42px;
|
|
21
20
|
letter-spacing: -0.3px;
|
|
@@ -15,8 +15,7 @@ export const ExpertsSectionStyled = styled.div`
|
|
|
15
15
|
.experts-section {
|
|
16
16
|
&__title {
|
|
17
17
|
font-family: var(--font-sans);
|
|
18
|
-
font-size:
|
|
19
|
-
color: var(--neutral-neutral-1);
|
|
18
|
+
font-size: 32px;
|
|
20
19
|
font-weight: 700;
|
|
21
20
|
line-height: 42px;
|
|
22
21
|
letter-spacing: -0.3px;
|
|
@@ -2,6 +2,6 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { GuidelinesContent } from '../../organisms/GuidelinesContent';
|
|
3
3
|
import { GuidelinesSectionStyled } from './GuidelinesSection.styled';
|
|
4
4
|
const GuidelinesSection = ({ contentGuidelines }) => {
|
|
5
|
-
return (_jsx(GuidelinesSectionStyled, { className: 'guidelines-section', children: _jsx(GuidelinesContent, { title: contentGuidelines.title, image: contentGuidelines.image, detail: contentGuidelines.detail,
|
|
5
|
+
return (_jsx(GuidelinesSectionStyled, { className: 'guidelines-section', children: _jsx(GuidelinesContent, { title: contentGuidelines.title, image: contentGuidelines.image, detail: contentGuidelines.detail, children: contentGuidelines.children }) }));
|
|
6
6
|
};
|
|
7
7
|
export default GuidelinesSection;
|
|
@@ -11,11 +11,6 @@ const GuidelinesSection: FC<GuidelinesSectionProps> = ({ contentGuidelines }) =>
|
|
|
11
11
|
title={contentGuidelines.title}
|
|
12
12
|
image={contentGuidelines.image}
|
|
13
13
|
detail={contentGuidelines.detail}
|
|
14
|
-
tryNowText={contentGuidelines.tryNowText}
|
|
15
|
-
tryNowButtonText={contentGuidelines.tryNowButtonText}
|
|
16
|
-
tryNowButtonLink={contentGuidelines.tryNowButtonLink}
|
|
17
|
-
tryNowButtonDataQa={contentGuidelines.tryNowButtonDataQa}
|
|
18
|
-
tryNowImage={contentGuidelines.tryNowImage}
|
|
19
14
|
>
|
|
20
15
|
{contentGuidelines.children}
|
|
21
16
|
</GuidelinesContent>
|
package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.js
CHANGED
|
@@ -17,6 +17,8 @@ export const HowGetYourFormsSectionStyled = styled.section `
|
|
|
17
17
|
font-family: var(--font-serif);
|
|
18
18
|
text-align: center;
|
|
19
19
|
padding-top: 4rem;
|
|
20
|
+
padding-right: 1.5rem;
|
|
21
|
+
padding-left: 1.5rem;
|
|
20
22
|
@media only screen and (max-width: ${size.md}) {
|
|
21
23
|
padding-top: 2.5rem;
|
|
22
24
|
}
|
package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.ts
CHANGED
|
@@ -18,6 +18,8 @@ export const HowGetYourFormsSectionStyled = styled.section`
|
|
|
18
18
|
font-family: var(--font-serif);
|
|
19
19
|
text-align: center;
|
|
20
20
|
padding-top: 4rem;
|
|
21
|
+
padding-right: 1.5rem;
|
|
22
|
+
padding-left: 1.5rem;
|
|
21
23
|
@media only screen and (max-width: ${size.md}) {
|
|
22
24
|
padding-top: 2.5rem;
|
|
23
25
|
}
|