@npm_leadtech/legal-lib-components 7.44.2 → 7.44.3
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.
|
@@ -171,7 +171,7 @@ export const SubtypeDocumentCardStyled = styled.div `
|
|
|
171
171
|
width: 100%;
|
|
172
172
|
align-items: center;
|
|
173
173
|
justify-content: center;
|
|
174
|
-
padding:
|
|
174
|
+
padding: 1rem;
|
|
175
175
|
gap: 1rem;
|
|
176
176
|
border-radius: 1rem;
|
|
177
177
|
background-color: var(--neutral-neutral-6);
|
|
@@ -190,13 +190,9 @@ export const SubtypeDocumentCardStyled = styled.div `
|
|
|
190
190
|
align-items: center;
|
|
191
191
|
flex-direction: column;
|
|
192
192
|
width: 100%;
|
|
193
|
-
max-width:
|
|
193
|
+
max-width: 235px;
|
|
194
194
|
.image-container {
|
|
195
|
-
width:
|
|
196
|
-
|
|
197
|
-
@media (min-width: ${size.lg}) {
|
|
198
|
-
width: 30%;
|
|
199
|
-
}
|
|
195
|
+
width: 60%;
|
|
200
196
|
}
|
|
201
197
|
}
|
|
202
198
|
|
|
@@ -206,9 +202,9 @@ export const SubtypeDocumentCardStyled = styled.div `
|
|
|
206
202
|
|
|
207
203
|
.title {
|
|
208
204
|
font-family: Inter;
|
|
209
|
-
font-size:
|
|
205
|
+
font-size: 16px;
|
|
210
206
|
font-weight: 700;
|
|
211
|
-
line-height:
|
|
207
|
+
line-height: 22px;
|
|
212
208
|
margin-bottom: 24px;
|
|
213
209
|
letter-spacing: -0.3px;
|
|
214
210
|
text-align: left;
|
|
@@ -216,10 +212,27 @@ export const SubtypeDocumentCardStyled = styled.div `
|
|
|
216
212
|
text-decoration-style: solid;
|
|
217
213
|
text-underline-position: from-font;
|
|
218
214
|
text-decoration-skip-ink: none;
|
|
215
|
+
|
|
216
|
+
@media (min-width: ${size.md}) {
|
|
217
|
+
text-align: center;
|
|
218
|
+
}
|
|
219
219
|
}
|
|
220
220
|
|
|
221
221
|
.content {
|
|
222
|
-
|
|
222
|
+
display: flex;
|
|
223
|
+
flex-direction: column;
|
|
224
|
+
height: 100%;
|
|
225
|
+
width: 100%;
|
|
226
|
+
justify-content: center;
|
|
227
|
+
|
|
228
|
+
@media ${device['landscape-tablets']} {
|
|
229
|
+
margin-left: 1rem;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
@media (min-width: ${size.md}) {
|
|
233
|
+
width: 100%;
|
|
234
|
+
margin-left: 0;
|
|
235
|
+
}
|
|
223
236
|
}
|
|
224
237
|
|
|
225
238
|
.buttons-container {
|
|
@@ -231,7 +244,7 @@ export const SubtypeDocumentCardStyled = styled.div `
|
|
|
231
244
|
@media ${device.desktop} {
|
|
232
245
|
flex-direction: row;
|
|
233
246
|
align-self: flex-start;
|
|
234
|
-
gap:
|
|
247
|
+
gap: 0.2rem;
|
|
235
248
|
align-items: center;
|
|
236
249
|
}
|
|
237
250
|
|
|
@@ -244,11 +257,14 @@ export const SubtypeDocumentCardStyled = styled.div `
|
|
|
244
257
|
a {
|
|
245
258
|
margin-top: 0.75rem;
|
|
246
259
|
width: 100%;
|
|
260
|
+
label {
|
|
261
|
+
font-size: 14px;
|
|
262
|
+
}
|
|
247
263
|
}
|
|
248
264
|
|
|
249
265
|
@media ${device.laptop} {
|
|
250
266
|
justify-content: space-between;
|
|
251
|
-
width:
|
|
267
|
+
width: 100%;
|
|
252
268
|
a {
|
|
253
269
|
min-width: 46.5%;
|
|
254
270
|
max-width: fit-content;
|
|
@@ -265,7 +281,7 @@ export const SubtypeDocumentCardStyled = styled.div `
|
|
|
265
281
|
|
|
266
282
|
@media ${device.desktop} {
|
|
267
283
|
display: flex;
|
|
268
|
-
gap:
|
|
284
|
+
gap: 0.2rem;
|
|
269
285
|
flex-wrap: nowrap;
|
|
270
286
|
margin-top: 0;
|
|
271
287
|
}
|
|
@@ -181,7 +181,7 @@ export const SubtypeDocumentCardStyled = styled.div<SubtypeDocumentCardStyledPro
|
|
|
181
181
|
width: 100%;
|
|
182
182
|
align-items: center;
|
|
183
183
|
justify-content: center;
|
|
184
|
-
padding:
|
|
184
|
+
padding: 1rem;
|
|
185
185
|
gap: 1rem;
|
|
186
186
|
border-radius: 1rem;
|
|
187
187
|
background-color: var(--neutral-neutral-6);
|
|
@@ -200,13 +200,9 @@ export const SubtypeDocumentCardStyled = styled.div<SubtypeDocumentCardStyledPro
|
|
|
200
200
|
align-items: center;
|
|
201
201
|
flex-direction: column;
|
|
202
202
|
width: 100%;
|
|
203
|
-
max-width:
|
|
203
|
+
max-width: 235px;
|
|
204
204
|
.image-container {
|
|
205
|
-
width:
|
|
206
|
-
|
|
207
|
-
@media (min-width: ${size.lg}) {
|
|
208
|
-
width: 30%;
|
|
209
|
-
}
|
|
205
|
+
width: 60%;
|
|
210
206
|
}
|
|
211
207
|
}
|
|
212
208
|
|
|
@@ -216,9 +212,9 @@ export const SubtypeDocumentCardStyled = styled.div<SubtypeDocumentCardStyledPro
|
|
|
216
212
|
|
|
217
213
|
.title {
|
|
218
214
|
font-family: Inter;
|
|
219
|
-
font-size:
|
|
215
|
+
font-size: 16px;
|
|
220
216
|
font-weight: 700;
|
|
221
|
-
line-height:
|
|
217
|
+
line-height: 22px;
|
|
222
218
|
margin-bottom: 24px;
|
|
223
219
|
letter-spacing: -0.3px;
|
|
224
220
|
text-align: left;
|
|
@@ -226,10 +222,27 @@ export const SubtypeDocumentCardStyled = styled.div<SubtypeDocumentCardStyledPro
|
|
|
226
222
|
text-decoration-style: solid;
|
|
227
223
|
text-underline-position: from-font;
|
|
228
224
|
text-decoration-skip-ink: none;
|
|
225
|
+
|
|
226
|
+
@media (min-width: ${size.md}) {
|
|
227
|
+
text-align: center;
|
|
228
|
+
}
|
|
229
229
|
}
|
|
230
230
|
|
|
231
231
|
.content {
|
|
232
|
-
|
|
232
|
+
display: flex;
|
|
233
|
+
flex-direction: column;
|
|
234
|
+
height: 100%;
|
|
235
|
+
width: 100%;
|
|
236
|
+
justify-content: center;
|
|
237
|
+
|
|
238
|
+
@media ${device['landscape-tablets']} {
|
|
239
|
+
margin-left: 1rem;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
@media (min-width: ${size.md}) {
|
|
243
|
+
width: 100%;
|
|
244
|
+
margin-left: 0;
|
|
245
|
+
}
|
|
233
246
|
}
|
|
234
247
|
|
|
235
248
|
.buttons-container {
|
|
@@ -241,7 +254,7 @@ export const SubtypeDocumentCardStyled = styled.div<SubtypeDocumentCardStyledPro
|
|
|
241
254
|
@media ${device.desktop} {
|
|
242
255
|
flex-direction: row;
|
|
243
256
|
align-self: flex-start;
|
|
244
|
-
gap:
|
|
257
|
+
gap: 0.2rem;
|
|
245
258
|
align-items: center;
|
|
246
259
|
}
|
|
247
260
|
|
|
@@ -254,11 +267,14 @@ export const SubtypeDocumentCardStyled = styled.div<SubtypeDocumentCardStyledPro
|
|
|
254
267
|
a {
|
|
255
268
|
margin-top: 0.75rem;
|
|
256
269
|
width: 100%;
|
|
270
|
+
label {
|
|
271
|
+
font-size: 14px;
|
|
272
|
+
}
|
|
257
273
|
}
|
|
258
274
|
|
|
259
275
|
@media ${device.laptop} {
|
|
260
276
|
justify-content: space-between;
|
|
261
|
-
width:
|
|
277
|
+
width: 100%;
|
|
262
278
|
a {
|
|
263
279
|
min-width: 46.5%;
|
|
264
280
|
max-width: fit-content;
|
|
@@ -275,7 +291,7 @@ export const SubtypeDocumentCardStyled = styled.div<SubtypeDocumentCardStyledPro
|
|
|
275
291
|
|
|
276
292
|
@media ${device.desktop} {
|
|
277
293
|
display: flex;
|
|
278
|
-
gap:
|
|
294
|
+
gap: 0.2rem;
|
|
279
295
|
flex-wrap: nowrap;
|
|
280
296
|
margin-top: 0;
|
|
281
297
|
}
|