@7shifts/sous-chef 3.49.0 → 3.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/foundation/constants.d.ts +1 -1
- package/dist/index.css +150 -91
- package/dist/index.js +199 -93
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +198 -94
- package/dist/index.modern.js.map +1 -1
- package/dist/lists/ActionList/ActionList.d.ts +7 -0
- package/dist/lists/ActionList/index.d.ts +1 -0
- package/dist/lists/ActionListItem/ActionListItem.d.ts +23 -0
- package/dist/lists/ActionListItem/ActionListItemActions/ActionListItemActions.d.ts +8 -0
- package/dist/lists/ActionListItem/index.d.ts +1 -0
- package/dist/lists/ActionListItem/type.d.ts +1 -0
- package/dist/lists/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1,24 +1,30 @@
|
|
|
1
1
|
@font-face {
|
|
2
|
-
font-family: "
|
|
3
|
-
src: url("https://cdn.7shifts.com/fonts/
|
|
4
|
-
|
|
2
|
+
font-family: "SF Pro";
|
|
3
|
+
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYREGULAR.OTF") format("opentype");
|
|
4
|
+
font-weight: normal;
|
|
5
|
+
font-style: normal;
|
|
6
|
+
/* Preload the font */
|
|
7
|
+
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
8
|
+
}
|
|
9
|
+
@font-face {
|
|
10
|
+
font-family: "SF Pro";
|
|
11
|
+
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYMEDIUM.OTF") format("opentype");
|
|
5
12
|
font-weight: 600;
|
|
6
13
|
font-style: normal;
|
|
7
14
|
/* Preload the font */
|
|
8
15
|
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
9
16
|
}
|
|
10
17
|
@font-face {
|
|
11
|
-
font-family: "
|
|
12
|
-
src: url("https://cdn.7shifts.com/fonts/
|
|
13
|
-
|
|
14
|
-
font-weight: normal;
|
|
18
|
+
font-family: "Universal Sans Display";
|
|
19
|
+
src: url("https://cdn.7shifts.com/fonts/UniversalSans/Universal-Sans-Display-500.ttf");
|
|
20
|
+
font-weight: 500;
|
|
15
21
|
font-style: normal;
|
|
16
22
|
/* Preload the font */
|
|
17
23
|
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
18
24
|
}
|
|
19
25
|
:root {
|
|
20
|
-
--font-family-
|
|
21
|
-
--font-family-body: "
|
|
26
|
+
--font-family-heading: "Universal Sans Display", sans-serif;
|
|
27
|
+
--font-family-body: "SF Pro", sans-serif;
|
|
22
28
|
--font-size-100: 0.75rem;
|
|
23
29
|
--font-size-200: 0.875rem;
|
|
24
30
|
--font-size-300: 1rem;
|
|
@@ -35,6 +41,7 @@
|
|
|
35
41
|
--font-line-height-700: 2.75rem;
|
|
36
42
|
--p-font-weight-light: 300;
|
|
37
43
|
--p-font-weight-normal: 400;
|
|
44
|
+
--p-font-weight-semibold: 500;
|
|
38
45
|
--p-font-weight-bold: 600;
|
|
39
46
|
}
|
|
40
47
|
:root {
|
|
@@ -178,10 +185,11 @@
|
|
|
178
185
|
--z-index-portal: 9999;
|
|
179
186
|
}
|
|
180
187
|
body {
|
|
181
|
-
font-family: var(--font-family-
|
|
188
|
+
font-family: var(--font-family-body);
|
|
182
189
|
font-size: var(--font-size-200);
|
|
183
190
|
line-height: var(--font-line-height-200);
|
|
184
191
|
font-weight: var(--p-font-weight-normal);
|
|
192
|
+
color: var(--color-grey-500);
|
|
185
193
|
}
|
|
186
194
|
._OINV1 {
|
|
187
195
|
display: flex;
|
|
@@ -231,7 +239,7 @@ body {
|
|
|
231
239
|
display: inline-flex;
|
|
232
240
|
}
|
|
233
241
|
._3s_-x {
|
|
234
|
-
font-family: var(--font-family-
|
|
242
|
+
font-family: var(--font-family-body);
|
|
235
243
|
font-size: var(--font-size-100);
|
|
236
244
|
line-height: var(--font-line-height-100);
|
|
237
245
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -239,7 +247,7 @@ body {
|
|
|
239
247
|
}
|
|
240
248
|
|
|
241
249
|
._29W-o {
|
|
242
|
-
font-family: var(--font-family-
|
|
250
|
+
font-family: var(--font-family-body);
|
|
243
251
|
font-size: var(--font-size-200);
|
|
244
252
|
line-height: var(--font-line-height-200);
|
|
245
253
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -276,7 +284,7 @@ Just for future references:
|
|
|
276
284
|
}
|
|
277
285
|
|
|
278
286
|
._LbMlH {
|
|
279
|
-
font-family: var(--font-family-
|
|
287
|
+
font-family: var(--font-family-body);
|
|
280
288
|
font-size: var(--font-size-200);
|
|
281
289
|
line-height: var(--font-line-height-200);
|
|
282
290
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -290,7 +298,7 @@ Just for future references:
|
|
|
290
298
|
}
|
|
291
299
|
|
|
292
300
|
._15FwS {
|
|
293
|
-
font-family: var(--font-family-
|
|
301
|
+
font-family: var(--font-family-body);
|
|
294
302
|
font-size: var(--font-size-100);
|
|
295
303
|
line-height: var(--font-line-height-100);
|
|
296
304
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -423,7 +431,7 @@ Just for future references:
|
|
|
423
431
|
text-align: left;
|
|
424
432
|
}
|
|
425
433
|
._1lo14 {
|
|
426
|
-
font-family: var(--font-family-
|
|
434
|
+
font-family: var(--font-family-body);
|
|
427
435
|
font-size: var(--font-size-200);
|
|
428
436
|
line-height: var(--font-line-height-200);
|
|
429
437
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -450,7 +458,7 @@ Just for future references:
|
|
|
450
458
|
color: var(--color-grey-500);
|
|
451
459
|
}
|
|
452
460
|
._2rZ80 {
|
|
453
|
-
font-family: var(--font-family-
|
|
461
|
+
font-family: var(--font-family-body);
|
|
454
462
|
font-size: var(--font-size-200);
|
|
455
463
|
line-height: var(--font-line-height-200);
|
|
456
464
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -486,7 +494,7 @@ Just for future references:
|
|
|
486
494
|
color: var(--color-grey-500);
|
|
487
495
|
}
|
|
488
496
|
._YjZTi {
|
|
489
|
-
font-family: var(--font-family-
|
|
497
|
+
font-family: var(--font-family-body);
|
|
490
498
|
font-size: var(--font-size-200);
|
|
491
499
|
line-height: var(--font-line-height-200);
|
|
492
500
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -899,7 +907,7 @@ Just for future references:
|
|
|
899
907
|
border: 1px solid var(--color-grey-200);
|
|
900
908
|
}
|
|
901
909
|
._31UYJ {
|
|
902
|
-
font-family: var(--font-family-
|
|
910
|
+
font-family: var(--font-family-body);
|
|
903
911
|
font-size: var(--font-size-100);
|
|
904
912
|
line-height: var(--font-line-height-100);
|
|
905
913
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -917,7 +925,7 @@ Just for future references:
|
|
|
917
925
|
text-decoration: underline;
|
|
918
926
|
}
|
|
919
927
|
._38KEH._38KEH {
|
|
920
|
-
font-family: var(--font-family-
|
|
928
|
+
font-family: var(--font-family-body);
|
|
921
929
|
font-size: var(--font-size-200);
|
|
922
930
|
line-height: var(--font-line-height-200);
|
|
923
931
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -943,7 +951,7 @@ Just for future references:
|
|
|
943
951
|
text-align: left;
|
|
944
952
|
}
|
|
945
953
|
._dJWps {
|
|
946
|
-
font-family: var(--font-family-
|
|
954
|
+
font-family: var(--font-family-body);
|
|
947
955
|
font-size: var(--font-size-100);
|
|
948
956
|
line-height: var(--font-line-height-100);
|
|
949
957
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1015,7 +1023,7 @@ Just for future references:
|
|
|
1015
1023
|
table-layout: fixed;
|
|
1016
1024
|
}
|
|
1017
1025
|
._1YYyL {
|
|
1018
|
-
font-family: var(--font-family-
|
|
1026
|
+
font-family: var(--font-family-body);
|
|
1019
1027
|
font-size: var(--font-size-200);
|
|
1020
1028
|
line-height: var(--font-line-height-200);
|
|
1021
1029
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1041,7 +1049,7 @@ Just for future references:
|
|
|
1041
1049
|
border-bottom-right-radius: 0;
|
|
1042
1050
|
}
|
|
1043
1051
|
._ASPHe {
|
|
1044
|
-
font-family: var(--font-family-
|
|
1052
|
+
font-family: var(--font-family-body);
|
|
1045
1053
|
font-size: var(--font-size-200);
|
|
1046
1054
|
line-height: var(--font-line-height-200);
|
|
1047
1055
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1159,7 +1167,7 @@ Just for future references:
|
|
|
1159
1167
|
}
|
|
1160
1168
|
|
|
1161
1169
|
._iZe2g {
|
|
1162
|
-
font-family: var(--font-family-
|
|
1170
|
+
font-family: var(--font-family-body);
|
|
1163
1171
|
font-size: var(--font-size-200);
|
|
1164
1172
|
line-height: var(--font-line-height-200);
|
|
1165
1173
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1168,7 +1176,7 @@ Just for future references:
|
|
|
1168
1176
|
}
|
|
1169
1177
|
|
|
1170
1178
|
._2KsRB {
|
|
1171
|
-
font-family: var(--font-family-
|
|
1179
|
+
font-family: var(--font-family-body);
|
|
1172
1180
|
font-size: var(--font-size-200);
|
|
1173
1181
|
line-height: var(--font-line-height-200);
|
|
1174
1182
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1249,7 +1257,7 @@ Just for future references:
|
|
|
1249
1257
|
min-height: 38px;
|
|
1250
1258
|
}
|
|
1251
1259
|
._1eCfd {
|
|
1252
|
-
font-family: var(--font-family-
|
|
1260
|
+
font-family: var(--font-family-body);
|
|
1253
1261
|
font-size: var(--font-size-100);
|
|
1254
1262
|
line-height: var(--font-line-height-100);
|
|
1255
1263
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1280,7 +1288,7 @@ Just for future references:
|
|
|
1280
1288
|
box-shadow: 0 0 8px var(--color-blackberry-300);
|
|
1281
1289
|
}
|
|
1282
1290
|
._3gsXT {
|
|
1283
|
-
font-family: var(--font-family-
|
|
1291
|
+
font-family: var(--font-family-body);
|
|
1284
1292
|
font-size: var(--font-size-200);
|
|
1285
1293
|
line-height: var(--font-line-height-200);
|
|
1286
1294
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1298,21 +1306,21 @@ Just for future references:
|
|
|
1298
1306
|
text-overflow: ellipsis;
|
|
1299
1307
|
}
|
|
1300
1308
|
._1sq2y {
|
|
1301
|
-
font-family: var(--font-family-
|
|
1309
|
+
font-family: var(--font-family-body);
|
|
1302
1310
|
font-size: var(--font-size-100);
|
|
1303
1311
|
line-height: var(--font-line-height-100);
|
|
1304
1312
|
font-weight: var(--p-font-weight-normal);
|
|
1305
1313
|
color: var(--color-grey-500);
|
|
1306
1314
|
}
|
|
1307
1315
|
._2EaHy {
|
|
1308
|
-
font-family: var(--font-family-
|
|
1316
|
+
font-family: var(--font-family-body);
|
|
1309
1317
|
font-size: var(--font-size-100);
|
|
1310
1318
|
line-height: var(--font-line-height-100);
|
|
1311
1319
|
font-weight: var(--p-font-weight-normal);
|
|
1312
1320
|
color: var(--color-radish-400);
|
|
1313
1321
|
}
|
|
1314
1322
|
._3BVGA {
|
|
1315
|
-
font-family: var(--font-family-
|
|
1323
|
+
font-family: var(--font-family-body);
|
|
1316
1324
|
font-size: var(--font-size-200);
|
|
1317
1325
|
line-height: var(--font-line-height-200);
|
|
1318
1326
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1367,7 +1375,7 @@ Just for future references:
|
|
|
1367
1375
|
}
|
|
1368
1376
|
|
|
1369
1377
|
._KE6FS {
|
|
1370
|
-
font-family: var(--font-family-
|
|
1378
|
+
font-family: var(--font-family-body);
|
|
1371
1379
|
font-size: var(--font-size-200);
|
|
1372
1380
|
line-height: var(--font-line-height-200);
|
|
1373
1381
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1392,7 +1400,7 @@ Just for future references:
|
|
|
1392
1400
|
}
|
|
1393
1401
|
|
|
1394
1402
|
._1Zl92 {
|
|
1395
|
-
font-family: var(--font-family-
|
|
1403
|
+
font-family: var(--font-family-body);
|
|
1396
1404
|
font-size: var(--font-size-200);
|
|
1397
1405
|
line-height: var(--font-line-height-200);
|
|
1398
1406
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1446,7 +1454,7 @@ Just for future references:
|
|
|
1446
1454
|
color: var(--color-grey-400);
|
|
1447
1455
|
}
|
|
1448
1456
|
._3zhrP {
|
|
1449
|
-
font-family: var(--font-family-
|
|
1457
|
+
font-family: var(--font-family-body);
|
|
1450
1458
|
font-size: var(--font-size-200);
|
|
1451
1459
|
line-height: var(--font-line-height-200);
|
|
1452
1460
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1475,40 +1483,41 @@ Just for future references:
|
|
|
1475
1483
|
outline: none;
|
|
1476
1484
|
}
|
|
1477
1485
|
h1._32amZ {
|
|
1478
|
-
font-family: var(--font-family-
|
|
1486
|
+
font-family: var(--font-family-heading);
|
|
1479
1487
|
font-size: var(--font-size-600);
|
|
1480
1488
|
line-height: var(--font-line-height-600);
|
|
1481
|
-
font-weight: var(--p-font-weight-
|
|
1489
|
+
font-weight: var(--p-font-weight-semibold);
|
|
1490
|
+
color: var(--color-grey-600);
|
|
1482
1491
|
}
|
|
1483
1492
|
|
|
1484
1493
|
h2._32amZ {
|
|
1485
|
-
font-family: var(--font-family-
|
|
1494
|
+
font-family: var(--font-family-heading);
|
|
1486
1495
|
font-size: var(--font-size-500);
|
|
1487
1496
|
line-height: var(--font-line-height-500);
|
|
1488
|
-
font-weight: var(--p-font-weight-
|
|
1497
|
+
font-weight: var(--p-font-weight-semibold);
|
|
1498
|
+
color: var(--color-grey-600);
|
|
1489
1499
|
}
|
|
1490
1500
|
|
|
1491
1501
|
h3._32amZ {
|
|
1492
|
-
font-family: var(--font-family-
|
|
1502
|
+
font-family: var(--font-family-heading);
|
|
1493
1503
|
font-size: var(--font-size-400);
|
|
1494
1504
|
line-height: var(--font-line-height-400);
|
|
1495
|
-
font-weight: var(--p-font-weight-
|
|
1505
|
+
font-weight: var(--p-font-weight-semibold);
|
|
1506
|
+
color: var(--color-grey-600);
|
|
1496
1507
|
}
|
|
1497
1508
|
|
|
1498
1509
|
h4._32amZ {
|
|
1499
|
-
font-family: var(--font-family-
|
|
1510
|
+
font-family: var(--font-family-body);
|
|
1500
1511
|
font-size: var(--font-size-400);
|
|
1501
1512
|
line-height: var(--font-line-height-400);
|
|
1502
1513
|
font-weight: var(--p-font-weight-normal);
|
|
1503
|
-
color: var(--color-grey-400);
|
|
1504
1514
|
}
|
|
1505
1515
|
|
|
1506
1516
|
h5._32amZ {
|
|
1507
|
-
font-family: var(--font-family-
|
|
1517
|
+
font-family: var(--font-family-body);
|
|
1508
1518
|
font-size: var(--font-size-300);
|
|
1509
1519
|
line-height: var(--font-line-height-300);
|
|
1510
1520
|
font-weight: var(--p-font-weight-normal);
|
|
1511
|
-
color: var(--color-grey-400);
|
|
1512
1521
|
}
|
|
1513
1522
|
|
|
1514
1523
|
._32amZ {
|
|
@@ -1516,25 +1525,26 @@ h5._32amZ {
|
|
|
1516
1525
|
margin: 0;
|
|
1517
1526
|
}
|
|
1518
1527
|
._ayJRy {
|
|
1519
|
-
font-family: var(--font-family-
|
|
1528
|
+
font-family: var(--font-family-body);
|
|
1520
1529
|
font-size: var(--font-size-200);
|
|
1521
1530
|
line-height: var(--font-line-height-200);
|
|
1522
1531
|
font-weight: var(--p-font-weight-normal);
|
|
1523
1532
|
}
|
|
1524
1533
|
._3g1gi {
|
|
1525
|
-
font-family: var(--font-family-
|
|
1534
|
+
font-family: var(--font-family-body);
|
|
1526
1535
|
font-size: var(--font-size-100);
|
|
1527
1536
|
line-height: var(--font-line-height-100);
|
|
1528
1537
|
font-weight: var(--p-font-weight-normal);
|
|
1529
1538
|
}
|
|
1530
1539
|
._20Phg {
|
|
1531
|
-
font-family: var(--font-family-
|
|
1540
|
+
font-family: var(--font-family-heading);
|
|
1532
1541
|
font-size: var(--font-size-700);
|
|
1533
1542
|
line-height: var(--font-line-height-700);
|
|
1534
|
-
font-weight: var(--p-font-weight-
|
|
1543
|
+
font-weight: var(--p-font-weight-semibold);
|
|
1535
1544
|
}
|
|
1536
1545
|
._A0AyZ {
|
|
1537
1546
|
font-weight: var(--p-font-weight-bold);
|
|
1547
|
+
color: var(--color-grey-600);
|
|
1538
1548
|
}
|
|
1539
1549
|
._3jayQ {
|
|
1540
1550
|
font-style: italic;
|
|
@@ -1630,7 +1640,7 @@ h5._32amZ {
|
|
|
1630
1640
|
text-transform: uppercase;
|
|
1631
1641
|
}
|
|
1632
1642
|
._12zfd {
|
|
1633
|
-
font-family: var(--font-family-
|
|
1643
|
+
font-family: var(--font-family-body);
|
|
1634
1644
|
font-size: var(--font-size-200);
|
|
1635
1645
|
line-height: var(--font-line-height-200);
|
|
1636
1646
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1668,7 +1678,7 @@ h5._32amZ {
|
|
|
1668
1678
|
max-width: 1000px;
|
|
1669
1679
|
}
|
|
1670
1680
|
._EtQ8V {
|
|
1671
|
-
font-family: var(--font-family-
|
|
1681
|
+
font-family: var(--font-family-body);
|
|
1672
1682
|
font-size: var(--font-size-200);
|
|
1673
1683
|
line-height: var(--font-line-height-200);
|
|
1674
1684
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1691,7 +1701,7 @@ h5._32amZ {
|
|
|
1691
1701
|
height: 48px;
|
|
1692
1702
|
}
|
|
1693
1703
|
._2u-Hw {
|
|
1694
|
-
font-family: var(--font-family-
|
|
1704
|
+
font-family: var(--font-family-body);
|
|
1695
1705
|
font-size: var(--font-size-100);
|
|
1696
1706
|
line-height: var(--font-line-height-100);
|
|
1697
1707
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1725,8 +1735,6 @@ h5._32amZ {
|
|
|
1725
1735
|
._3cjo0 {
|
|
1726
1736
|
display: flex;
|
|
1727
1737
|
justify-content: space-around;
|
|
1728
|
-
color: var(--color-grey-500);
|
|
1729
|
-
font-family: var(--font-family-brand);
|
|
1730
1738
|
}
|
|
1731
1739
|
._WwXRR {
|
|
1732
1740
|
background: var(--color-grey-100);
|
|
@@ -1925,10 +1933,10 @@ h5._32amZ {
|
|
|
1925
1933
|
opacity: 0;
|
|
1926
1934
|
}
|
|
1927
1935
|
._2iRIU {
|
|
1928
|
-
font-family: var(--font-family-
|
|
1936
|
+
font-family: var(--font-family-heading);
|
|
1929
1937
|
font-size: var(--font-size-500);
|
|
1930
1938
|
line-height: var(--font-line-height-500);
|
|
1931
|
-
font-weight: var(--p-font-weight-
|
|
1939
|
+
font-weight: var(--p-font-weight-semibold);
|
|
1932
1940
|
color: var(--color-grey-500);
|
|
1933
1941
|
padding: 0;
|
|
1934
1942
|
}
|
|
@@ -1941,7 +1949,7 @@ h5._32amZ {
|
|
|
1941
1949
|
}
|
|
1942
1950
|
|
|
1943
1951
|
._3UWdF {
|
|
1944
|
-
font-family: var(--font-family-
|
|
1952
|
+
font-family: var(--font-family-body);
|
|
1945
1953
|
font-size: var(--font-size-400);
|
|
1946
1954
|
line-height: var(--font-line-height-400);
|
|
1947
1955
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -1953,7 +1961,7 @@ h5._32amZ {
|
|
|
1953
1961
|
* There is a cleaner solution using background-attachment (https://lea.verou.me/2012/04/background-attachment-local/) but I had some issues in Chrome using that approach
|
|
1954
1962
|
*/
|
|
1955
1963
|
._vu6lH {
|
|
1956
|
-
font-family: var(--font-family-
|
|
1964
|
+
font-family: var(--font-family-body);
|
|
1957
1965
|
font-size: var(--font-size-200);
|
|
1958
1966
|
line-height: var(--font-line-height-200);
|
|
1959
1967
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -2025,7 +2033,7 @@ h5._32amZ {
|
|
|
2025
2033
|
}
|
|
2026
2034
|
|
|
2027
2035
|
._3YRyk {
|
|
2028
|
-
font-family: var(--font-family-
|
|
2036
|
+
font-family: var(--font-family-body);
|
|
2029
2037
|
font-size: var(--font-size-200);
|
|
2030
2038
|
line-height: var(--font-line-height-200);
|
|
2031
2039
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -2104,7 +2112,7 @@ h5._32amZ {
|
|
|
2104
2112
|
}
|
|
2105
2113
|
|
|
2106
2114
|
._2AdsD {
|
|
2107
|
-
font-family: var(--font-family-
|
|
2115
|
+
font-family: var(--font-family-body);
|
|
2108
2116
|
font-size: var(--font-size-200);
|
|
2109
2117
|
line-height: var(--font-line-height-200);
|
|
2110
2118
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -2314,7 +2322,7 @@ input:disabled + ._2W10t::after {
|
|
|
2314
2322
|
height: 100%;
|
|
2315
2323
|
}
|
|
2316
2324
|
._1-1WW input {
|
|
2317
|
-
font-family: var(--font-family-
|
|
2325
|
+
font-family: var(--font-family-body);
|
|
2318
2326
|
font-size: var(--font-size-200);
|
|
2319
2327
|
line-height: var(--font-line-height-200);
|
|
2320
2328
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -2624,7 +2632,7 @@ input:disabled + ._2W10t::after {
|
|
|
2624
2632
|
max-width: 667px;
|
|
2625
2633
|
}
|
|
2626
2634
|
._1b3C0 {
|
|
2627
|
-
font-family: var(--font-family-
|
|
2635
|
+
font-family: var(--font-family-body);
|
|
2628
2636
|
font-size: var(--font-size-200);
|
|
2629
2637
|
line-height: var(--font-line-height-200);
|
|
2630
2638
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -2686,6 +2694,54 @@ input:disabled + ._2W10t::after {
|
|
|
2686
2694
|
border-radius: 20px;
|
|
2687
2695
|
background-color: var(--color-white);
|
|
2688
2696
|
}
|
|
2697
|
+
._9iCpw {
|
|
2698
|
+
border: 1px solid var(--color-grey-200);
|
|
2699
|
+
border-radius: var(--border-radius-600);
|
|
2700
|
+
background-color: var(--color-white);
|
|
2701
|
+
}
|
|
2702
|
+
._9iCpw > *:not(:last-child) {
|
|
2703
|
+
border-bottom: 1px solid var(--color-grey-200);
|
|
2704
|
+
}
|
|
2705
|
+
._9iCpw > *:last-child {
|
|
2706
|
+
border-radius: 0 0 var(--border-radius-600) var(--border-radius-600);
|
|
2707
|
+
}
|
|
2708
|
+
._9iCpw > *:first-child {
|
|
2709
|
+
border-radius: var(--border-radius-600) var(--border-radius-600) 0 0;
|
|
2710
|
+
}
|
|
2711
|
+
._9iCpw > *:only-child {
|
|
2712
|
+
border-radius: var(--border-radius-600);
|
|
2713
|
+
border-bottom: none;
|
|
2714
|
+
}
|
|
2715
|
+
._n1vRf {
|
|
2716
|
+
width: 100%;
|
|
2717
|
+
height: 100%;
|
|
2718
|
+
background-color: var(--color-white);
|
|
2719
|
+
border: none;
|
|
2720
|
+
padding: 16px;
|
|
2721
|
+
color: var(--color-grey-500);
|
|
2722
|
+
text-align: inherit;
|
|
2723
|
+
position: relative;
|
|
2724
|
+
z-index: 1;
|
|
2725
|
+
outline: none;
|
|
2726
|
+
}
|
|
2727
|
+
._1cHQz p {
|
|
2728
|
+
color: var(--color-grey-300);
|
|
2729
|
+
}
|
|
2730
|
+
._T7LTs {
|
|
2731
|
+
cursor: pointer;
|
|
2732
|
+
transition: all ease-in-out 150ms;
|
|
2733
|
+
}
|
|
2734
|
+
._T7LTs:hover {
|
|
2735
|
+
background-color: var(--color-grey-100);
|
|
2736
|
+
}
|
|
2737
|
+
._T7LTs:focus {
|
|
2738
|
+
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
2739
|
+
z-index: 2;
|
|
2740
|
+
outline: none;
|
|
2741
|
+
}
|
|
2742
|
+
._2DAEW {
|
|
2743
|
+
white-space: nowrap;
|
|
2744
|
+
}
|
|
2689
2745
|
._1JTKu {
|
|
2690
2746
|
flex: 1;
|
|
2691
2747
|
display: "flex";
|
|
@@ -2714,7 +2770,7 @@ input:disabled + ._2W10t::after {
|
|
|
2714
2770
|
width: 336px;
|
|
2715
2771
|
}
|
|
2716
2772
|
._2UNAw {
|
|
2717
|
-
font-family: var(--font-family-
|
|
2773
|
+
font-family: var(--font-family-body);
|
|
2718
2774
|
font-size: var(--font-size-200);
|
|
2719
2775
|
line-height: var(--font-line-height-200);
|
|
2720
2776
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -2771,7 +2827,7 @@ input:disabled + ._2W10t::after {
|
|
|
2771
2827
|
display: flex;
|
|
2772
2828
|
}
|
|
2773
2829
|
._9hSoW {
|
|
2774
|
-
font-family: var(--font-family-
|
|
2830
|
+
font-family: var(--font-family-body);
|
|
2775
2831
|
font-size: var(--font-size-200);
|
|
2776
2832
|
line-height: var(--font-line-height-200);
|
|
2777
2833
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -2865,14 +2921,14 @@ input:disabled + ._2W10t::after {
|
|
|
2865
2921
|
color: var(--color-grey-500);
|
|
2866
2922
|
}
|
|
2867
2923
|
._39X-5 {
|
|
2868
|
-
font-family: var(--font-family-
|
|
2924
|
+
font-family: var(--font-family-heading);
|
|
2869
2925
|
font-size: var(--font-size-400);
|
|
2870
2926
|
line-height: var(--font-line-height-400);
|
|
2871
|
-
font-weight: var(--p-font-weight-
|
|
2927
|
+
font-weight: var(--p-font-weight-semibold);
|
|
2872
2928
|
margin: 0;
|
|
2873
2929
|
}
|
|
2874
2930
|
._pwBR_ {
|
|
2875
|
-
font-family: var(--font-family-
|
|
2931
|
+
font-family: var(--font-family-body);
|
|
2876
2932
|
font-size: var(--font-size-200);
|
|
2877
2933
|
line-height: var(--font-line-height-200);
|
|
2878
2934
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -2899,7 +2955,7 @@ input:disabled + ._2W10t::after {
|
|
|
2899
2955
|
background-color: var(--color-white);
|
|
2900
2956
|
}
|
|
2901
2957
|
._eyfGn textarea {
|
|
2902
|
-
font-family: var(--font-family-
|
|
2958
|
+
font-family: var(--font-family-body);
|
|
2903
2959
|
font-size: var(--font-size-200);
|
|
2904
2960
|
line-height: var(--font-line-height-200);
|
|
2905
2961
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -2947,7 +3003,7 @@ input:disabled + ._2W10t::after {
|
|
|
2947
3003
|
cursor: pointer;
|
|
2948
3004
|
}
|
|
2949
3005
|
._W4HpY {
|
|
2950
|
-
font-family: var(--font-family-
|
|
3006
|
+
font-family: var(--font-family-body);
|
|
2951
3007
|
font-size: var(--font-size-200);
|
|
2952
3008
|
line-height: var(--font-line-height-200);
|
|
2953
3009
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -3000,7 +3056,7 @@ input:focus-visible + ._W4HpY {
|
|
|
3000
3056
|
outline: none;
|
|
3001
3057
|
}
|
|
3002
3058
|
._3QyeH {
|
|
3003
|
-
font-family: var(--font-family-
|
|
3059
|
+
font-family: var(--font-family-body);
|
|
3004
3060
|
font-size: var(--font-size-200);
|
|
3005
3061
|
line-height: var(--font-line-height-200);
|
|
3006
3062
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -3019,7 +3075,7 @@ input:focus-visible + ._W4HpY {
|
|
|
3019
3075
|
}
|
|
3020
3076
|
|
|
3021
3077
|
._thT22 {
|
|
3022
|
-
font-family: var(--font-family-
|
|
3078
|
+
font-family: var(--font-family-body);
|
|
3023
3079
|
font-size: var(--font-size-200);
|
|
3024
3080
|
line-height: var(--font-line-height-200);
|
|
3025
3081
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -3031,7 +3087,7 @@ input:focus-visible + ._W4HpY {
|
|
|
3031
3087
|
min-height: 16px;
|
|
3032
3088
|
}
|
|
3033
3089
|
._3hIRY {
|
|
3034
|
-
font-family: var(--font-family-
|
|
3090
|
+
font-family: var(--font-family-body);
|
|
3035
3091
|
font-size: var(--font-size-200);
|
|
3036
3092
|
line-height: var(--font-line-height-200);
|
|
3037
3093
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -3050,7 +3106,7 @@ input:focus-visible + ._W4HpY {
|
|
|
3050
3106
|
}
|
|
3051
3107
|
|
|
3052
3108
|
._2RJol {
|
|
3053
|
-
font-family: var(--font-family-
|
|
3109
|
+
font-family: var(--font-family-body);
|
|
3054
3110
|
font-size: var(--font-size-100);
|
|
3055
3111
|
line-height: var(--font-line-height-100);
|
|
3056
3112
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -3102,7 +3158,7 @@ input:checked ~ ._3mCob {
|
|
|
3102
3158
|
pointer-events: none;
|
|
3103
3159
|
}
|
|
3104
3160
|
._kl23S {
|
|
3105
|
-
font-family: var(--font-family-
|
|
3161
|
+
font-family: var(--font-family-body);
|
|
3106
3162
|
font-size: var(--font-size-200);
|
|
3107
3163
|
line-height: var(--font-line-height-200);
|
|
3108
3164
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -3117,7 +3173,7 @@ input:checked ~ ._3mCob {
|
|
|
3117
3173
|
color: var(--color-grey-300);
|
|
3118
3174
|
}
|
|
3119
3175
|
._2CvoH {
|
|
3120
|
-
font-family: var(--font-family-
|
|
3176
|
+
font-family: var(--font-family-body);
|
|
3121
3177
|
font-size: var(--font-size-100);
|
|
3122
3178
|
line-height: var(--font-line-height-100);
|
|
3123
3179
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -3190,7 +3246,7 @@ input:disabled + ._1aaPx::after {
|
|
|
3190
3246
|
top: 4px;
|
|
3191
3247
|
}
|
|
3192
3248
|
._2XkkE {
|
|
3193
|
-
font-family: var(--font-family-
|
|
3249
|
+
font-family: var(--font-family-body);
|
|
3194
3250
|
font-size: var(--font-size-200);
|
|
3195
3251
|
line-height: var(--font-line-height-200);
|
|
3196
3252
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -3245,15 +3301,13 @@ input:disabled + ._1aaPx::after {
|
|
|
3245
3301
|
}
|
|
3246
3302
|
._1XvvK {
|
|
3247
3303
|
color: var(--color-grey-200);
|
|
3248
|
-
font-family: var(--font-family-brand);
|
|
3249
3304
|
}
|
|
3250
3305
|
|
|
3251
3306
|
._1cNVk {
|
|
3252
3307
|
color: var(--color-grey-400);
|
|
3253
|
-
font-family: var(--font-family-brand);
|
|
3254
3308
|
}
|
|
3255
3309
|
._12jq3 {
|
|
3256
|
-
font-family: var(--font-family-
|
|
3310
|
+
font-family: var(--font-family-body);
|
|
3257
3311
|
font-size: var(--font-size-200);
|
|
3258
3312
|
line-height: var(--font-line-height-200);
|
|
3259
3313
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -3264,7 +3318,7 @@ input:disabled + ._1aaPx::after {
|
|
|
3264
3318
|
padding: 8px 12px;
|
|
3265
3319
|
}
|
|
3266
3320
|
._10EFd, ._33Mhr {
|
|
3267
|
-
font-family: var(--font-family-
|
|
3321
|
+
font-family: var(--font-family-body);
|
|
3268
3322
|
font-size: var(--font-size-200);
|
|
3269
3323
|
line-height: var(--font-line-height-200);
|
|
3270
3324
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -3311,7 +3365,7 @@ input:disabled + ._1aaPx::after {
|
|
|
3311
3365
|
width: 100%;
|
|
3312
3366
|
}
|
|
3313
3367
|
._vgwnU, ._LZvMX input, ._LZvMX {
|
|
3314
|
-
font-family: var(--font-family-
|
|
3368
|
+
font-family: var(--font-family-body);
|
|
3315
3369
|
font-size: var(--font-size-200);
|
|
3316
3370
|
line-height: var(--font-line-height-200);
|
|
3317
3371
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -3409,7 +3463,7 @@ input:disabled + ._1aaPx::after {
|
|
|
3409
3463
|
}
|
|
3410
3464
|
|
|
3411
3465
|
._2x1hd {
|
|
3412
|
-
font-family: var(--font-family-
|
|
3466
|
+
font-family: var(--font-family-body);
|
|
3413
3467
|
font-size: var(--font-size-200);
|
|
3414
3468
|
line-height: var(--font-line-height-200);
|
|
3415
3469
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -3477,7 +3531,7 @@ input:disabled + ._1aaPx::after {
|
|
|
3477
3531
|
color: var(--color-grey-200);
|
|
3478
3532
|
}
|
|
3479
3533
|
._pPDKc, ._rSyiE input, ._rSyiE {
|
|
3480
|
-
font-family: var(--font-family-
|
|
3534
|
+
font-family: var(--font-family-body);
|
|
3481
3535
|
font-size: var(--font-size-200);
|
|
3482
3536
|
line-height: var(--font-line-height-200);
|
|
3483
3537
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -3554,7 +3608,7 @@ input:disabled + ._1aaPx::after {
|
|
|
3554
3608
|
border-bottom-left-radius: 0;
|
|
3555
3609
|
}
|
|
3556
3610
|
._2K8Ob {
|
|
3557
|
-
font-family: var(--font-family-
|
|
3611
|
+
font-family: var(--font-family-body);
|
|
3558
3612
|
font-size: var(--font-size-200);
|
|
3559
3613
|
line-height: var(--font-line-height-200);
|
|
3560
3614
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -4618,7 +4672,7 @@ input._1zowl {
|
|
|
4618
4672
|
background-image: url(./flags/zw.svg);
|
|
4619
4673
|
}
|
|
4620
4674
|
._1QLaK {
|
|
4621
|
-
font-family: var(--font-family-
|
|
4675
|
+
font-family: var(--font-family-body);
|
|
4622
4676
|
font-size: var(--font-size-100);
|
|
4623
4677
|
line-height: var(--font-line-height-100);
|
|
4624
4678
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -4632,6 +4686,7 @@ input._1zowl {
|
|
|
4632
4686
|
box-sizing: border-box;
|
|
4633
4687
|
padding: 0 6px;
|
|
4634
4688
|
align-items: center;
|
|
4689
|
+
justify-content: center;
|
|
4635
4690
|
border: 1px solid var(--color-white);
|
|
4636
4691
|
}
|
|
4637
4692
|
._1QLaK svg {
|
|
@@ -4649,6 +4704,10 @@ input._1zowl {
|
|
|
4649
4704
|
._1mLjf {
|
|
4650
4705
|
background-color: var(--color-blueberry-400);
|
|
4651
4706
|
}
|
|
4707
|
+
._2bb5N {
|
|
4708
|
+
font-variant-numeric: tabular-nums;
|
|
4709
|
+
padding: 0 5px;
|
|
4710
|
+
}
|
|
4652
4711
|
._1X7La {
|
|
4653
4712
|
display: flex;
|
|
4654
4713
|
justify-content: center;
|
|
@@ -4674,7 +4733,7 @@ input._1zowl {
|
|
|
4674
4733
|
object-fit: cover;
|
|
4675
4734
|
}
|
|
4676
4735
|
._o5x6S {
|
|
4677
|
-
font-family: var(--font-family-
|
|
4736
|
+
font-family: var(--font-family-body);
|
|
4678
4737
|
font-size: var(--font-size-200);
|
|
4679
4738
|
line-height: var(--font-line-height-200);
|
|
4680
4739
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -4686,7 +4745,7 @@ input._1zowl {
|
|
|
4686
4745
|
margin-top: 10px;
|
|
4687
4746
|
}
|
|
4688
4747
|
._VxW5y {
|
|
4689
|
-
font-family: var(--font-family-
|
|
4748
|
+
font-family: var(--font-family-body);
|
|
4690
4749
|
font-size: var(--font-size-400);
|
|
4691
4750
|
line-height: var(--font-line-height-400);
|
|
4692
4751
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -4698,10 +4757,10 @@ input._1zowl {
|
|
|
4698
4757
|
margin-top: 15px;
|
|
4699
4758
|
}
|
|
4700
4759
|
._ec7jQ {
|
|
4701
|
-
font-family: var(--font-family-
|
|
4760
|
+
font-family: var(--font-family-heading);
|
|
4702
4761
|
font-size: var(--font-size-500);
|
|
4703
4762
|
line-height: var(--font-line-height-500);
|
|
4704
|
-
font-weight: var(--p-font-weight-
|
|
4763
|
+
font-weight: var(--p-font-weight-semibold);
|
|
4705
4764
|
width: 40px;
|
|
4706
4765
|
height: 40px;
|
|
4707
4766
|
}
|
|
@@ -4710,10 +4769,10 @@ input._1zowl {
|
|
|
4710
4769
|
margin-top: 18px;
|
|
4711
4770
|
}
|
|
4712
4771
|
._3VS00 {
|
|
4713
|
-
font-family: var(--font-family-
|
|
4772
|
+
font-family: var(--font-family-heading);
|
|
4714
4773
|
font-size: var(--font-size-600);
|
|
4715
4774
|
line-height: var(--font-line-height-600);
|
|
4716
|
-
font-weight: var(--p-font-weight-
|
|
4775
|
+
font-weight: var(--p-font-weight-semibold);
|
|
4717
4776
|
width: 80px;
|
|
4718
4777
|
height: 80px;
|
|
4719
4778
|
}
|
|
@@ -4731,7 +4790,7 @@ input._1zowl {
|
|
|
4731
4790
|
padding-top: 25%;
|
|
4732
4791
|
}
|
|
4733
4792
|
._3e7Of {
|
|
4734
|
-
font-family: var(--font-family-
|
|
4793
|
+
font-family: var(--font-family-body);
|
|
4735
4794
|
font-size: var(--font-size-100);
|
|
4736
4795
|
line-height: var(--font-line-height-100);
|
|
4737
4796
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -4767,7 +4826,7 @@ input._1zowl {
|
|
|
4767
4826
|
color: var(--color-radish-600);
|
|
4768
4827
|
}
|
|
4769
4828
|
._1vA9B {
|
|
4770
|
-
font-family: var(--font-family-
|
|
4829
|
+
font-family: var(--font-family-body);
|
|
4771
4830
|
font-size: var(--font-size-200);
|
|
4772
4831
|
line-height: var(--font-line-height-200);
|
|
4773
4832
|
font-weight: var(--p-font-weight-normal);
|
|
@@ -4824,7 +4883,7 @@ input._1zowl {
|
|
|
4824
4883
|
max-width: 667px;
|
|
4825
4884
|
}
|
|
4826
4885
|
._1o2PF {
|
|
4827
|
-
font-family: var(--font-family-
|
|
4886
|
+
font-family: var(--font-family-body);
|
|
4828
4887
|
font-size: var(--font-size-200);
|
|
4829
4888
|
line-height: var(--font-line-height-200);
|
|
4830
4889
|
font-weight: var(--p-font-weight-normal);
|