@tapcart/mobile-components 0.4.6 → 0.4.7
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/components/hooks/use-infinite-scroll.d.ts +3 -1
- package/dist/components/hooks/use-infinite-scroll.d.ts.map +1 -1
- package/dist/components/hooks/use-infinite-scroll.js +43 -72
- package/dist/components/ui/drawer.d.ts.map +1 -1
- package/dist/components/ui/drawer.js +2 -1
- package/dist/components/ui/product-card.d.ts.map +1 -1
- package/dist/components/ui/product-card.js +8 -6
- package/dist/components/ui/skeleton.d.ts +1 -1
- package/dist/components/ui/skeleton.d.ts.map +1 -1
- package/dist/components/ui/skeleton.js +6 -5
- package/dist/components/ui/slider.js +1 -1
- package/dist/styles.css +192 -622
- package/package.json +16 -16
- package/dist/components/ui/input.d.ts +0 -17
- package/dist/components/ui/input.d.ts.map +0 -1
- package/dist/components/ui/input.js +0 -35
- package/dist/components/ui/product-grid.d.ts +0 -15
- package/dist/components/ui/product-grid.d.ts.map +0 -1
- package/dist/components/ui/product-grid.js +0 -22
package/dist/styles.css
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
! tailwindcss v3.3.5 | MIT License | https://tailwindcss.com
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
/*
|
|
3
|
+
*//*
|
|
6
4
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
7
5
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
8
6
|
*/
|
|
@@ -10,14 +8,10 @@
|
|
|
10
8
|
*,
|
|
11
9
|
::before,
|
|
12
10
|
::after {
|
|
13
|
-
box-sizing: border-box;
|
|
14
|
-
/*
|
|
15
|
-
border-
|
|
16
|
-
/* 2 */
|
|
17
|
-
border-style: solid;
|
|
18
|
-
/* 2 */
|
|
19
|
-
border-color: #e5e7eb;
|
|
20
|
-
/* 2 */
|
|
11
|
+
box-sizing: border-box; /* 1 */
|
|
12
|
+
border-width: 0; /* 2 */
|
|
13
|
+
border-style: solid; /* 2 */
|
|
14
|
+
border-color: #e5e7eb; /* 2 */
|
|
21
15
|
}
|
|
22
16
|
|
|
23
17
|
::before,
|
|
@@ -35,21 +29,14 @@
|
|
|
35
29
|
*/
|
|
36
30
|
|
|
37
31
|
html {
|
|
38
|
-
line-height: 1.5;
|
|
39
|
-
/*
|
|
40
|
-
-
|
|
41
|
-
/* 2 */
|
|
42
|
-
-moz-tab-size: 4;
|
|
43
|
-
/* 3 */
|
|
32
|
+
line-height: 1.5; /* 1 */
|
|
33
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
|
34
|
+
-moz-tab-size: 4; /* 3 */
|
|
44
35
|
-o-tab-size: 4;
|
|
45
|
-
tab-size: 4;
|
|
46
|
-
/*
|
|
47
|
-
font-
|
|
48
|
-
/*
|
|
49
|
-
font-feature-settings: normal;
|
|
50
|
-
/* 5 */
|
|
51
|
-
font-variation-settings: normal;
|
|
52
|
-
/* 6 */
|
|
36
|
+
tab-size: 4; /* 3 */
|
|
37
|
+
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
|
|
38
|
+
font-feature-settings: normal; /* 5 */
|
|
39
|
+
font-variation-settings: normal; /* 6 */
|
|
53
40
|
}
|
|
54
41
|
|
|
55
42
|
/*
|
|
@@ -58,10 +45,8 @@ html {
|
|
|
58
45
|
*/
|
|
59
46
|
|
|
60
47
|
body {
|
|
61
|
-
margin: 0;
|
|
62
|
-
/*
|
|
63
|
-
line-height: inherit;
|
|
64
|
-
/* 2 */
|
|
48
|
+
margin: 0; /* 1 */
|
|
49
|
+
line-height: inherit; /* 2 */
|
|
65
50
|
}
|
|
66
51
|
|
|
67
52
|
/*
|
|
@@ -71,12 +56,9 @@ body {
|
|
|
71
56
|
*/
|
|
72
57
|
|
|
73
58
|
hr {
|
|
74
|
-
height: 0;
|
|
75
|
-
/*
|
|
76
|
-
|
|
77
|
-
/* 2 */
|
|
78
|
-
border-top-width: 1px;
|
|
79
|
-
/* 3 */
|
|
59
|
+
height: 0; /* 1 */
|
|
60
|
+
color: inherit; /* 2 */
|
|
61
|
+
border-top-width: 1px; /* 3 */
|
|
80
62
|
}
|
|
81
63
|
|
|
82
64
|
/*
|
|
@@ -129,10 +111,8 @@ code,
|
|
|
129
111
|
kbd,
|
|
130
112
|
samp,
|
|
131
113
|
pre {
|
|
132
|
-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
133
|
-
/*
|
|
134
|
-
font-size: 1em;
|
|
135
|
-
/* 2 */
|
|
114
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
|
|
115
|
+
font-size: 1em; /* 2 */
|
|
136
116
|
}
|
|
137
117
|
|
|
138
118
|
/*
|
|
@@ -170,12 +150,9 @@ sup {
|
|
|
170
150
|
*/
|
|
171
151
|
|
|
172
152
|
table {
|
|
173
|
-
text-indent: 0;
|
|
174
|
-
/*
|
|
175
|
-
border-
|
|
176
|
-
/* 2 */
|
|
177
|
-
border-collapse: collapse;
|
|
178
|
-
/* 3 */
|
|
153
|
+
text-indent: 0; /* 1 */
|
|
154
|
+
border-color: inherit; /* 2 */
|
|
155
|
+
border-collapse: collapse; /* 3 */
|
|
179
156
|
}
|
|
180
157
|
|
|
181
158
|
/*
|
|
@@ -189,24 +166,15 @@ input,
|
|
|
189
166
|
optgroup,
|
|
190
167
|
select,
|
|
191
168
|
textarea {
|
|
192
|
-
font-family: inherit;
|
|
193
|
-
/* 1 */
|
|
194
|
-
font-
|
|
195
|
-
/* 1 */
|
|
196
|
-
font-
|
|
197
|
-
/* 1 */
|
|
198
|
-
|
|
199
|
-
/*
|
|
200
|
-
|
|
201
|
-
/* 1 */
|
|
202
|
-
line-height: inherit;
|
|
203
|
-
/* 1 */
|
|
204
|
-
color: inherit;
|
|
205
|
-
/* 1 */
|
|
206
|
-
margin: 0;
|
|
207
|
-
/* 2 */
|
|
208
|
-
padding: 0;
|
|
209
|
-
/* 3 */
|
|
169
|
+
font-family: inherit; /* 1 */
|
|
170
|
+
font-feature-settings: inherit; /* 1 */
|
|
171
|
+
font-variation-settings: inherit; /* 1 */
|
|
172
|
+
font-size: 100%; /* 1 */
|
|
173
|
+
font-weight: inherit; /* 1 */
|
|
174
|
+
line-height: inherit; /* 1 */
|
|
175
|
+
color: inherit; /* 1 */
|
|
176
|
+
margin: 0; /* 2 */
|
|
177
|
+
padding: 0; /* 3 */
|
|
210
178
|
}
|
|
211
179
|
|
|
212
180
|
/*
|
|
@@ -227,12 +195,9 @@ button,
|
|
|
227
195
|
[type='button'],
|
|
228
196
|
[type='reset'],
|
|
229
197
|
[type='submit'] {
|
|
230
|
-
-webkit-appearance: button;
|
|
231
|
-
/*
|
|
232
|
-
background-
|
|
233
|
-
/* 2 */
|
|
234
|
-
background-image: none;
|
|
235
|
-
/* 2 */
|
|
198
|
+
-webkit-appearance: button; /* 1 */
|
|
199
|
+
background-color: transparent; /* 2 */
|
|
200
|
+
background-image: none; /* 2 */
|
|
236
201
|
}
|
|
237
202
|
|
|
238
203
|
/*
|
|
@@ -274,10 +239,8 @@ Correct the cursor style of increment and decrement buttons in Safari.
|
|
|
274
239
|
*/
|
|
275
240
|
|
|
276
241
|
[type='search'] {
|
|
277
|
-
-webkit-appearance: textfield;
|
|
278
|
-
/*
|
|
279
|
-
outline-offset: -2px;
|
|
280
|
-
/* 2 */
|
|
242
|
+
-webkit-appearance: textfield; /* 1 */
|
|
243
|
+
outline-offset: -2px; /* 2 */
|
|
281
244
|
}
|
|
282
245
|
|
|
283
246
|
/*
|
|
@@ -294,10 +257,8 @@ Remove the inner padding in Chrome and Safari on macOS.
|
|
|
294
257
|
*/
|
|
295
258
|
|
|
296
259
|
::-webkit-file-upload-button {
|
|
297
|
-
-webkit-appearance: button;
|
|
298
|
-
/*
|
|
299
|
-
font: inherit;
|
|
300
|
-
/* 2 */
|
|
260
|
+
-webkit-appearance: button; /* 1 */
|
|
261
|
+
font: inherit; /* 2 */
|
|
301
262
|
}
|
|
302
263
|
|
|
303
264
|
/*
|
|
@@ -348,7 +309,6 @@ menu {
|
|
|
348
309
|
/*
|
|
349
310
|
Reset default styling for dialogs.
|
|
350
311
|
*/
|
|
351
|
-
|
|
352
312
|
dialog {
|
|
353
313
|
padding: 0;
|
|
354
314
|
}
|
|
@@ -367,18 +327,14 @@ textarea {
|
|
|
367
327
|
*/
|
|
368
328
|
|
|
369
329
|
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
370
|
-
opacity: 1;
|
|
371
|
-
/*
|
|
372
|
-
color: #9ca3af;
|
|
373
|
-
/* 2 */
|
|
330
|
+
opacity: 1; /* 1 */
|
|
331
|
+
color: #9ca3af; /* 2 */
|
|
374
332
|
}
|
|
375
333
|
|
|
376
334
|
input::placeholder,
|
|
377
335
|
textarea::placeholder {
|
|
378
|
-
opacity: 1;
|
|
379
|
-
/*
|
|
380
|
-
color: #9ca3af;
|
|
381
|
-
/* 2 */
|
|
336
|
+
opacity: 1; /* 1 */
|
|
337
|
+
color: #9ca3af; /* 2 */
|
|
382
338
|
}
|
|
383
339
|
|
|
384
340
|
/*
|
|
@@ -393,7 +349,6 @@ button,
|
|
|
393
349
|
/*
|
|
394
350
|
Make sure disabled buttons don't get the pointer cursor.
|
|
395
351
|
*/
|
|
396
|
-
|
|
397
352
|
:disabled {
|
|
398
353
|
cursor: default;
|
|
399
354
|
}
|
|
@@ -412,10 +367,8 @@ audio,
|
|
|
412
367
|
iframe,
|
|
413
368
|
embed,
|
|
414
369
|
object {
|
|
415
|
-
display: block;
|
|
416
|
-
/*
|
|
417
|
-
vertical-align: middle;
|
|
418
|
-
/* 2 */
|
|
370
|
+
display: block; /* 1 */
|
|
371
|
+
vertical-align: middle; /* 2 */
|
|
419
372
|
}
|
|
420
373
|
|
|
421
374
|
/*
|
|
@@ -429,170 +382,157 @@ video {
|
|
|
429
382
|
}
|
|
430
383
|
|
|
431
384
|
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
432
|
-
|
|
433
385
|
[hidden] {
|
|
434
386
|
display: none;
|
|
435
387
|
}
|
|
388
|
+
.no-scrollbar *:not(.textarea-component)::-webkit-scrollbar {
|
|
389
|
+
display: none;
|
|
390
|
+
}
|
|
391
|
+
.no-scrollbar *:not(.textarea-component) {
|
|
392
|
+
-ms-overflow-style: none; /* IE and Edge */
|
|
393
|
+
scrollbar-width: none; /* Firefox */
|
|
394
|
+
}
|
|
436
395
|
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
.no-scrollbar *:not(.textarea-component) {
|
|
442
|
-
-ms-overflow-style: none;
|
|
443
|
-
/* IE and Edge */
|
|
444
|
-
scrollbar-width: none;
|
|
445
|
-
/* Firefox */
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
:root {
|
|
449
|
-
--background: 0 0% 100%;
|
|
450
|
-
--foreground: 222.2 47.4% 11.2%;
|
|
451
|
-
--muted: 210 40% 96.1%;
|
|
452
|
-
--muted-foreground: 215.4 16.3% 46.9%;
|
|
453
|
-
--popover: 0 0% 100%;
|
|
454
|
-
--popover-foreground: 222.2 47.4% 11.2%;
|
|
455
|
-
--card: 0 0% 100%;
|
|
456
|
-
--card-foreground: 222.2 47.4% 11.2%;
|
|
457
|
-
--border: 214.3 31.8% 91.4%;
|
|
458
|
-
--input: 214.3 31.8% 91.4%;
|
|
459
|
-
--primary: 222.2 47.4% 11.2%;
|
|
460
|
-
--primary-foreground: 210 40% 98%;
|
|
461
|
-
--secondary: 210 40% 96.1%;
|
|
462
|
-
--secondary-foreground: 222.2 47.4% 11.2%;
|
|
463
|
-
--accent: 210 40% 96.1%;
|
|
464
|
-
--accent-foreground: 222.2 47.4% 11.2%;
|
|
465
|
-
--destructive: 0 100% 50%;
|
|
466
|
-
--destructive-foreground: 210 40% 98%;
|
|
467
|
-
--ring: 215 20.2% 65.1%;
|
|
468
|
-
--radius: 0.5rem;
|
|
469
|
-
--fontRegular: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
470
|
-
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
471
|
-
--fontMedium: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
472
|
-
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
473
|
-
--fontBold: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
474
|
-
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
475
|
-
--coreColors-pageColor: #ffffff;
|
|
476
|
-
--coreColors-shadow: #000000;
|
|
477
|
-
--coreColors-brandColorPrimary: #000000;
|
|
478
|
-
--coreColors-headerBackground: #ffffffff;
|
|
479
|
-
--coreColors-inputBackground: #ffffffff;
|
|
480
|
-
--coreColors-modalBackground: #ffffffff;
|
|
481
|
-
--coreColors-tabBar: #ffffffff;
|
|
482
|
-
--coreColors-dividingLines: #e3e3e3ff;
|
|
483
|
-
--coreColors-shadowsEnabled: "true";
|
|
484
|
-
--coreColors-primaryIcon: #121212ff;
|
|
485
|
-
--coreColors-secondaryIcon: #727272ff;
|
|
486
|
-
--coreColors-headerIcon: #121212ff;
|
|
487
|
-
--textColors-primaryColor: #121212ff;
|
|
488
|
-
--textColors-secondaryColor: #727272ff;
|
|
489
|
-
--textColors-pageTitle: #121212ff;
|
|
490
|
-
--textColors-legalText: #727272;
|
|
491
|
-
--textColors-productTitle: #727272;
|
|
492
|
-
--textColors-priceText: #121212ff;
|
|
493
|
-
--textColors-strikethroughPriceText: #727272ff;
|
|
494
|
-
--textColors-salePriceText: #d91e18ff;
|
|
495
|
-
--buttonColors-primaryText: #ffffff;
|
|
496
|
-
--buttonColors-primaryFill: #000000;
|
|
497
|
-
--buttonColors-primaryOutline: #000000;
|
|
498
|
-
--buttonColors-primaryShadow: #000000;
|
|
499
|
-
--buttonColors-disabled: #707070;
|
|
500
|
-
--buttonColors-secondaryText: #000000;
|
|
501
|
-
--buttonColors-secondaryFill: #ffffff;
|
|
502
|
-
--buttonColors-secondaryOutline: #000000;
|
|
503
|
-
--buttonColors-secondaryShadow: #000000;
|
|
504
|
-
--stateColors-disabled: #707070;
|
|
505
|
-
--stateColors-error: #d91e18ff;
|
|
506
|
-
--stateColors-subscriptions: #008000ff;
|
|
507
|
-
--stateColors-favorites: #d91e18ff;
|
|
508
|
-
--stateColors-reviews: #ffaf02ff;
|
|
509
|
-
--stateColors-success: #008000ff;
|
|
510
|
-
--stateColors-warning: #ffaf02ff;
|
|
511
|
-
--stateColors-skeleton: #e3e3e3ff;
|
|
512
|
-
--productBadging-fill: #000000;
|
|
513
|
-
--productBadging-text: #fefefe;
|
|
514
|
-
--productImage-aspectRatio: "2:3";
|
|
515
|
-
--productImage-scaling: cover;
|
|
516
|
-
--productImage-isCustom: "false";
|
|
517
|
-
--standard-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.10);
|
|
518
|
-
}
|
|
519
|
-
|
|
520
|
-
.textarea-component::-webkit-scrollbar {
|
|
521
|
-
width: 4px;
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
.textarea-component::-webkit-scrollbar-thumb {
|
|
525
|
-
border-radius: 1.5rem;
|
|
526
|
-
background: var(--coreColors-secondaryIcon);
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
.textarea-component::-webkit-scrollbar-track {
|
|
530
|
-
border-radius: 1.5rem;
|
|
531
|
-
background: var(--coreColors-dividingLines);
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
.textarea-component::-moz-placeholder {
|
|
535
|
-
white-space: nowrap;
|
|
536
|
-
overflow: hidden;
|
|
537
|
-
text-overflow: ellipsis;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
.textarea-component::placeholder {
|
|
541
|
-
white-space: nowrap;
|
|
542
|
-
overflow: hidden;
|
|
543
|
-
text-overflow: ellipsis;
|
|
544
|
-
}
|
|
545
|
-
|
|
546
|
-
/*.dark {*/
|
|
547
|
-
|
|
548
|
-
/* --background: 222.2 84% 4.9%;*/
|
|
549
|
-
|
|
550
|
-
/* --foreground: 210 40% 98%;*/
|
|
551
|
-
|
|
552
|
-
/* --card: 222.2 84% 4.9%;*/
|
|
553
|
-
|
|
554
|
-
/* --card-foreground: 210 40% 98%;*/
|
|
555
|
-
|
|
556
|
-
/* --popover: 222.2 84% 4.9%;*/
|
|
557
|
-
|
|
558
|
-
/* --popover-foreground: 210 40% 98%;*/
|
|
559
|
-
|
|
560
|
-
/* --primary: 210 40% 98%;*/
|
|
561
|
-
|
|
562
|
-
/* --primary-foreground: 222.2 47.4% 11.2%;*/
|
|
396
|
+
:root {
|
|
397
|
+
--background: 0 0% 100%;
|
|
398
|
+
--foreground: 222.2 47.4% 11.2%;
|
|
563
399
|
|
|
564
|
-
|
|
400
|
+
--muted: 210 40% 96.1%;
|
|
401
|
+
--muted-foreground: 215.4 16.3% 46.9%;
|
|
565
402
|
|
|
566
|
-
|
|
403
|
+
--popover: 0 0% 100%;
|
|
404
|
+
--popover-foreground: 222.2 47.4% 11.2%;
|
|
567
405
|
|
|
568
|
-
|
|
406
|
+
--card: 0 0% 100%;
|
|
407
|
+
--card-foreground: 222.2 47.4% 11.2%;
|
|
569
408
|
|
|
570
|
-
|
|
409
|
+
--border: 214.3 31.8% 91.4%;
|
|
410
|
+
--input: 214.3 31.8% 91.4%;
|
|
571
411
|
|
|
572
|
-
|
|
412
|
+
--primary: 222.2 47.4% 11.2%;
|
|
413
|
+
--primary-foreground: 210 40% 98%;
|
|
573
414
|
|
|
574
|
-
|
|
415
|
+
--secondary: 210 40% 96.1%;
|
|
416
|
+
--secondary-foreground: 222.2 47.4% 11.2%;
|
|
575
417
|
|
|
576
|
-
|
|
418
|
+
--accent: 210 40% 96.1%;
|
|
419
|
+
--accent-foreground: 222.2 47.4% 11.2%;
|
|
577
420
|
|
|
578
|
-
|
|
421
|
+
--destructive: 0 100% 50%;
|
|
422
|
+
--destructive-foreground: 210 40% 98%;
|
|
579
423
|
|
|
580
|
-
|
|
424
|
+
--ring: 215 20.2% 65.1%;
|
|
581
425
|
|
|
582
|
-
|
|
426
|
+
--radius: 0.5rem;
|
|
583
427
|
|
|
584
|
-
|
|
428
|
+
--fontRegular: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
429
|
+
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
430
|
+
--fontMedium: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
431
|
+
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
432
|
+
--fontBold: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
433
|
+
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
585
434
|
|
|
586
|
-
|
|
435
|
+
--coreColors-pageColor: #ffffff;
|
|
436
|
+
--coreColors-shadow: #000000;
|
|
437
|
+
--coreColors-brandColorPrimary: #000000;
|
|
438
|
+
--coreColors-headerBackground: #ffffffff;
|
|
439
|
+
--coreColors-inputBackground: #ffffffff;
|
|
440
|
+
--coreColors-modalBackground: #ffffffff;
|
|
441
|
+
--coreColors-tabBar: #ffffffff;
|
|
442
|
+
--coreColors-dividingLines: #e3e3e3ff;
|
|
443
|
+
--coreColors-shadowsEnabled: "true";
|
|
444
|
+
--coreColors-primaryIcon: #121212ff;
|
|
445
|
+
--coreColors-secondaryIcon: #727272ff;
|
|
446
|
+
--coreColors-headerIcon: #121212ff;
|
|
447
|
+
|
|
448
|
+
--textColors-primaryColor: #121212ff;
|
|
449
|
+
--textColors-secondaryColor: #727272ff;
|
|
450
|
+
--textColors-pageTitle: #121212ff;
|
|
451
|
+
--textColors-legalText: #727272;
|
|
452
|
+
--textColors-productTitle: #727272;
|
|
453
|
+
--textColors-priceText: #121212ff;
|
|
454
|
+
--textColors-strikethroughPriceText: #727272ff;
|
|
455
|
+
--textColors-salePriceText: #d91e18ff;
|
|
456
|
+
|
|
457
|
+
--buttonColors-primaryText: #ffffff;
|
|
458
|
+
--buttonColors-primaryFill: #000000;
|
|
459
|
+
--buttonColors-primaryOutline: #000000;
|
|
460
|
+
--buttonColors-primaryShadow: #000000;
|
|
461
|
+
--buttonColors-disabled: #707070;
|
|
462
|
+
--buttonColors-secondaryText: #000000;
|
|
463
|
+
--buttonColors-secondaryFill: #ffffff;
|
|
464
|
+
--buttonColors-secondaryOutline: #000000;
|
|
465
|
+
--buttonColors-secondaryShadow: #000000;
|
|
466
|
+
|
|
467
|
+
--stateColors-disabled: #707070;
|
|
468
|
+
--stateColors-error: #d91e18ff;
|
|
469
|
+
|
|
470
|
+
--stateColors-subscriptions: #008000ff;
|
|
471
|
+
--stateColors-favorites: #d91e18ff;
|
|
472
|
+
--stateColors-reviews: #ffaf02ff;
|
|
473
|
+
--stateColors-success: #008000ff;
|
|
474
|
+
--stateColors-warning: #ffaf02ff;
|
|
475
|
+
--stateColors-skeleton: #e3e3e3ff;
|
|
476
|
+
|
|
477
|
+
--productBadging-fill: #000000;
|
|
478
|
+
--productBadging-text: #fefefe;
|
|
479
|
+
|
|
480
|
+
--productImage-aspectRatio: "2:3";
|
|
481
|
+
--productImage-scaling: cover;
|
|
482
|
+
--productImage-isCustom: "false";
|
|
483
|
+
|
|
484
|
+
--standard-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.10);
|
|
485
|
+
}
|
|
486
|
+
.textarea-component::-webkit-scrollbar {
|
|
487
|
+
width: 4px;
|
|
488
|
+
}
|
|
489
|
+
.textarea-component::-webkit-scrollbar-thumb {
|
|
490
|
+
border-radius: 1.5rem;
|
|
491
|
+
background: var(--coreColors-secondaryIcon);
|
|
492
|
+
}
|
|
493
|
+
.textarea-component::-webkit-scrollbar-track {
|
|
494
|
+
border-radius: 1.5rem;
|
|
495
|
+
background: var(--coreColors-dividingLines);
|
|
496
|
+
}
|
|
497
|
+
.textarea-component::-moz-placeholder {
|
|
498
|
+
white-space: nowrap;
|
|
499
|
+
overflow: hidden;
|
|
500
|
+
text-overflow: ellipsis;
|
|
501
|
+
}
|
|
502
|
+
.textarea-component::placeholder {
|
|
503
|
+
white-space: nowrap;
|
|
504
|
+
overflow: hidden;
|
|
505
|
+
text-overflow: ellipsis;
|
|
506
|
+
}
|
|
587
507
|
|
|
588
|
-
|
|
508
|
+
/*.dark {*/
|
|
509
|
+
/* --background: 222.2 84% 4.9%;*/
|
|
510
|
+
/* --foreground: 210 40% 98%;*/
|
|
511
|
+
/* --card: 222.2 84% 4.9%;*/
|
|
512
|
+
/* --card-foreground: 210 40% 98%;*/
|
|
513
|
+
/* --popover: 222.2 84% 4.9%;*/
|
|
514
|
+
/* --popover-foreground: 210 40% 98%;*/
|
|
515
|
+
/* --primary: 210 40% 98%;*/
|
|
516
|
+
/* --primary-foreground: 222.2 47.4% 11.2%;*/
|
|
517
|
+
/* --secondary: 217.2 32.6% 17.5%;*/
|
|
518
|
+
/* --secondary-foreground: 210 40% 98%;*/
|
|
519
|
+
/* --muted: 217.2 32.6% 17.5%;*/
|
|
520
|
+
/* --muted-foreground: 215 20.2% 65.1%;*/
|
|
521
|
+
/* --accent: 217.2 32.6% 17.5%;*/
|
|
522
|
+
/* --accent-foreground: 210 40% 98%;*/
|
|
523
|
+
/* --destructive: 0 62.8% 30.6%;*/
|
|
524
|
+
/* --destructive-foreground: 210 40% 98%;*/
|
|
525
|
+
/* --border: 217.2 32.6% 17.5%;*/
|
|
526
|
+
/* --input: 217.2 32.6% 17.5%;*/
|
|
527
|
+
/* --ring: 212.7 26.8% 83.9;*/
|
|
528
|
+
/*}*/
|
|
529
|
+
* {
|
|
589
530
|
border-color: hsl(var(--border));
|
|
590
531
|
}
|
|
591
|
-
|
|
592
|
-
body {
|
|
532
|
+
body {
|
|
593
533
|
background-color: hsl(var(--background));
|
|
594
534
|
color: hsl(var(--foreground));
|
|
595
|
-
|
|
535
|
+
font-feature-settings: "rlig" 1, "calt" 1;
|
|
596
536
|
}
|
|
597
537
|
|
|
598
538
|
*, ::before, ::after {
|
|
@@ -694,7 +634,6 @@ body {
|
|
|
694
634
|
--tw-backdrop-saturate: ;
|
|
695
635
|
--tw-backdrop-sepia: ;
|
|
696
636
|
}
|
|
697
|
-
|
|
698
637
|
.container {
|
|
699
638
|
width: 100%;
|
|
700
639
|
margin-right: auto;
|
|
@@ -702,13 +641,12 @@ body {
|
|
|
702
641
|
padding-right: 2rem;
|
|
703
642
|
padding-left: 2rem;
|
|
704
643
|
}
|
|
705
|
-
|
|
706
644
|
@media (min-width: 1400px) {
|
|
645
|
+
|
|
707
646
|
.container {
|
|
708
647
|
max-width: 1400px;
|
|
709
648
|
}
|
|
710
649
|
}
|
|
711
|
-
|
|
712
650
|
.sr-only {
|
|
713
651
|
position: absolute;
|
|
714
652
|
width: 1px;
|
|
@@ -720,1589 +658,1218 @@ body {
|
|
|
720
658
|
white-space: nowrap;
|
|
721
659
|
border-width: 0;
|
|
722
660
|
}
|
|
723
|
-
|
|
724
661
|
.pointer-events-none {
|
|
725
662
|
pointer-events: none;
|
|
726
663
|
}
|
|
727
|
-
|
|
728
664
|
.pointer-events-auto {
|
|
729
665
|
pointer-events: auto;
|
|
730
666
|
}
|
|
731
|
-
|
|
732
667
|
.fixed {
|
|
733
668
|
position: fixed;
|
|
734
669
|
}
|
|
735
|
-
|
|
736
670
|
.absolute {
|
|
737
671
|
position: absolute;
|
|
738
672
|
}
|
|
739
|
-
|
|
740
673
|
.relative {
|
|
741
674
|
position: relative;
|
|
742
675
|
}
|
|
743
|
-
|
|
744
676
|
.inset-0 {
|
|
745
677
|
inset: 0px;
|
|
746
678
|
}
|
|
747
|
-
|
|
748
679
|
.inset-x-0 {
|
|
749
680
|
left: 0px;
|
|
750
681
|
right: 0px;
|
|
751
682
|
}
|
|
752
|
-
|
|
753
683
|
.-bottom-12 {
|
|
754
684
|
bottom: -3rem;
|
|
755
685
|
}
|
|
756
|
-
|
|
757
686
|
.-left-12 {
|
|
758
687
|
left: -3rem;
|
|
759
688
|
}
|
|
760
|
-
|
|
761
689
|
.-right-12 {
|
|
762
690
|
right: -3rem;
|
|
763
691
|
}
|
|
764
|
-
|
|
765
692
|
.-top-12 {
|
|
766
693
|
top: -3rem;
|
|
767
694
|
}
|
|
768
|
-
|
|
769
695
|
.bottom-0 {
|
|
770
696
|
bottom: 0px;
|
|
771
697
|
}
|
|
772
|
-
|
|
773
698
|
.bottom-10 {
|
|
774
699
|
bottom: 2.5rem;
|
|
775
700
|
}
|
|
776
|
-
|
|
777
701
|
.bottom-2 {
|
|
778
702
|
bottom: 0.5rem;
|
|
779
703
|
}
|
|
780
|
-
|
|
781
704
|
.bottom-\[18px\] {
|
|
782
705
|
bottom: 18px;
|
|
783
706
|
}
|
|
784
|
-
|
|
785
707
|
.bottom-\[58px\] {
|
|
786
708
|
bottom: 58px;
|
|
787
709
|
}
|
|
788
|
-
|
|
789
710
|
.end-4 {
|
|
790
711
|
inset-inline-end: 1rem;
|
|
791
712
|
}
|
|
792
|
-
|
|
793
713
|
.left-0 {
|
|
794
714
|
left: 0px;
|
|
795
715
|
}
|
|
796
|
-
|
|
797
716
|
.left-1\/2 {
|
|
798
717
|
left: 50%;
|
|
799
718
|
}
|
|
800
|
-
|
|
801
719
|
.left-2 {
|
|
802
720
|
left: 0.5rem;
|
|
803
721
|
}
|
|
804
|
-
|
|
805
722
|
.left-\[50\%\] {
|
|
806
723
|
left: 50%;
|
|
807
724
|
}
|
|
808
|
-
|
|
809
725
|
.right-0 {
|
|
810
726
|
right: 0px;
|
|
811
727
|
}
|
|
812
|
-
|
|
813
728
|
.right-2 {
|
|
814
729
|
right: 0.5rem;
|
|
815
730
|
}
|
|
816
|
-
|
|
817
731
|
.start-10 {
|
|
818
732
|
inset-inline-start: 2.5rem;
|
|
819
733
|
}
|
|
820
|
-
|
|
821
734
|
.start-4 {
|
|
822
735
|
inset-inline-start: 1rem;
|
|
823
736
|
}
|
|
824
|
-
|
|
825
737
|
.top-0 {
|
|
826
738
|
top: 0px;
|
|
827
739
|
}
|
|
828
|
-
|
|
829
740
|
.top-1\/2 {
|
|
830
741
|
top: 50%;
|
|
831
742
|
}
|
|
832
|
-
|
|
833
743
|
.top-10 {
|
|
834
744
|
top: 2.5rem;
|
|
835
745
|
}
|
|
836
|
-
|
|
837
746
|
.top-2 {
|
|
838
747
|
top: 0.5rem;
|
|
839
748
|
}
|
|
840
|
-
|
|
841
749
|
.top-\[18px\] {
|
|
842
750
|
top: 18px;
|
|
843
751
|
}
|
|
844
|
-
|
|
845
752
|
.top-\[50\%\] {
|
|
846
753
|
top: 50%;
|
|
847
754
|
}
|
|
848
|
-
|
|
849
755
|
.z-10 {
|
|
850
756
|
z-index: 10;
|
|
851
757
|
}
|
|
852
|
-
|
|
853
758
|
.z-50 {
|
|
854
759
|
z-index: 50;
|
|
855
760
|
}
|
|
856
|
-
|
|
857
761
|
.z-\[100\] {
|
|
858
762
|
z-index: 100;
|
|
859
763
|
}
|
|
860
|
-
|
|
861
764
|
.col-span-2 {
|
|
862
765
|
grid-column: span 2 / span 2;
|
|
863
766
|
}
|
|
864
|
-
|
|
865
767
|
.col-start-1 {
|
|
866
768
|
grid-column-start: 1;
|
|
867
769
|
}
|
|
868
|
-
|
|
869
770
|
.row-start-1 {
|
|
870
771
|
grid-row-start: 1;
|
|
871
772
|
}
|
|
872
|
-
|
|
873
773
|
.mx-1 {
|
|
874
774
|
margin-left: 0.25rem;
|
|
875
775
|
margin-right: 0.25rem;
|
|
876
776
|
}
|
|
877
|
-
|
|
878
777
|
.mx-4 {
|
|
879
778
|
margin-left: 1rem;
|
|
880
779
|
margin-right: 1rem;
|
|
881
780
|
}
|
|
882
|
-
|
|
883
781
|
.mx-auto {
|
|
884
782
|
margin-left: auto;
|
|
885
783
|
margin-right: auto;
|
|
886
784
|
}
|
|
887
|
-
|
|
888
785
|
.my-0 {
|
|
889
786
|
margin-top: 0px;
|
|
890
787
|
margin-bottom: 0px;
|
|
891
788
|
}
|
|
892
|
-
|
|
893
789
|
.my-3 {
|
|
894
790
|
margin-top: 0.75rem;
|
|
895
791
|
margin-bottom: 0.75rem;
|
|
896
792
|
}
|
|
897
|
-
|
|
898
793
|
.my-auto {
|
|
899
794
|
margin-top: auto;
|
|
900
795
|
margin-bottom: auto;
|
|
901
796
|
}
|
|
902
|
-
|
|
903
797
|
.-ml-4 {
|
|
904
798
|
margin-left: -1rem;
|
|
905
799
|
}
|
|
906
|
-
|
|
907
800
|
.-mt-4 {
|
|
908
801
|
margin-top: -1rem;
|
|
909
802
|
}
|
|
910
|
-
|
|
911
803
|
.mb-2 {
|
|
912
804
|
margin-bottom: 0.5rem;
|
|
913
805
|
}
|
|
914
|
-
|
|
915
806
|
.mb-4 {
|
|
916
807
|
margin-bottom: 1rem;
|
|
917
808
|
}
|
|
918
|
-
|
|
919
809
|
.mb-6 {
|
|
920
810
|
margin-bottom: 1.5rem;
|
|
921
811
|
}
|
|
922
|
-
|
|
923
812
|
.ml-2 {
|
|
924
813
|
margin-left: 0.5rem;
|
|
925
814
|
}
|
|
926
|
-
|
|
927
815
|
.mr-2 {
|
|
928
816
|
margin-right: 0.5rem;
|
|
929
817
|
}
|
|
930
|
-
|
|
931
818
|
.mt-1 {
|
|
932
819
|
margin-top: 0.25rem;
|
|
933
820
|
}
|
|
934
|
-
|
|
935
821
|
.mt-2 {
|
|
936
822
|
margin-top: 0.5rem;
|
|
937
823
|
}
|
|
938
|
-
|
|
939
824
|
.mt-3 {
|
|
940
825
|
margin-top: 0.75rem;
|
|
941
826
|
}
|
|
942
|
-
|
|
943
827
|
.mt-auto {
|
|
944
828
|
margin-top: auto;
|
|
945
829
|
}
|
|
946
|
-
|
|
947
830
|
.line-clamp-2 {
|
|
948
831
|
overflow: hidden;
|
|
949
832
|
display: -webkit-box;
|
|
950
833
|
-webkit-box-orient: vertical;
|
|
951
834
|
-webkit-line-clamp: 2;
|
|
952
835
|
}
|
|
953
|
-
|
|
954
836
|
.block {
|
|
955
837
|
display: block;
|
|
956
838
|
}
|
|
957
|
-
|
|
958
839
|
.inline {
|
|
959
840
|
display: inline;
|
|
960
841
|
}
|
|
961
|
-
|
|
962
842
|
.flex {
|
|
963
843
|
display: flex;
|
|
964
844
|
}
|
|
965
|
-
|
|
966
845
|
.inline-flex {
|
|
967
846
|
display: inline-flex;
|
|
968
847
|
}
|
|
969
|
-
|
|
970
848
|
.grid {
|
|
971
849
|
display: grid;
|
|
972
850
|
}
|
|
973
|
-
|
|
974
851
|
.aspect-productImages {
|
|
975
852
|
aspect-ratio: var(--productImage-aspectRatio);
|
|
976
853
|
}
|
|
977
|
-
|
|
978
854
|
.aspect-square {
|
|
979
855
|
aspect-ratio: 1 / 1;
|
|
980
856
|
}
|
|
981
|
-
|
|
982
857
|
.h-0 {
|
|
983
858
|
height: 0px;
|
|
984
859
|
}
|
|
985
|
-
|
|
986
860
|
.h-0\.5 {
|
|
987
861
|
height: 0.125rem;
|
|
988
862
|
}
|
|
989
|
-
|
|
990
863
|
.h-1 {
|
|
991
864
|
height: 0.25rem;
|
|
992
865
|
}
|
|
993
|
-
|
|
994
866
|
.h-1\.5 {
|
|
995
867
|
height: 0.375rem;
|
|
996
868
|
}
|
|
997
|
-
|
|
998
869
|
.h-10 {
|
|
999
870
|
height: 2.5rem;
|
|
1000
871
|
}
|
|
1001
|
-
|
|
1002
872
|
.h-11 {
|
|
1003
873
|
height: 2.75rem;
|
|
1004
874
|
}
|
|
1005
|
-
|
|
1006
875
|
.h-14 {
|
|
1007
876
|
height: 3.5rem;
|
|
1008
877
|
}
|
|
1009
|
-
|
|
1010
878
|
.h-2 {
|
|
1011
879
|
height: 0.5rem;
|
|
1012
880
|
}
|
|
1013
|
-
|
|
1014
881
|
.h-2\.5 {
|
|
1015
882
|
height: 0.625rem;
|
|
1016
883
|
}
|
|
1017
|
-
|
|
1018
884
|
.h-4 {
|
|
1019
885
|
height: 1rem;
|
|
1020
886
|
}
|
|
1021
|
-
|
|
1022
887
|
.h-5 {
|
|
1023
888
|
height: 1.25rem;
|
|
1024
889
|
}
|
|
1025
|
-
|
|
1026
890
|
.h-6 {
|
|
1027
891
|
height: 1.5rem;
|
|
1028
892
|
}
|
|
1029
|
-
|
|
1030
893
|
.h-64 {
|
|
1031
894
|
height: 16rem;
|
|
1032
895
|
}
|
|
1033
|
-
|
|
1034
896
|
.h-7 {
|
|
1035
897
|
height: 1.75rem;
|
|
1036
898
|
}
|
|
1037
|
-
|
|
1038
899
|
.h-8 {
|
|
1039
900
|
height: 2rem;
|
|
1040
901
|
}
|
|
1041
|
-
|
|
1042
902
|
.h-9 {
|
|
1043
903
|
height: 2.25rem;
|
|
1044
904
|
}
|
|
1045
|
-
|
|
1046
905
|
.h-\[1px\] {
|
|
1047
906
|
height: 1px;
|
|
1048
907
|
}
|
|
1049
|
-
|
|
1050
908
|
.h-\[2px\] {
|
|
1051
909
|
height: 2px;
|
|
1052
910
|
}
|
|
1053
|
-
|
|
1054
911
|
.h-\[42px\] {
|
|
1055
912
|
height: 42px;
|
|
1056
913
|
}
|
|
1057
|
-
|
|
1058
914
|
.h-\[4px\] {
|
|
1059
915
|
height: 4px;
|
|
1060
916
|
}
|
|
1061
|
-
|
|
1062
917
|
.h-auto {
|
|
1063
918
|
height: auto;
|
|
1064
919
|
}
|
|
1065
|
-
|
|
1066
920
|
.h-full {
|
|
1067
921
|
height: 100%;
|
|
1068
922
|
}
|
|
1069
|
-
|
|
1070
923
|
.max-h-\[240px\] {
|
|
1071
924
|
max-height: 240px;
|
|
1072
925
|
}
|
|
1073
|
-
|
|
1074
926
|
.max-h-screen {
|
|
1075
927
|
max-height: 100vh;
|
|
1076
928
|
}
|
|
1077
|
-
|
|
1078
929
|
.min-h-\[24px\] {
|
|
1079
930
|
min-height: 24px;
|
|
1080
931
|
}
|
|
1081
|
-
|
|
1082
932
|
.w-1 {
|
|
1083
933
|
width: 0.25rem;
|
|
1084
934
|
}
|
|
1085
|
-
|
|
1086
935
|
.w-1\.5 {
|
|
1087
936
|
width: 0.375rem;
|
|
1088
937
|
}
|
|
1089
|
-
|
|
1090
938
|
.w-1\/2 {
|
|
1091
939
|
width: 50%;
|
|
1092
940
|
}
|
|
1093
|
-
|
|
1094
941
|
.w-10 {
|
|
1095
942
|
width: 2.5rem;
|
|
1096
943
|
}
|
|
1097
|
-
|
|
1098
944
|
.w-12 {
|
|
1099
945
|
width: 3rem;
|
|
1100
946
|
}
|
|
1101
|
-
|
|
1102
947
|
.w-14 {
|
|
1103
948
|
width: 3.5rem;
|
|
1104
949
|
}
|
|
1105
|
-
|
|
1106
950
|
.w-16 {
|
|
1107
951
|
width: 4rem;
|
|
1108
952
|
}
|
|
1109
|
-
|
|
1110
953
|
.w-2 {
|
|
1111
954
|
width: 0.5rem;
|
|
1112
955
|
}
|
|
1113
|
-
|
|
1114
956
|
.w-2\.5 {
|
|
1115
957
|
width: 0.625rem;
|
|
1116
958
|
}
|
|
1117
|
-
|
|
1118
959
|
.w-4 {
|
|
1119
960
|
width: 1rem;
|
|
1120
961
|
}
|
|
1121
|
-
|
|
1122
962
|
.w-5 {
|
|
1123
963
|
width: 1.25rem;
|
|
1124
964
|
}
|
|
1125
|
-
|
|
1126
965
|
.w-6 {
|
|
1127
966
|
width: 1.5rem;
|
|
1128
967
|
}
|
|
1129
|
-
|
|
1130
968
|
.w-7 {
|
|
1131
969
|
width: 1.75rem;
|
|
1132
970
|
}
|
|
1133
|
-
|
|
1134
971
|
.w-8 {
|
|
1135
972
|
width: 2rem;
|
|
1136
973
|
}
|
|
1137
|
-
|
|
1138
974
|
.w-\[1px\] {
|
|
1139
975
|
width: 1px;
|
|
1140
976
|
}
|
|
1141
|
-
|
|
1142
977
|
.w-\[40px\] {
|
|
1143
978
|
width: 40px;
|
|
1144
979
|
}
|
|
1145
|
-
|
|
1146
980
|
.w-auto {
|
|
1147
981
|
width: auto;
|
|
1148
982
|
}
|
|
1149
|
-
|
|
1150
983
|
.w-full {
|
|
1151
984
|
width: 100%;
|
|
1152
985
|
}
|
|
1153
|
-
|
|
1154
986
|
.w-max {
|
|
1155
987
|
width: -moz-max-content;
|
|
1156
988
|
width: max-content;
|
|
1157
989
|
}
|
|
1158
|
-
|
|
1159
990
|
.min-w-0 {
|
|
1160
991
|
min-width: 0px;
|
|
1161
992
|
}
|
|
1162
|
-
|
|
1163
993
|
.min-w-\[8rem\] {
|
|
1164
994
|
min-width: 8rem;
|
|
1165
995
|
}
|
|
1166
|
-
|
|
1167
996
|
.max-w-full {
|
|
1168
997
|
max-width: 100%;
|
|
1169
998
|
}
|
|
1170
|
-
|
|
1171
999
|
.max-w-lg {
|
|
1172
1000
|
max-width: 32rem;
|
|
1173
1001
|
}
|
|
1174
|
-
|
|
1175
1002
|
.max-w-xs {
|
|
1176
1003
|
max-width: 20rem;
|
|
1177
1004
|
}
|
|
1178
|
-
|
|
1179
1005
|
.flex-1 {
|
|
1180
1006
|
flex: 1 1 0%;
|
|
1181
1007
|
}
|
|
1182
|
-
|
|
1183
1008
|
.flex-shrink-0 {
|
|
1184
1009
|
flex-shrink: 0;
|
|
1185
1010
|
}
|
|
1186
|
-
|
|
1187
1011
|
.shrink-0 {
|
|
1188
1012
|
flex-shrink: 0;
|
|
1189
1013
|
}
|
|
1190
|
-
|
|
1191
1014
|
.flex-grow {
|
|
1192
1015
|
flex-grow: 1;
|
|
1193
1016
|
}
|
|
1194
|
-
|
|
1195
1017
|
.grow {
|
|
1196
1018
|
flex-grow: 1;
|
|
1197
1019
|
}
|
|
1198
|
-
|
|
1199
1020
|
.grow-0 {
|
|
1200
1021
|
flex-grow: 0;
|
|
1201
1022
|
}
|
|
1202
|
-
|
|
1203
1023
|
.basis-full {
|
|
1204
1024
|
flex-basis: 100%;
|
|
1205
1025
|
}
|
|
1206
|
-
|
|
1207
1026
|
.origin-\[0\] {
|
|
1208
1027
|
transform-origin: 0;
|
|
1209
1028
|
}
|
|
1210
|
-
|
|
1211
1029
|
.-translate-x-1\/2 {
|
|
1212
1030
|
--tw-translate-x: -50%;
|
|
1213
1031
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1214
1032
|
}
|
|
1215
|
-
|
|
1216
1033
|
.-translate-y-1\/2 {
|
|
1217
1034
|
--tw-translate-y: -50%;
|
|
1218
1035
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1219
1036
|
}
|
|
1220
|
-
|
|
1221
1037
|
.translate-x-\[-50\%\] {
|
|
1222
1038
|
--tw-translate-x: -50%;
|
|
1223
1039
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1224
1040
|
}
|
|
1225
|
-
|
|
1226
1041
|
.translate-y-\[-50\%\] {
|
|
1227
1042
|
--tw-translate-y: -50%;
|
|
1228
1043
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1229
1044
|
}
|
|
1230
|
-
|
|
1231
1045
|
.rotate-90 {
|
|
1232
1046
|
--tw-rotate: 90deg;
|
|
1233
1047
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1234
1048
|
}
|
|
1235
|
-
|
|
1236
1049
|
@keyframes pulse {
|
|
1050
|
+
|
|
1237
1051
|
50% {
|
|
1238
1052
|
opacity: .5;
|
|
1239
1053
|
}
|
|
1240
1054
|
}
|
|
1241
|
-
|
|
1242
1055
|
.animate-pulse {
|
|
1243
1056
|
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1244
1057
|
}
|
|
1245
|
-
|
|
1246
1058
|
@keyframes spin {
|
|
1059
|
+
|
|
1247
1060
|
to {
|
|
1248
1061
|
transform: rotate(360deg);
|
|
1249
1062
|
}
|
|
1250
1063
|
}
|
|
1251
|
-
|
|
1252
1064
|
.animate-spin {
|
|
1253
1065
|
animation: spin 1s linear infinite;
|
|
1254
1066
|
}
|
|
1255
|
-
|
|
1256
1067
|
.cursor-default {
|
|
1257
1068
|
cursor: default;
|
|
1258
1069
|
}
|
|
1259
|
-
|
|
1260
1070
|
.cursor-pointer {
|
|
1261
1071
|
cursor: pointer;
|
|
1262
1072
|
}
|
|
1263
|
-
|
|
1264
1073
|
.touch-none {
|
|
1265
1074
|
touch-action: none;
|
|
1266
1075
|
}
|
|
1267
|
-
|
|
1268
1076
|
.select-none {
|
|
1269
1077
|
-webkit-user-select: none;
|
|
1270
1078
|
-moz-user-select: none;
|
|
1271
1079
|
user-select: none;
|
|
1272
1080
|
}
|
|
1273
|
-
|
|
1274
1081
|
.resize-none {
|
|
1275
1082
|
resize: none;
|
|
1276
1083
|
}
|
|
1277
|
-
|
|
1278
1084
|
.resize {
|
|
1279
1085
|
resize: both;
|
|
1280
1086
|
}
|
|
1281
|
-
|
|
1282
1087
|
.columns-1 {
|
|
1283
1088
|
-moz-columns: 1;
|
|
1284
1089
|
columns: 1;
|
|
1285
1090
|
}
|
|
1286
|
-
|
|
1287
1091
|
.columns-2 {
|
|
1288
1092
|
-moz-columns: 2;
|
|
1289
1093
|
columns: 2;
|
|
1290
1094
|
}
|
|
1291
|
-
|
|
1292
1095
|
.columns-3 {
|
|
1293
1096
|
-moz-columns: 3;
|
|
1294
1097
|
columns: 3;
|
|
1295
1098
|
}
|
|
1296
|
-
|
|
1297
1099
|
.grid-cols-1 {
|
|
1298
1100
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1299
1101
|
}
|
|
1300
|
-
|
|
1301
1102
|
.grid-cols-2 {
|
|
1302
1103
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1303
1104
|
}
|
|
1304
|
-
|
|
1305
1105
|
.grid-cols-3 {
|
|
1306
1106
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1307
1107
|
}
|
|
1308
|
-
|
|
1309
1108
|
.grid-cols-4 {
|
|
1310
1109
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1311
1110
|
}
|
|
1312
|
-
|
|
1313
1111
|
.grid-cols-\[auto\2c auto\2c 1fr\] {
|
|
1314
1112
|
grid-template-columns: auto auto 1fr;
|
|
1315
1113
|
}
|
|
1316
|
-
|
|
1317
1114
|
.flex-row {
|
|
1318
1115
|
flex-direction: row;
|
|
1319
1116
|
}
|
|
1320
|
-
|
|
1321
1117
|
.flex-col {
|
|
1322
1118
|
flex-direction: column;
|
|
1323
1119
|
}
|
|
1324
|
-
|
|
1325
1120
|
.flex-col-reverse {
|
|
1326
1121
|
flex-direction: column-reverse;
|
|
1327
1122
|
}
|
|
1328
|
-
|
|
1329
1123
|
.flex-wrap {
|
|
1330
1124
|
flex-wrap: wrap;
|
|
1331
1125
|
}
|
|
1332
|
-
|
|
1333
1126
|
.items-start {
|
|
1334
1127
|
align-items: flex-start;
|
|
1335
1128
|
}
|
|
1336
|
-
|
|
1337
1129
|
.items-center {
|
|
1338
1130
|
align-items: center;
|
|
1339
1131
|
}
|
|
1340
|
-
|
|
1341
1132
|
.justify-start {
|
|
1342
1133
|
justify-content: flex-start;
|
|
1343
1134
|
}
|
|
1344
|
-
|
|
1345
1135
|
.justify-end {
|
|
1346
1136
|
justify-content: flex-end;
|
|
1347
1137
|
}
|
|
1348
|
-
|
|
1349
1138
|
.justify-center {
|
|
1350
1139
|
justify-content: center;
|
|
1351
1140
|
}
|
|
1352
|
-
|
|
1353
1141
|
.justify-between {
|
|
1354
1142
|
justify-content: space-between;
|
|
1355
1143
|
}
|
|
1356
|
-
|
|
1357
1144
|
.gap-0 {
|
|
1358
1145
|
gap: 0px;
|
|
1359
1146
|
}
|
|
1360
|
-
|
|
1361
1147
|
.gap-1 {
|
|
1362
1148
|
gap: 0.25rem;
|
|
1363
1149
|
}
|
|
1364
|
-
|
|
1365
1150
|
.gap-2 {
|
|
1366
1151
|
gap: 0.5rem;
|
|
1367
1152
|
}
|
|
1368
|
-
|
|
1369
1153
|
.gap-4 {
|
|
1370
1154
|
gap: 1rem;
|
|
1371
1155
|
}
|
|
1372
|
-
|
|
1373
1156
|
.gap-x-\[7px\] {
|
|
1374
1157
|
-moz-column-gap: 7px;
|
|
1375
1158
|
column-gap: 7px;
|
|
1376
1159
|
}
|
|
1377
|
-
|
|
1378
1160
|
.gap-y-4 {
|
|
1379
1161
|
row-gap: 1rem;
|
|
1380
1162
|
}
|
|
1381
|
-
|
|
1382
1163
|
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1383
1164
|
--tw-space-y-reverse: 0;
|
|
1384
1165
|
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1385
1166
|
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
1386
1167
|
}
|
|
1387
|
-
|
|
1388
1168
|
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1389
1169
|
--tw-space-y-reverse: 0;
|
|
1390
1170
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1391
1171
|
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1392
1172
|
}
|
|
1393
|
-
|
|
1394
1173
|
.self-start {
|
|
1395
1174
|
align-self: flex-start;
|
|
1396
1175
|
}
|
|
1397
|
-
|
|
1398
1176
|
.self-center {
|
|
1399
1177
|
align-self: center;
|
|
1400
1178
|
}
|
|
1401
|
-
|
|
1402
1179
|
.overflow-hidden {
|
|
1403
1180
|
overflow: hidden;
|
|
1404
1181
|
}
|
|
1405
|
-
|
|
1406
1182
|
.overflow-scroll {
|
|
1407
1183
|
overflow: scroll;
|
|
1408
1184
|
}
|
|
1409
|
-
|
|
1410
1185
|
.overflow-x-auto {
|
|
1411
1186
|
overflow-x: auto;
|
|
1412
1187
|
}
|
|
1413
|
-
|
|
1414
1188
|
.overflow-y-auto {
|
|
1415
1189
|
overflow-y: auto;
|
|
1416
1190
|
}
|
|
1417
|
-
|
|
1418
1191
|
.overflow-y-hidden {
|
|
1419
1192
|
overflow-y: hidden;
|
|
1420
1193
|
}
|
|
1421
|
-
|
|
1422
1194
|
.truncate {
|
|
1423
1195
|
overflow: hidden;
|
|
1424
1196
|
text-overflow: ellipsis;
|
|
1425
1197
|
white-space: nowrap;
|
|
1426
1198
|
}
|
|
1427
|
-
|
|
1428
1199
|
.text-ellipsis {
|
|
1429
1200
|
text-overflow: ellipsis;
|
|
1430
1201
|
}
|
|
1431
|
-
|
|
1202
|
+
.whitespace-normal {
|
|
1203
|
+
white-space: normal;
|
|
1204
|
+
}
|
|
1432
1205
|
.whitespace-nowrap {
|
|
1433
1206
|
white-space: nowrap;
|
|
1434
1207
|
}
|
|
1435
|
-
|
|
1436
1208
|
.rounded {
|
|
1437
1209
|
border-radius: 0.25rem;
|
|
1438
1210
|
}
|
|
1439
|
-
|
|
1440
1211
|
.rounded-\[4px\] {
|
|
1441
1212
|
border-radius: 4px;
|
|
1442
1213
|
}
|
|
1443
|
-
|
|
1444
1214
|
.rounded-\[inherit\] {
|
|
1445
1215
|
border-radius: inherit;
|
|
1446
1216
|
}
|
|
1447
|
-
|
|
1448
1217
|
.rounded-full {
|
|
1449
1218
|
border-radius: 9999px;
|
|
1450
1219
|
}
|
|
1451
|
-
|
|
1452
1220
|
.rounded-md {
|
|
1453
1221
|
border-radius: calc(var(--radius) - 2px);
|
|
1454
1222
|
}
|
|
1455
|
-
|
|
1456
1223
|
.rounded-none {
|
|
1457
1224
|
border-radius: 0px;
|
|
1458
1225
|
}
|
|
1459
|
-
|
|
1460
1226
|
.rounded-sm {
|
|
1461
1227
|
border-radius: calc(var(--radius) - 4px);
|
|
1462
1228
|
}
|
|
1463
|
-
|
|
1464
1229
|
.rounded-b-lg {
|
|
1465
1230
|
border-bottom-right-radius: var(--radius);
|
|
1466
1231
|
border-bottom-left-radius: var(--radius);
|
|
1467
1232
|
}
|
|
1468
|
-
|
|
1469
1233
|
.rounded-t-2xl {
|
|
1470
1234
|
border-top-left-radius: 1rem;
|
|
1471
1235
|
border-top-right-radius: 1rem;
|
|
1472
1236
|
}
|
|
1473
|
-
|
|
1474
1237
|
.rounded-bl {
|
|
1475
1238
|
border-bottom-left-radius: 0.25rem;
|
|
1476
1239
|
}
|
|
1477
|
-
|
|
1478
1240
|
.rounded-br {
|
|
1479
1241
|
border-bottom-right-radius: 0.25rem;
|
|
1480
1242
|
}
|
|
1481
|
-
|
|
1482
1243
|
.rounded-tl {
|
|
1483
1244
|
border-top-left-radius: 0.25rem;
|
|
1484
1245
|
}
|
|
1485
|
-
|
|
1486
1246
|
.rounded-tr {
|
|
1487
1247
|
border-top-right-radius: 0.25rem;
|
|
1488
1248
|
}
|
|
1489
|
-
|
|
1490
1249
|
.border {
|
|
1491
1250
|
border-width: 1px;
|
|
1492
1251
|
}
|
|
1493
|
-
|
|
1494
1252
|
.border-0 {
|
|
1495
1253
|
border-width: 0px;
|
|
1496
1254
|
}
|
|
1497
|
-
|
|
1498
1255
|
.border-2 {
|
|
1499
1256
|
border-width: 2px;
|
|
1500
1257
|
}
|
|
1501
|
-
|
|
1502
1258
|
.border-b {
|
|
1503
1259
|
border-bottom-width: 1px;
|
|
1504
1260
|
}
|
|
1505
|
-
|
|
1506
1261
|
.border-l {
|
|
1507
1262
|
border-left-width: 1px;
|
|
1508
1263
|
}
|
|
1509
|
-
|
|
1510
1264
|
.border-t {
|
|
1511
1265
|
border-top-width: 1px;
|
|
1512
1266
|
}
|
|
1513
|
-
|
|
1514
1267
|
.border-none {
|
|
1515
1268
|
border-style: none;
|
|
1516
1269
|
}
|
|
1517
|
-
|
|
1518
1270
|
.\!border-stateColors-error {
|
|
1519
1271
|
border-color: var(--stateColors-error) !important;
|
|
1520
1272
|
}
|
|
1521
|
-
|
|
1522
1273
|
.border-black {
|
|
1523
1274
|
--tw-border-opacity: 1;
|
|
1524
1275
|
border-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
1525
1276
|
}
|
|
1526
|
-
|
|
1527
1277
|
.border-buttonColors-primaryOutlineColor {
|
|
1528
1278
|
border-color: var(--buttonColors-primaryOutlineColor);
|
|
1529
1279
|
}
|
|
1530
|
-
|
|
1531
1280
|
.border-buttonColors-secondaryOutlineColor {
|
|
1532
1281
|
border-color: var(--buttonColors-secondaryOutlineColor);
|
|
1533
1282
|
}
|
|
1534
|
-
|
|
1535
1283
|
.border-coreColors-brandColorPrimary {
|
|
1536
1284
|
border-color: var(--coreColors-brandColorPrimary);
|
|
1537
1285
|
}
|
|
1538
|
-
|
|
1539
1286
|
.border-coreColors-dividingLines {
|
|
1540
1287
|
border-color: var(--coreColors-dividingLines);
|
|
1541
1288
|
}
|
|
1542
|
-
|
|
1543
1289
|
.border-input {
|
|
1544
1290
|
border-color: hsl(var(--input));
|
|
1545
1291
|
}
|
|
1546
|
-
|
|
1547
1292
|
.border-stateColors-error {
|
|
1548
1293
|
border-color: var(--stateColors-error);
|
|
1549
1294
|
}
|
|
1550
|
-
|
|
1551
1295
|
.border-transparent {
|
|
1552
1296
|
border-color: transparent;
|
|
1553
1297
|
}
|
|
1554
|
-
|
|
1555
1298
|
.border-l-transparent {
|
|
1556
1299
|
border-left-color: transparent;
|
|
1557
1300
|
}
|
|
1558
|
-
|
|
1559
1301
|
.border-t-transparent {
|
|
1560
1302
|
border-top-color: transparent;
|
|
1561
1303
|
}
|
|
1562
|
-
|
|
1563
1304
|
.bg-\[\#612EFF\] {
|
|
1564
1305
|
--tw-bg-opacity: 1;
|
|
1565
1306
|
background-color: rgb(97 46 255 / var(--tw-bg-opacity));
|
|
1566
1307
|
}
|
|
1567
|
-
|
|
1568
1308
|
.bg-background {
|
|
1569
1309
|
background-color: hsl(var(--background));
|
|
1570
1310
|
}
|
|
1571
|
-
|
|
1572
1311
|
.bg-black\/80 {
|
|
1573
1312
|
background-color: rgb(0 0 0 / 0.8);
|
|
1574
1313
|
}
|
|
1575
|
-
|
|
1576
1314
|
.bg-border {
|
|
1577
1315
|
background-color: hsl(var(--border));
|
|
1578
1316
|
}
|
|
1579
|
-
|
|
1580
1317
|
.bg-buttonColors-primaryFill {
|
|
1581
1318
|
background-color: var(--buttonColors-primaryFill);
|
|
1582
1319
|
}
|
|
1583
|
-
|
|
1584
1320
|
.bg-buttonColors-secondaryFill {
|
|
1585
1321
|
background-color: var(--buttonColors-secondaryFill);
|
|
1586
1322
|
}
|
|
1587
|
-
|
|
1588
1323
|
.bg-coreColors-brandColorPrimary {
|
|
1589
1324
|
background-color: var(--coreColors-brandColorPrimary);
|
|
1590
1325
|
}
|
|
1591
|
-
|
|
1592
1326
|
.bg-coreColors-dividingLines {
|
|
1593
1327
|
background-color: var(--coreColors-dividingLines);
|
|
1594
1328
|
}
|
|
1595
|
-
|
|
1596
1329
|
.bg-coreColors-inputBackground {
|
|
1597
1330
|
background-color: var(--coreColors-inputBackground);
|
|
1598
1331
|
}
|
|
1599
|
-
|
|
1600
1332
|
.bg-coreColors-modalBackground {
|
|
1601
1333
|
background-color: var(--coreColors-modalBackground);
|
|
1602
1334
|
}
|
|
1603
|
-
|
|
1604
1335
|
.bg-coreColors-pageColor {
|
|
1605
1336
|
background-color: var(--coreColors-pageColor);
|
|
1606
1337
|
}
|
|
1607
|
-
|
|
1608
1338
|
.bg-productBadging-fill {
|
|
1609
1339
|
background-color: var(--productBadging-fill);
|
|
1610
1340
|
}
|
|
1611
|
-
|
|
1612
1341
|
.bg-stateColors-disabled {
|
|
1613
1342
|
background-color: var(--stateColors-disabled);
|
|
1614
1343
|
}
|
|
1615
|
-
|
|
1616
1344
|
.bg-stateColors-error {
|
|
1617
1345
|
background-color: var(--stateColors-error);
|
|
1618
1346
|
}
|
|
1619
|
-
|
|
1620
1347
|
.bg-stateColors-skeleton {
|
|
1621
1348
|
background-color: var(--stateColors-skeleton);
|
|
1622
1349
|
}
|
|
1623
|
-
|
|
1624
1350
|
.bg-stateColors-success {
|
|
1625
1351
|
background-color: var(--stateColors-success);
|
|
1626
1352
|
}
|
|
1627
|
-
|
|
1628
1353
|
.bg-stateColors-warning {
|
|
1629
1354
|
background-color: var(--stateColors-warning);
|
|
1630
1355
|
}
|
|
1631
|
-
|
|
1632
1356
|
.bg-transparent {
|
|
1633
1357
|
background-color: transparent;
|
|
1634
1358
|
}
|
|
1635
|
-
|
|
1636
1359
|
.bg-white {
|
|
1637
1360
|
--tw-bg-opacity: 1;
|
|
1638
1361
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1639
1362
|
}
|
|
1640
|
-
|
|
1641
1363
|
.bg-\[linear-gradient\(270deg\2c \#ffffff00_0\%\2c \#FFF_100\%\)\] {
|
|
1642
1364
|
background-image: linear-gradient(270deg,#ffffff00 0%,#FFF 100%);
|
|
1643
1365
|
}
|
|
1644
|
-
|
|
1645
1366
|
.bg-\[linear-gradient\(90deg\2c \#ffffff00_0\%\2c \#FFF_100\%\)\] {
|
|
1646
1367
|
background-image: linear-gradient(90deg,#ffffff00 0%,#FFF 100%);
|
|
1647
1368
|
}
|
|
1648
|
-
|
|
1649
1369
|
.bg-fade-left {
|
|
1650
1370
|
background-image: linear-gradient(to right, var(--coreColors-pageColor) 0%, #ffffff00 100%);;
|
|
1651
1371
|
}
|
|
1652
|
-
|
|
1653
1372
|
.bg-fade-right {
|
|
1654
1373
|
background-image: linear-gradient(to left, var(--coreColors-pageColor) 0%, #ffffff00 100%);;
|
|
1655
1374
|
}
|
|
1656
|
-
|
|
1657
1375
|
.fill-current {
|
|
1658
1376
|
fill: currentColor;
|
|
1659
1377
|
}
|
|
1660
|
-
|
|
1661
1378
|
.p-0 {
|
|
1662
1379
|
padding: 0px;
|
|
1663
1380
|
}
|
|
1664
|
-
|
|
1665
1381
|
.p-1 {
|
|
1666
1382
|
padding: 0.25rem;
|
|
1667
1383
|
}
|
|
1668
|
-
|
|
1669
1384
|
.p-2 {
|
|
1670
1385
|
padding: 0.5rem;
|
|
1671
1386
|
}
|
|
1672
|
-
|
|
1673
1387
|
.p-3 {
|
|
1674
1388
|
padding: 0.75rem;
|
|
1675
1389
|
}
|
|
1676
|
-
|
|
1677
1390
|
.p-4 {
|
|
1678
1391
|
padding: 1rem;
|
|
1679
1392
|
}
|
|
1680
|
-
|
|
1681
1393
|
.p-6 {
|
|
1682
1394
|
padding: 1.5rem;
|
|
1683
1395
|
}
|
|
1684
|
-
|
|
1685
1396
|
.p-\[1px\] {
|
|
1686
1397
|
padding: 1px;
|
|
1687
1398
|
}
|
|
1688
|
-
|
|
1689
1399
|
.px-0 {
|
|
1690
1400
|
padding-left: 0px;
|
|
1691
1401
|
padding-right: 0px;
|
|
1692
1402
|
}
|
|
1693
|
-
|
|
1694
1403
|
.px-1 {
|
|
1695
1404
|
padding-left: 0.25rem;
|
|
1696
1405
|
padding-right: 0.25rem;
|
|
1697
1406
|
}
|
|
1698
|
-
|
|
1699
1407
|
.px-2 {
|
|
1700
1408
|
padding-left: 0.5rem;
|
|
1701
1409
|
padding-right: 0.5rem;
|
|
1702
1410
|
}
|
|
1703
|
-
|
|
1704
1411
|
.px-2\.5 {
|
|
1705
1412
|
padding-left: 0.625rem;
|
|
1706
1413
|
padding-right: 0.625rem;
|
|
1707
1414
|
}
|
|
1708
|
-
|
|
1709
1415
|
.px-3 {
|
|
1710
1416
|
padding-left: 0.75rem;
|
|
1711
1417
|
padding-right: 0.75rem;
|
|
1712
1418
|
}
|
|
1713
|
-
|
|
1714
1419
|
.px-4 {
|
|
1715
1420
|
padding-left: 1rem;
|
|
1716
1421
|
padding-right: 1rem;
|
|
1717
1422
|
}
|
|
1718
|
-
|
|
1719
1423
|
.px-5 {
|
|
1720
1424
|
padding-left: 1.25rem;
|
|
1721
1425
|
padding-right: 1.25rem;
|
|
1722
1426
|
}
|
|
1723
|
-
|
|
1724
1427
|
.px-8 {
|
|
1725
1428
|
padding-left: 2rem;
|
|
1726
1429
|
padding-right: 2rem;
|
|
1727
1430
|
}
|
|
1728
|
-
|
|
1729
1431
|
.px-\[16px\] {
|
|
1730
1432
|
padding-left: 16px;
|
|
1731
1433
|
padding-right: 16px;
|
|
1732
1434
|
}
|
|
1733
|
-
|
|
1734
1435
|
.py-1 {
|
|
1735
1436
|
padding-top: 0.25rem;
|
|
1736
1437
|
padding-bottom: 0.25rem;
|
|
1737
1438
|
}
|
|
1738
|
-
|
|
1739
1439
|
.py-2 {
|
|
1740
1440
|
padding-top: 0.5rem;
|
|
1741
1441
|
padding-bottom: 0.5rem;
|
|
1742
1442
|
}
|
|
1743
|
-
|
|
1744
1443
|
.py-3 {
|
|
1745
1444
|
padding-top: 0.75rem;
|
|
1746
1445
|
padding-bottom: 0.75rem;
|
|
1747
1446
|
}
|
|
1748
|
-
|
|
1749
1447
|
.py-4 {
|
|
1750
1448
|
padding-top: 1rem;
|
|
1751
1449
|
padding-bottom: 1rem;
|
|
1752
1450
|
}
|
|
1753
|
-
|
|
1754
1451
|
.pb-2 {
|
|
1755
1452
|
padding-bottom: 0.5rem;
|
|
1756
1453
|
}
|
|
1757
|
-
|
|
1758
1454
|
.pb-4 {
|
|
1759
1455
|
padding-bottom: 1rem;
|
|
1760
1456
|
}
|
|
1761
|
-
|
|
1762
1457
|
.pb-8 {
|
|
1763
1458
|
padding-bottom: 2rem;
|
|
1764
1459
|
}
|
|
1765
|
-
|
|
1766
1460
|
.pl-0 {
|
|
1767
1461
|
padding-left: 0px;
|
|
1768
1462
|
}
|
|
1769
|
-
|
|
1770
1463
|
.pl-10 {
|
|
1771
1464
|
padding-left: 2.5rem;
|
|
1772
1465
|
}
|
|
1773
|
-
|
|
1774
1466
|
.pl-2 {
|
|
1775
1467
|
padding-left: 0.5rem;
|
|
1776
1468
|
}
|
|
1777
|
-
|
|
1778
1469
|
.pl-4 {
|
|
1779
1470
|
padding-left: 1rem;
|
|
1780
1471
|
}
|
|
1781
|
-
|
|
1782
1472
|
.pl-8 {
|
|
1783
1473
|
padding-left: 2rem;
|
|
1784
1474
|
}
|
|
1785
|
-
|
|
1786
1475
|
.pr-1 {
|
|
1787
1476
|
padding-right: 0.25rem;
|
|
1788
1477
|
}
|
|
1789
|
-
|
|
1790
1478
|
.pr-2 {
|
|
1791
1479
|
padding-right: 0.5rem;
|
|
1792
1480
|
}
|
|
1793
|
-
|
|
1794
1481
|
.pr-4 {
|
|
1795
1482
|
padding-right: 1rem;
|
|
1796
1483
|
}
|
|
1797
|
-
|
|
1798
1484
|
.pt-0 {
|
|
1799
1485
|
padding-top: 0px;
|
|
1800
1486
|
}
|
|
1801
|
-
|
|
1802
1487
|
.pt-12 {
|
|
1803
1488
|
padding-top: 3rem;
|
|
1804
1489
|
}
|
|
1805
|
-
|
|
1806
1490
|
.pt-4 {
|
|
1807
1491
|
padding-top: 1rem;
|
|
1808
1492
|
}
|
|
1809
|
-
|
|
1810
1493
|
.pt-5 {
|
|
1811
1494
|
padding-top: 1.25rem;
|
|
1812
1495
|
}
|
|
1813
|
-
|
|
1814
1496
|
.pt-6 {
|
|
1815
1497
|
padding-top: 1.5rem;
|
|
1816
1498
|
}
|
|
1817
|
-
|
|
1818
1499
|
.text-left {
|
|
1819
1500
|
text-align: left;
|
|
1820
1501
|
}
|
|
1821
|
-
|
|
1822
1502
|
.text-center {
|
|
1823
1503
|
text-align: center;
|
|
1824
1504
|
}
|
|
1825
|
-
|
|
1826
1505
|
.text-right {
|
|
1827
1506
|
text-align: right;
|
|
1828
1507
|
}
|
|
1829
|
-
|
|
1830
1508
|
.text-start {
|
|
1831
1509
|
text-align: start;
|
|
1832
1510
|
}
|
|
1833
|
-
|
|
1834
1511
|
.align-top {
|
|
1835
1512
|
vertical-align: top;
|
|
1836
1513
|
}
|
|
1837
|
-
|
|
1838
1514
|
.font-fontMedium {
|
|
1839
1515
|
font-family: var(--fontMedium);
|
|
1840
1516
|
}
|
|
1841
|
-
|
|
1842
1517
|
.font-fontRegular {
|
|
1843
1518
|
font-family: var(--fontRegular);
|
|
1844
1519
|
}
|
|
1845
|
-
|
|
1846
1520
|
.text-\[10px\] {
|
|
1847
1521
|
font-size: 10px;
|
|
1848
1522
|
}
|
|
1849
|
-
|
|
1850
1523
|
.text-\[12px\] {
|
|
1851
1524
|
font-size: 12px;
|
|
1852
1525
|
}
|
|
1853
|
-
|
|
1854
1526
|
.text-\[15px\] {
|
|
1855
1527
|
font-size: 15px;
|
|
1856
1528
|
}
|
|
1857
|
-
|
|
1858
1529
|
.text-\[18px\] {
|
|
1859
1530
|
font-size: 18px;
|
|
1860
1531
|
}
|
|
1861
|
-
|
|
1862
1532
|
.text-\[23px\] {
|
|
1863
1533
|
font-size: 23px;
|
|
1864
1534
|
}
|
|
1865
|
-
|
|
1866
1535
|
.text-lg {
|
|
1867
1536
|
font-size: 1.125rem;
|
|
1868
1537
|
line-height: 1.75rem;
|
|
1869
1538
|
}
|
|
1870
|
-
|
|
1871
1539
|
.text-sm {
|
|
1872
1540
|
font-size: 0.875rem;
|
|
1873
1541
|
line-height: 1.25rem;
|
|
1874
1542
|
}
|
|
1875
|
-
|
|
1876
1543
|
.text-xs {
|
|
1877
1544
|
font-size: 0.75rem;
|
|
1878
1545
|
line-height: 1rem;
|
|
1879
1546
|
}
|
|
1880
|
-
|
|
1881
1547
|
.font-medium {
|
|
1882
1548
|
font-weight: 500;
|
|
1883
1549
|
}
|
|
1884
|
-
|
|
1885
1550
|
.font-normal {
|
|
1886
1551
|
font-weight: 400;
|
|
1887
1552
|
}
|
|
1888
|
-
|
|
1889
1553
|
.font-semibold {
|
|
1890
1554
|
font-weight: 600;
|
|
1891
1555
|
}
|
|
1892
|
-
|
|
1893
1556
|
.uppercase {
|
|
1894
1557
|
text-transform: uppercase;
|
|
1895
1558
|
}
|
|
1896
|
-
|
|
1897
1559
|
.leading-\[130\%\] {
|
|
1898
1560
|
line-height: 130%;
|
|
1899
1561
|
}
|
|
1900
|
-
|
|
1901
1562
|
.leading-\[13px\] {
|
|
1902
1563
|
line-height: 13px;
|
|
1903
1564
|
}
|
|
1904
|
-
|
|
1905
1565
|
.leading-\[160\%\] {
|
|
1906
1566
|
line-height: 160%;
|
|
1907
1567
|
}
|
|
1908
|
-
|
|
1909
1568
|
.leading-\[24px\] {
|
|
1910
1569
|
line-height: 24px;
|
|
1911
1570
|
}
|
|
1912
|
-
|
|
1913
1571
|
.leading-none {
|
|
1914
1572
|
line-height: 1;
|
|
1915
1573
|
}
|
|
1916
|
-
|
|
1917
1574
|
.text-black {
|
|
1918
1575
|
--tw-text-opacity: 1;
|
|
1919
1576
|
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
1920
1577
|
}
|
|
1921
|
-
|
|
1922
1578
|
.text-buttonColors-destructiveText {
|
|
1923
1579
|
color: var(--buttonColors-destructiveText);
|
|
1924
1580
|
}
|
|
1925
|
-
|
|
1926
1581
|
.text-buttonColors-disabled {
|
|
1927
1582
|
color: var(--buttonColors-disabled);
|
|
1928
1583
|
}
|
|
1929
|
-
|
|
1930
1584
|
.text-buttonColors-primaryFill {
|
|
1931
1585
|
color: var(--buttonColors-primaryFill);
|
|
1932
1586
|
}
|
|
1933
|
-
|
|
1934
1587
|
.text-buttonColors-primaryOutline {
|
|
1935
1588
|
color: var(--buttonColors-primaryOutline);
|
|
1936
1589
|
}
|
|
1937
|
-
|
|
1938
1590
|
.text-buttonColors-primaryOutlineColor {
|
|
1939
1591
|
color: var(--buttonColors-primaryOutlineColor);
|
|
1940
1592
|
}
|
|
1941
|
-
|
|
1942
1593
|
.text-buttonColors-primaryOutlineEnabled {
|
|
1943
1594
|
color: var(--buttonColors-primaryOutlineEnabled);
|
|
1944
1595
|
}
|
|
1945
|
-
|
|
1946
1596
|
.text-buttonColors-primaryShadow {
|
|
1947
1597
|
color: var(--buttonColors-primaryShadow);
|
|
1948
1598
|
}
|
|
1949
|
-
|
|
1950
1599
|
.text-buttonColors-primaryText {
|
|
1951
1600
|
color: var(--buttonColors-primaryText);
|
|
1952
1601
|
}
|
|
1953
|
-
|
|
1954
1602
|
.text-buttonColors-secondaryFill {
|
|
1955
1603
|
color: var(--buttonColors-secondaryFill);
|
|
1956
1604
|
}
|
|
1957
|
-
|
|
1958
1605
|
.text-buttonColors-secondaryOutline {
|
|
1959
1606
|
color: var(--buttonColors-secondaryOutline);
|
|
1960
1607
|
}
|
|
1961
|
-
|
|
1962
1608
|
.text-buttonColors-secondaryOutlineColor {
|
|
1963
1609
|
color: var(--buttonColors-secondaryOutlineColor);
|
|
1964
1610
|
}
|
|
1965
|
-
|
|
1966
1611
|
.text-buttonColors-secondaryOutlineEnabled {
|
|
1967
1612
|
color: var(--buttonColors-secondaryOutlineEnabled);
|
|
1968
1613
|
}
|
|
1969
|
-
|
|
1970
1614
|
.text-buttonColors-secondaryShadow {
|
|
1971
1615
|
color: var(--buttonColors-secondaryShadow);
|
|
1972
1616
|
}
|
|
1973
|
-
|
|
1974
1617
|
.text-buttonColors-secondaryText {
|
|
1975
1618
|
color: var(--buttonColors-secondaryText);
|
|
1976
1619
|
}
|
|
1977
|
-
|
|
1978
1620
|
.text-coreColors-brandColorPrimary {
|
|
1979
1621
|
color: var(--coreColors-brandColorPrimary);
|
|
1980
1622
|
}
|
|
1981
|
-
|
|
1982
1623
|
.text-coreColors-dividingLines {
|
|
1983
1624
|
color: var(--coreColors-dividingLines);
|
|
1984
1625
|
}
|
|
1985
|
-
|
|
1986
1626
|
.text-coreColors-headerBackground {
|
|
1987
1627
|
color: var(--coreColors-headerBackground);
|
|
1988
1628
|
}
|
|
1989
|
-
|
|
1990
1629
|
.text-coreColors-headerIcon {
|
|
1991
1630
|
color: var(--coreColors-headerIcon);
|
|
1992
1631
|
}
|
|
1993
|
-
|
|
1994
1632
|
.text-coreColors-inputBackground {
|
|
1995
1633
|
color: var(--coreColors-inputBackground);
|
|
1996
1634
|
}
|
|
1997
|
-
|
|
1998
1635
|
.text-coreColors-modalBackground {
|
|
1999
1636
|
color: var(--coreColors-modalBackground);
|
|
2000
1637
|
}
|
|
2001
|
-
|
|
2002
1638
|
.text-coreColors-pageColor {
|
|
2003
1639
|
color: var(--coreColors-pageColor);
|
|
2004
1640
|
}
|
|
2005
|
-
|
|
2006
1641
|
.text-coreColors-primaryIcon {
|
|
2007
1642
|
color: var(--coreColors-primaryIcon);
|
|
2008
1643
|
}
|
|
2009
|
-
|
|
2010
1644
|
.text-coreColors-secondaryIcon {
|
|
2011
1645
|
color: var(--coreColors-secondaryIcon);
|
|
2012
1646
|
}
|
|
2013
|
-
|
|
2014
1647
|
.text-coreColors-shadow {
|
|
2015
1648
|
color: var(--coreColors-shadow);
|
|
2016
1649
|
}
|
|
2017
|
-
|
|
2018
1650
|
.text-coreColors-shadowsEnabled {
|
|
2019
1651
|
color: var(--coreColors-shadowsEnabled);
|
|
2020
1652
|
}
|
|
2021
|
-
|
|
2022
1653
|
.text-coreColors-tabBar {
|
|
2023
1654
|
color: var(--coreColors-tabBar);
|
|
2024
1655
|
}
|
|
2025
|
-
|
|
2026
1656
|
.text-current {
|
|
2027
1657
|
color: currentColor;
|
|
2028
1658
|
}
|
|
2029
|
-
|
|
2030
1659
|
.text-foreground\/50 {
|
|
2031
1660
|
color: hsl(var(--foreground) / 0.5);
|
|
2032
1661
|
}
|
|
2033
|
-
|
|
2034
1662
|
.text-muted-foreground {
|
|
2035
1663
|
color: hsl(var(--muted-foreground));
|
|
2036
1664
|
}
|
|
2037
|
-
|
|
2038
1665
|
.text-productBadging-text {
|
|
2039
1666
|
color: var(--productBadging-text);
|
|
2040
1667
|
}
|
|
2041
|
-
|
|
2042
1668
|
.text-stateColors-disabled {
|
|
2043
1669
|
color: var(--stateColors-disabled);
|
|
2044
1670
|
}
|
|
2045
|
-
|
|
2046
1671
|
.text-stateColors-error {
|
|
2047
1672
|
color: var(--stateColors-error);
|
|
2048
1673
|
}
|
|
2049
|
-
|
|
2050
1674
|
.text-stateColors-favorites {
|
|
2051
1675
|
color: var(--stateColors-favorites);
|
|
2052
1676
|
}
|
|
2053
|
-
|
|
2054
1677
|
.text-stateColors-reviews {
|
|
2055
1678
|
color: var(--stateColors-reviews);
|
|
2056
1679
|
}
|
|
2057
|
-
|
|
2058
1680
|
.text-stateColors-skeleton {
|
|
2059
1681
|
color: var(--stateColors-skeleton);
|
|
2060
1682
|
}
|
|
2061
|
-
|
|
2062
1683
|
.text-stateColors-subscriptions {
|
|
2063
1684
|
color: var(--stateColors-subscriptions);
|
|
2064
1685
|
}
|
|
2065
|
-
|
|
2066
1686
|
.text-stateColors-success {
|
|
2067
1687
|
color: var(--stateColors-success);
|
|
2068
1688
|
}
|
|
2069
|
-
|
|
2070
1689
|
.text-stateColors-warning {
|
|
2071
1690
|
color: var(--stateColors-warning);
|
|
2072
1691
|
}
|
|
2073
|
-
|
|
2074
1692
|
.text-textColors-legalText {
|
|
2075
1693
|
color: var(--textColors-legalText);
|
|
2076
1694
|
}
|
|
2077
|
-
|
|
2078
1695
|
.text-textColors-pageTitle {
|
|
2079
1696
|
color: var(--textColors-pageTitle);
|
|
2080
1697
|
}
|
|
2081
|
-
|
|
2082
1698
|
.text-textColors-priceText {
|
|
2083
1699
|
color: var(--textColors-priceText);
|
|
2084
1700
|
}
|
|
2085
|
-
|
|
2086
1701
|
.text-textColors-primaryColor {
|
|
2087
1702
|
color: var(--textColors-primaryColor, #121212ff);
|
|
2088
1703
|
}
|
|
2089
|
-
|
|
2090
1704
|
.text-textColors-productTitle {
|
|
2091
1705
|
color: var(--textColors-productTitle);
|
|
2092
1706
|
}
|
|
2093
|
-
|
|
2094
1707
|
.text-textColors-salePriceText {
|
|
2095
1708
|
color: var(--textColors-salePriceText);
|
|
2096
1709
|
}
|
|
2097
|
-
|
|
2098
1710
|
.text-textColors-secondaryColor {
|
|
2099
1711
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
2100
1712
|
}
|
|
2101
|
-
|
|
2102
1713
|
.text-textColors-strikethroughPriceText {
|
|
2103
1714
|
color: var(--textColors-strikethroughPriceText);
|
|
2104
1715
|
}
|
|
2105
|
-
|
|
2106
1716
|
.line-through {
|
|
2107
1717
|
text-decoration-line: line-through;
|
|
2108
1718
|
}
|
|
2109
|
-
|
|
2110
1719
|
.underline-offset-4 {
|
|
2111
1720
|
text-underline-offset: 4px;
|
|
2112
1721
|
}
|
|
2113
|
-
|
|
2114
1722
|
.opacity-0 {
|
|
2115
1723
|
opacity: 0;
|
|
2116
1724
|
}
|
|
2117
|
-
|
|
2118
1725
|
.opacity-100 {
|
|
2119
1726
|
opacity: 1;
|
|
2120
1727
|
}
|
|
2121
|
-
|
|
2122
1728
|
.opacity-50 {
|
|
2123
1729
|
opacity: 0.5;
|
|
2124
1730
|
}
|
|
2125
|
-
|
|
2126
1731
|
.shadow-\[0_0_6px_0_rgba\(17\2c 17\2c 17\2c 0\.16\)\] {
|
|
2127
1732
|
--tw-shadow: 0 0 6px 0 rgba(17,17,17,0.16);
|
|
2128
1733
|
--tw-shadow-colored: 0 0 6px 0 var(--tw-shadow-color);
|
|
2129
1734
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2130
1735
|
}
|
|
2131
|
-
|
|
2132
1736
|
.shadow-lg {
|
|
2133
1737
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
2134
1738
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
2135
1739
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2136
1740
|
}
|
|
2137
|
-
|
|
2138
1741
|
.shadow-primary {
|
|
2139
1742
|
--tw-shadow: calc(var(--buttonColors-primaryShadowEnabled) * 0px) calc(var(--buttonColors-primaryShadowEnabled) * 5px) calc(var(--buttonColors-primaryShadowEnabled) * 25px) calc(var(--buttonColors-primaryShadowEnabled)* 0px) rgb(0, 0, 0, 0.10);;
|
|
2140
1743
|
--tw-shadow-colored: calc(var(--buttonColors-primaryShadowEnabled) * 0px) calc(var(--buttonColors-primaryShadowEnabled) * 5px) calc(var(--buttonColors-primaryShadowEnabled) * 25px) calc(var(--buttonColors-primaryShadowEnabled)* 0px) rgb(0, 0, 0, 0.10);;
|
|
2141
1744
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2142
1745
|
}
|
|
2143
|
-
|
|
2144
1746
|
.shadow-secondary {
|
|
2145
1747
|
--tw-shadow: calc(var(--buttonColors-secondaryShadowEnabled) * 0px) calc(var(--buttonColors-secondaryShadowEnabled) * 5px) calc(var(--buttonColors-secondaryShadowEnabled) * 25px) calc(var(--buttonColors-secondaryShadowEnabled)* 0px) rgb(0, 0, 0, 0.10);;
|
|
2146
1748
|
--tw-shadow-colored: calc(var(--buttonColors-secondaryShadowEnabled) * 0px) calc(var(--buttonColors-secondaryShadowEnabled) * 5px) calc(var(--buttonColors-secondaryShadowEnabled) * 25px) calc(var(--buttonColors-secondaryShadowEnabled)* 0px) rgb(0, 0, 0, 0.10);;
|
|
2147
1749
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2148
1750
|
}
|
|
2149
|
-
|
|
2150
1751
|
.shadow-buttonColors-primaryShadow {
|
|
2151
1752
|
--tw-shadow-color: var(--buttonColors-primaryShadow);
|
|
2152
1753
|
--tw-shadow: var(--tw-shadow-colored);
|
|
2153
1754
|
}
|
|
2154
|
-
|
|
2155
1755
|
.shadow-primary {
|
|
2156
1756
|
--tw-shadow-color: hsl(var(--primary));
|
|
2157
1757
|
--tw-shadow: var(--tw-shadow-colored);
|
|
2158
1758
|
}
|
|
2159
|
-
|
|
2160
1759
|
.shadow-secondary {
|
|
2161
1760
|
--tw-shadow-color: hsl(var(--secondary));
|
|
2162
1761
|
--tw-shadow: var(--tw-shadow-colored);
|
|
2163
1762
|
}
|
|
2164
|
-
|
|
2165
1763
|
.outline-none {
|
|
2166
1764
|
outline: 2px solid transparent;
|
|
2167
1765
|
outline-offset: 2px;
|
|
2168
1766
|
}
|
|
2169
|
-
|
|
2170
1767
|
.outline {
|
|
2171
1768
|
outline-style: solid;
|
|
2172
1769
|
}
|
|
2173
|
-
|
|
2174
1770
|
.outline-0 {
|
|
2175
1771
|
outline-width: 0px;
|
|
2176
1772
|
}
|
|
2177
|
-
|
|
2178
1773
|
.outline-1 {
|
|
2179
1774
|
outline-width: 1px;
|
|
2180
1775
|
}
|
|
2181
|
-
|
|
2182
1776
|
.outline-coreColors-brandColorPrimary {
|
|
2183
1777
|
outline-color: var(--coreColors-brandColorPrimary);
|
|
2184
1778
|
}
|
|
2185
|
-
|
|
2186
1779
|
.outline-coreColors-dividingLines {
|
|
2187
1780
|
outline-color: var(--coreColors-dividingLines);
|
|
2188
1781
|
}
|
|
2189
|
-
|
|
2190
1782
|
.outline-stateColors-error {
|
|
2191
1783
|
outline-color: var(--stateColors-error);
|
|
2192
1784
|
}
|
|
2193
|
-
|
|
2194
1785
|
.outline-stateColors-skeleton {
|
|
2195
1786
|
outline-color: var(--stateColors-skeleton);
|
|
2196
1787
|
}
|
|
2197
|
-
|
|
2198
1788
|
.ring-0 {
|
|
2199
1789
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2200
1790
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2201
1791
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2202
1792
|
}
|
|
2203
|
-
|
|
2204
1793
|
.ring-offset-background {
|
|
2205
1794
|
--tw-ring-offset-color: hsl(var(--background));
|
|
2206
1795
|
}
|
|
2207
|
-
|
|
2208
1796
|
.drop-shadow-\[0_3px_1px_0_rgba\(0\2c 0\2c 0\2c 1\)\] {
|
|
2209
1797
|
--tw-drop-shadow: drop-shadow(0 3px 1px 0 rgba(0,0,0,1));
|
|
2210
1798
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
2211
1799
|
}
|
|
2212
|
-
|
|
2213
|
-
.\!filter {
|
|
2214
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
|
|
2215
|
-
}
|
|
2216
|
-
|
|
2217
1800
|
.filter {
|
|
2218
1801
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
2219
1802
|
}
|
|
2220
|
-
|
|
2221
1803
|
.transition-all {
|
|
2222
1804
|
transition-property: all;
|
|
2223
1805
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2224
1806
|
transition-duration: 150ms;
|
|
2225
1807
|
}
|
|
2226
|
-
|
|
2227
1808
|
.transition-colors {
|
|
2228
1809
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
2229
1810
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2230
1811
|
transition-duration: 150ms;
|
|
2231
1812
|
}
|
|
2232
|
-
|
|
2233
1813
|
.transition-opacity {
|
|
2234
1814
|
transition-property: opacity;
|
|
2235
1815
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2236
1816
|
transition-duration: 150ms;
|
|
2237
1817
|
}
|
|
2238
|
-
|
|
2239
1818
|
.transition-transform {
|
|
2240
1819
|
transition-property: transform;
|
|
2241
1820
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2242
1821
|
transition-duration: 150ms;
|
|
2243
1822
|
}
|
|
2244
|
-
|
|
2245
1823
|
.duration-200 {
|
|
2246
1824
|
transition-duration: 200ms;
|
|
2247
1825
|
}
|
|
2248
|
-
|
|
2249
1826
|
.duration-300 {
|
|
2250
1827
|
transition-duration: 300ms;
|
|
2251
1828
|
}
|
|
2252
|
-
|
|
2253
1829
|
.duration-500 {
|
|
2254
1830
|
transition-duration: 500ms;
|
|
2255
1831
|
}
|
|
2256
|
-
|
|
2257
1832
|
.ease-in-out {
|
|
2258
1833
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2259
1834
|
}
|
|
2260
|
-
|
|
2261
1835
|
@keyframes enter {
|
|
1836
|
+
|
|
2262
1837
|
from {
|
|
2263
1838
|
opacity: var(--tw-enter-opacity, 1);
|
|
2264
1839
|
transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
|
|
2265
1840
|
}
|
|
2266
1841
|
}
|
|
2267
|
-
|
|
2268
1842
|
@keyframes exit {
|
|
1843
|
+
|
|
2269
1844
|
to {
|
|
2270
1845
|
opacity: var(--tw-exit-opacity, 1);
|
|
2271
1846
|
transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
|
|
2272
1847
|
}
|
|
2273
1848
|
}
|
|
2274
|
-
|
|
2275
1849
|
.duration-200 {
|
|
2276
1850
|
animation-duration: 200ms;
|
|
2277
1851
|
}
|
|
2278
|
-
|
|
2279
1852
|
.duration-300 {
|
|
2280
1853
|
animation-duration: 300ms;
|
|
2281
1854
|
}
|
|
2282
|
-
|
|
2283
1855
|
.duration-500 {
|
|
2284
1856
|
animation-duration: 500ms;
|
|
2285
1857
|
}
|
|
2286
|
-
|
|
2287
1858
|
.ease-in-out {
|
|
2288
1859
|
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2289
1860
|
}
|
|
2290
|
-
|
|
2291
1861
|
.container {
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
}
|
|
2295
|
-
|
|
1862
|
+
padding-right: 16px;
|
|
1863
|
+
padding-left: 16px;
|
|
1864
|
+
}
|
|
2296
1865
|
*:hover {
|
|
2297
|
-
|
|
2298
|
-
}
|
|
1866
|
+
text-decoration-line: unset !important;
|
|
1867
|
+
}
|
|
2299
1868
|
|
|
2300
1869
|
body::-webkit-scrollbar {
|
|
2301
1870
|
display: none;
|
|
2302
|
-
-ms-overflow-style: none;
|
|
2303
|
-
|
|
2304
|
-
scrollbar-width: none;
|
|
2305
|
-
/* Firefox */
|
|
1871
|
+
-ms-overflow-style: none; /* IE and Edge */
|
|
1872
|
+
scrollbar-width: none; /* Firefox */
|
|
2306
1873
|
}
|
|
2307
1874
|
|
|
2308
1875
|
.file\:border-0::file-selector-button {
|
|
@@ -2623,6 +2190,7 @@ body::-webkit-scrollbar {
|
|
|
2623
2190
|
}
|
|
2624
2191
|
|
|
2625
2192
|
@keyframes accordion-up {
|
|
2193
|
+
|
|
2626
2194
|
from {
|
|
2627
2195
|
height: var(--radix-accordion-content-height);
|
|
2628
2196
|
}
|
|
@@ -2637,6 +2205,7 @@ body::-webkit-scrollbar {
|
|
|
2637
2205
|
}
|
|
2638
2206
|
|
|
2639
2207
|
@keyframes accordion-down {
|
|
2208
|
+
|
|
2640
2209
|
from {
|
|
2641
2210
|
height: 0;
|
|
2642
2211
|
}
|
|
@@ -2777,6 +2346,7 @@ body::-webkit-scrollbar {
|
|
|
2777
2346
|
}
|
|
2778
2347
|
|
|
2779
2348
|
@media (min-width: 640px) {
|
|
2349
|
+
|
|
2780
2350
|
.sm\:mt-0 {
|
|
2781
2351
|
margin-top: 0px;
|
|
2782
2352
|
}
|