@tapcart/mobile-components 0.4.4 → 0.4.6
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/ui/icon.d.ts.map +1 -1
- package/dist/components/ui/icon.js +6 -2
- package/dist/components/ui/image.d.ts.map +1 -1
- package/dist/components/ui/image.js +39 -7
- package/dist/components/ui/product-card.d.ts +2 -1
- package/dist/components/ui/product-card.d.ts.map +1 -1
- package/dist/components/ui/product-card.js +6 -6
- package/dist/components/ui/selectors.d.ts +1 -0
- package/dist/components/ui/selectors.d.ts.map +1 -1
- package/dist/components/ui/selectors.js +4 -4
- package/dist/components/ui/skeleton.d.ts +1 -1
- package/dist/styles.css +769 -187
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
/*
|
|
2
2
|
! tailwindcss v3.3.5 | MIT License | https://tailwindcss.com
|
|
3
|
-
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
/*
|
|
4
6
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
5
7
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
6
8
|
*/
|
|
@@ -8,10 +10,14 @@
|
|
|
8
10
|
*,
|
|
9
11
|
::before,
|
|
10
12
|
::after {
|
|
11
|
-
box-sizing: border-box;
|
|
12
|
-
|
|
13
|
-
border-
|
|
14
|
-
|
|
13
|
+
box-sizing: border-box;
|
|
14
|
+
/* 1 */
|
|
15
|
+
border-width: 0;
|
|
16
|
+
/* 2 */
|
|
17
|
+
border-style: solid;
|
|
18
|
+
/* 2 */
|
|
19
|
+
border-color: #e5e7eb;
|
|
20
|
+
/* 2 */
|
|
15
21
|
}
|
|
16
22
|
|
|
17
23
|
::before,
|
|
@@ -29,14 +35,21 @@
|
|
|
29
35
|
*/
|
|
30
36
|
|
|
31
37
|
html {
|
|
32
|
-
line-height: 1.5;
|
|
33
|
-
|
|
34
|
-
-
|
|
38
|
+
line-height: 1.5;
|
|
39
|
+
/* 1 */
|
|
40
|
+
-webkit-text-size-adjust: 100%;
|
|
41
|
+
/* 2 */
|
|
42
|
+
-moz-tab-size: 4;
|
|
43
|
+
/* 3 */
|
|
35
44
|
-o-tab-size: 4;
|
|
36
|
-
tab-size: 4;
|
|
37
|
-
|
|
38
|
-
font-
|
|
39
|
-
|
|
45
|
+
tab-size: 4;
|
|
46
|
+
/* 3 */
|
|
47
|
+
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";
|
|
48
|
+
/* 4 */
|
|
49
|
+
font-feature-settings: normal;
|
|
50
|
+
/* 5 */
|
|
51
|
+
font-variation-settings: normal;
|
|
52
|
+
/* 6 */
|
|
40
53
|
}
|
|
41
54
|
|
|
42
55
|
/*
|
|
@@ -45,8 +58,10 @@ html {
|
|
|
45
58
|
*/
|
|
46
59
|
|
|
47
60
|
body {
|
|
48
|
-
margin: 0;
|
|
49
|
-
|
|
61
|
+
margin: 0;
|
|
62
|
+
/* 1 */
|
|
63
|
+
line-height: inherit;
|
|
64
|
+
/* 2 */
|
|
50
65
|
}
|
|
51
66
|
|
|
52
67
|
/*
|
|
@@ -56,9 +71,12 @@ body {
|
|
|
56
71
|
*/
|
|
57
72
|
|
|
58
73
|
hr {
|
|
59
|
-
height: 0;
|
|
60
|
-
|
|
61
|
-
|
|
74
|
+
height: 0;
|
|
75
|
+
/* 1 */
|
|
76
|
+
color: inherit;
|
|
77
|
+
/* 2 */
|
|
78
|
+
border-top-width: 1px;
|
|
79
|
+
/* 3 */
|
|
62
80
|
}
|
|
63
81
|
|
|
64
82
|
/*
|
|
@@ -111,8 +129,10 @@ code,
|
|
|
111
129
|
kbd,
|
|
112
130
|
samp,
|
|
113
131
|
pre {
|
|
114
|
-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
115
|
-
|
|
132
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
133
|
+
/* 1 */
|
|
134
|
+
font-size: 1em;
|
|
135
|
+
/* 2 */
|
|
116
136
|
}
|
|
117
137
|
|
|
118
138
|
/*
|
|
@@ -150,9 +170,12 @@ sup {
|
|
|
150
170
|
*/
|
|
151
171
|
|
|
152
172
|
table {
|
|
153
|
-
text-indent: 0;
|
|
154
|
-
|
|
155
|
-
border-
|
|
173
|
+
text-indent: 0;
|
|
174
|
+
/* 1 */
|
|
175
|
+
border-color: inherit;
|
|
176
|
+
/* 2 */
|
|
177
|
+
border-collapse: collapse;
|
|
178
|
+
/* 3 */
|
|
156
179
|
}
|
|
157
180
|
|
|
158
181
|
/*
|
|
@@ -166,15 +189,24 @@ input,
|
|
|
166
189
|
optgroup,
|
|
167
190
|
select,
|
|
168
191
|
textarea {
|
|
169
|
-
font-family: inherit;
|
|
170
|
-
|
|
171
|
-
font-
|
|
172
|
-
|
|
173
|
-
font-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
192
|
+
font-family: inherit;
|
|
193
|
+
/* 1 */
|
|
194
|
+
font-feature-settings: inherit;
|
|
195
|
+
/* 1 */
|
|
196
|
+
font-variation-settings: inherit;
|
|
197
|
+
/* 1 */
|
|
198
|
+
font-size: 100%;
|
|
199
|
+
/* 1 */
|
|
200
|
+
font-weight: inherit;
|
|
201
|
+
/* 1 */
|
|
202
|
+
line-height: inherit;
|
|
203
|
+
/* 1 */
|
|
204
|
+
color: inherit;
|
|
205
|
+
/* 1 */
|
|
206
|
+
margin: 0;
|
|
207
|
+
/* 2 */
|
|
208
|
+
padding: 0;
|
|
209
|
+
/* 3 */
|
|
178
210
|
}
|
|
179
211
|
|
|
180
212
|
/*
|
|
@@ -195,9 +227,12 @@ button,
|
|
|
195
227
|
[type='button'],
|
|
196
228
|
[type='reset'],
|
|
197
229
|
[type='submit'] {
|
|
198
|
-
-webkit-appearance: button;
|
|
199
|
-
|
|
200
|
-
background-
|
|
230
|
+
-webkit-appearance: button;
|
|
231
|
+
/* 1 */
|
|
232
|
+
background-color: transparent;
|
|
233
|
+
/* 2 */
|
|
234
|
+
background-image: none;
|
|
235
|
+
/* 2 */
|
|
201
236
|
}
|
|
202
237
|
|
|
203
238
|
/*
|
|
@@ -239,8 +274,10 @@ Correct the cursor style of increment and decrement buttons in Safari.
|
|
|
239
274
|
*/
|
|
240
275
|
|
|
241
276
|
[type='search'] {
|
|
242
|
-
-webkit-appearance: textfield;
|
|
243
|
-
|
|
277
|
+
-webkit-appearance: textfield;
|
|
278
|
+
/* 1 */
|
|
279
|
+
outline-offset: -2px;
|
|
280
|
+
/* 2 */
|
|
244
281
|
}
|
|
245
282
|
|
|
246
283
|
/*
|
|
@@ -257,8 +294,10 @@ Remove the inner padding in Chrome and Safari on macOS.
|
|
|
257
294
|
*/
|
|
258
295
|
|
|
259
296
|
::-webkit-file-upload-button {
|
|
260
|
-
-webkit-appearance: button;
|
|
261
|
-
|
|
297
|
+
-webkit-appearance: button;
|
|
298
|
+
/* 1 */
|
|
299
|
+
font: inherit;
|
|
300
|
+
/* 2 */
|
|
262
301
|
}
|
|
263
302
|
|
|
264
303
|
/*
|
|
@@ -309,6 +348,7 @@ menu {
|
|
|
309
348
|
/*
|
|
310
349
|
Reset default styling for dialogs.
|
|
311
350
|
*/
|
|
351
|
+
|
|
312
352
|
dialog {
|
|
313
353
|
padding: 0;
|
|
314
354
|
}
|
|
@@ -327,14 +367,18 @@ textarea {
|
|
|
327
367
|
*/
|
|
328
368
|
|
|
329
369
|
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
330
|
-
opacity: 1;
|
|
331
|
-
|
|
370
|
+
opacity: 1;
|
|
371
|
+
/* 1 */
|
|
372
|
+
color: #9ca3af;
|
|
373
|
+
/* 2 */
|
|
332
374
|
}
|
|
333
375
|
|
|
334
376
|
input::placeholder,
|
|
335
377
|
textarea::placeholder {
|
|
336
|
-
opacity: 1;
|
|
337
|
-
|
|
378
|
+
opacity: 1;
|
|
379
|
+
/* 1 */
|
|
380
|
+
color: #9ca3af;
|
|
381
|
+
/* 2 */
|
|
338
382
|
}
|
|
339
383
|
|
|
340
384
|
/*
|
|
@@ -349,6 +393,7 @@ button,
|
|
|
349
393
|
/*
|
|
350
394
|
Make sure disabled buttons don't get the pointer cursor.
|
|
351
395
|
*/
|
|
396
|
+
|
|
352
397
|
:disabled {
|
|
353
398
|
cursor: default;
|
|
354
399
|
}
|
|
@@ -367,8 +412,10 @@ audio,
|
|
|
367
412
|
iframe,
|
|
368
413
|
embed,
|
|
369
414
|
object {
|
|
370
|
-
display: block;
|
|
371
|
-
|
|
415
|
+
display: block;
|
|
416
|
+
/* 1 */
|
|
417
|
+
vertical-align: middle;
|
|
418
|
+
/* 2 */
|
|
372
419
|
}
|
|
373
420
|
|
|
374
421
|
/*
|
|
@@ -382,157 +429,170 @@ video {
|
|
|
382
429
|
}
|
|
383
430
|
|
|
384
431
|
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
432
|
+
|
|
385
433
|
[hidden] {
|
|
386
434
|
display: none;
|
|
387
435
|
}
|
|
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
|
-
}
|
|
395
436
|
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
437
|
+
.no-scrollbar *:not(.textarea-component)::-webkit-scrollbar {
|
|
438
|
+
display: none;
|
|
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 {*/
|
|
399
547
|
|
|
400
|
-
|
|
401
|
-
--muted-foreground: 215.4 16.3% 46.9%;
|
|
548
|
+
/* --background: 222.2 84% 4.9%;*/
|
|
402
549
|
|
|
403
|
-
|
|
404
|
-
--popover-foreground: 222.2 47.4% 11.2%;
|
|
550
|
+
/* --foreground: 210 40% 98%;*/
|
|
405
551
|
|
|
406
|
-
|
|
407
|
-
--card-foreground: 222.2 47.4% 11.2%;
|
|
552
|
+
/* --card: 222.2 84% 4.9%;*/
|
|
408
553
|
|
|
409
|
-
|
|
410
|
-
--input: 214.3 31.8% 91.4%;
|
|
554
|
+
/* --card-foreground: 210 40% 98%;*/
|
|
411
555
|
|
|
412
|
-
|
|
413
|
-
--primary-foreground: 210 40% 98%;
|
|
556
|
+
/* --popover: 222.2 84% 4.9%;*/
|
|
414
557
|
|
|
415
|
-
|
|
416
|
-
--secondary-foreground: 222.2 47.4% 11.2%;
|
|
558
|
+
/* --popover-foreground: 210 40% 98%;*/
|
|
417
559
|
|
|
418
|
-
|
|
419
|
-
--accent-foreground: 222.2 47.4% 11.2%;
|
|
560
|
+
/* --primary: 210 40% 98%;*/
|
|
420
561
|
|
|
421
|
-
|
|
422
|
-
--destructive-foreground: 210 40% 98%;
|
|
562
|
+
/* --primary-foreground: 222.2 47.4% 11.2%;*/
|
|
423
563
|
|
|
424
|
-
|
|
564
|
+
/* --secondary: 217.2 32.6% 17.5%;*/
|
|
425
565
|
|
|
426
|
-
|
|
566
|
+
/* --secondary-foreground: 210 40% 98%;*/
|
|
427
567
|
|
|
428
|
-
|
|
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;
|
|
568
|
+
/* --muted: 217.2 32.6% 17.5%;*/
|
|
434
569
|
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
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
|
-
}
|
|
570
|
+
/* --muted-foreground: 215 20.2% 65.1%;*/
|
|
571
|
+
|
|
572
|
+
/* --accent: 217.2 32.6% 17.5%;*/
|
|
573
|
+
|
|
574
|
+
/* --accent-foreground: 210 40% 98%;*/
|
|
575
|
+
|
|
576
|
+
/* --destructive: 0 62.8% 30.6%;*/
|
|
507
577
|
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
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
|
-
* {
|
|
578
|
+
/* --destructive-foreground: 210 40% 98%;*/
|
|
579
|
+
|
|
580
|
+
/* --border: 217.2 32.6% 17.5%;*/
|
|
581
|
+
|
|
582
|
+
/* --input: 217.2 32.6% 17.5%;*/
|
|
583
|
+
|
|
584
|
+
/* --ring: 212.7 26.8% 83.9;*/
|
|
585
|
+
|
|
586
|
+
/*}*/
|
|
587
|
+
|
|
588
|
+
* {
|
|
530
589
|
border-color: hsl(var(--border));
|
|
531
590
|
}
|
|
532
|
-
|
|
591
|
+
|
|
592
|
+
body {
|
|
533
593
|
background-color: hsl(var(--background));
|
|
534
594
|
color: hsl(var(--foreground));
|
|
535
|
-
|
|
595
|
+
font-feature-settings: "rlig" 1, "calt" 1;
|
|
536
596
|
}
|
|
537
597
|
|
|
538
598
|
*, ::before, ::after {
|
|
@@ -634,6 +694,7 @@ video {
|
|
|
634
694
|
--tw-backdrop-saturate: ;
|
|
635
695
|
--tw-backdrop-sepia: ;
|
|
636
696
|
}
|
|
697
|
+
|
|
637
698
|
.container {
|
|
638
699
|
width: 100%;
|
|
639
700
|
margin-right: auto;
|
|
@@ -641,12 +702,13 @@ video {
|
|
|
641
702
|
padding-right: 2rem;
|
|
642
703
|
padding-left: 2rem;
|
|
643
704
|
}
|
|
644
|
-
@media (min-width: 1400px) {
|
|
645
705
|
|
|
706
|
+
@media (min-width: 1400px) {
|
|
646
707
|
.container {
|
|
647
708
|
max-width: 1400px;
|
|
648
709
|
}
|
|
649
710
|
}
|
|
711
|
+
|
|
650
712
|
.sr-only {
|
|
651
713
|
position: absolute;
|
|
652
714
|
width: 1px;
|
|
@@ -658,1439 +720,1909 @@ video {
|
|
|
658
720
|
white-space: nowrap;
|
|
659
721
|
border-width: 0;
|
|
660
722
|
}
|
|
723
|
+
|
|
661
724
|
.pointer-events-none {
|
|
662
725
|
pointer-events: none;
|
|
663
726
|
}
|
|
727
|
+
|
|
664
728
|
.pointer-events-auto {
|
|
665
729
|
pointer-events: auto;
|
|
666
730
|
}
|
|
731
|
+
|
|
667
732
|
.fixed {
|
|
668
733
|
position: fixed;
|
|
669
734
|
}
|
|
735
|
+
|
|
670
736
|
.absolute {
|
|
671
737
|
position: absolute;
|
|
672
738
|
}
|
|
739
|
+
|
|
673
740
|
.relative {
|
|
674
741
|
position: relative;
|
|
675
742
|
}
|
|
743
|
+
|
|
676
744
|
.inset-0 {
|
|
677
745
|
inset: 0px;
|
|
678
746
|
}
|
|
747
|
+
|
|
679
748
|
.inset-x-0 {
|
|
680
749
|
left: 0px;
|
|
681
750
|
right: 0px;
|
|
682
751
|
}
|
|
752
|
+
|
|
683
753
|
.-bottom-12 {
|
|
684
754
|
bottom: -3rem;
|
|
685
755
|
}
|
|
756
|
+
|
|
686
757
|
.-left-12 {
|
|
687
758
|
left: -3rem;
|
|
688
759
|
}
|
|
760
|
+
|
|
689
761
|
.-right-12 {
|
|
690
762
|
right: -3rem;
|
|
691
763
|
}
|
|
764
|
+
|
|
692
765
|
.-top-12 {
|
|
693
766
|
top: -3rem;
|
|
694
767
|
}
|
|
768
|
+
|
|
695
769
|
.bottom-0 {
|
|
696
770
|
bottom: 0px;
|
|
697
771
|
}
|
|
772
|
+
|
|
698
773
|
.bottom-10 {
|
|
699
774
|
bottom: 2.5rem;
|
|
700
775
|
}
|
|
776
|
+
|
|
701
777
|
.bottom-2 {
|
|
702
778
|
bottom: 0.5rem;
|
|
703
779
|
}
|
|
780
|
+
|
|
704
781
|
.bottom-\[18px\] {
|
|
705
782
|
bottom: 18px;
|
|
706
783
|
}
|
|
784
|
+
|
|
707
785
|
.bottom-\[58px\] {
|
|
708
786
|
bottom: 58px;
|
|
709
787
|
}
|
|
788
|
+
|
|
710
789
|
.end-4 {
|
|
711
790
|
inset-inline-end: 1rem;
|
|
712
791
|
}
|
|
792
|
+
|
|
713
793
|
.left-0 {
|
|
714
794
|
left: 0px;
|
|
715
795
|
}
|
|
796
|
+
|
|
716
797
|
.left-1\/2 {
|
|
717
798
|
left: 50%;
|
|
718
799
|
}
|
|
800
|
+
|
|
719
801
|
.left-2 {
|
|
720
802
|
left: 0.5rem;
|
|
721
803
|
}
|
|
804
|
+
|
|
722
805
|
.left-\[50\%\] {
|
|
723
806
|
left: 50%;
|
|
724
807
|
}
|
|
808
|
+
|
|
725
809
|
.right-0 {
|
|
726
810
|
right: 0px;
|
|
727
811
|
}
|
|
812
|
+
|
|
728
813
|
.right-2 {
|
|
729
814
|
right: 0.5rem;
|
|
730
815
|
}
|
|
816
|
+
|
|
731
817
|
.start-10 {
|
|
732
818
|
inset-inline-start: 2.5rem;
|
|
733
819
|
}
|
|
820
|
+
|
|
734
821
|
.start-4 {
|
|
735
822
|
inset-inline-start: 1rem;
|
|
736
823
|
}
|
|
824
|
+
|
|
737
825
|
.top-0 {
|
|
738
826
|
top: 0px;
|
|
739
827
|
}
|
|
828
|
+
|
|
740
829
|
.top-1\/2 {
|
|
741
830
|
top: 50%;
|
|
742
831
|
}
|
|
832
|
+
|
|
743
833
|
.top-10 {
|
|
744
834
|
top: 2.5rem;
|
|
745
835
|
}
|
|
836
|
+
|
|
746
837
|
.top-2 {
|
|
747
838
|
top: 0.5rem;
|
|
748
839
|
}
|
|
840
|
+
|
|
749
841
|
.top-\[18px\] {
|
|
750
842
|
top: 18px;
|
|
751
843
|
}
|
|
844
|
+
|
|
752
845
|
.top-\[50\%\] {
|
|
753
846
|
top: 50%;
|
|
754
847
|
}
|
|
848
|
+
|
|
755
849
|
.z-10 {
|
|
756
850
|
z-index: 10;
|
|
757
851
|
}
|
|
852
|
+
|
|
758
853
|
.z-50 {
|
|
759
854
|
z-index: 50;
|
|
760
855
|
}
|
|
856
|
+
|
|
761
857
|
.z-\[100\] {
|
|
762
858
|
z-index: 100;
|
|
763
859
|
}
|
|
860
|
+
|
|
764
861
|
.col-span-2 {
|
|
765
862
|
grid-column: span 2 / span 2;
|
|
766
863
|
}
|
|
864
|
+
|
|
767
865
|
.col-start-1 {
|
|
768
866
|
grid-column-start: 1;
|
|
769
867
|
}
|
|
868
|
+
|
|
770
869
|
.row-start-1 {
|
|
771
870
|
grid-row-start: 1;
|
|
772
871
|
}
|
|
872
|
+
|
|
773
873
|
.mx-1 {
|
|
774
874
|
margin-left: 0.25rem;
|
|
775
875
|
margin-right: 0.25rem;
|
|
776
876
|
}
|
|
877
|
+
|
|
777
878
|
.mx-4 {
|
|
778
879
|
margin-left: 1rem;
|
|
779
880
|
margin-right: 1rem;
|
|
780
881
|
}
|
|
882
|
+
|
|
781
883
|
.mx-auto {
|
|
782
884
|
margin-left: auto;
|
|
783
885
|
margin-right: auto;
|
|
784
886
|
}
|
|
887
|
+
|
|
785
888
|
.my-0 {
|
|
786
889
|
margin-top: 0px;
|
|
787
890
|
margin-bottom: 0px;
|
|
788
891
|
}
|
|
892
|
+
|
|
789
893
|
.my-3 {
|
|
790
894
|
margin-top: 0.75rem;
|
|
791
895
|
margin-bottom: 0.75rem;
|
|
792
896
|
}
|
|
897
|
+
|
|
793
898
|
.my-auto {
|
|
794
899
|
margin-top: auto;
|
|
795
900
|
margin-bottom: auto;
|
|
796
901
|
}
|
|
902
|
+
|
|
797
903
|
.-ml-4 {
|
|
798
904
|
margin-left: -1rem;
|
|
799
905
|
}
|
|
906
|
+
|
|
800
907
|
.-mt-4 {
|
|
801
908
|
margin-top: -1rem;
|
|
802
909
|
}
|
|
910
|
+
|
|
803
911
|
.mb-2 {
|
|
804
912
|
margin-bottom: 0.5rem;
|
|
805
913
|
}
|
|
914
|
+
|
|
915
|
+
.mb-4 {
|
|
916
|
+
margin-bottom: 1rem;
|
|
917
|
+
}
|
|
918
|
+
|
|
806
919
|
.mb-6 {
|
|
807
920
|
margin-bottom: 1.5rem;
|
|
808
921
|
}
|
|
922
|
+
|
|
809
923
|
.ml-2 {
|
|
810
924
|
margin-left: 0.5rem;
|
|
811
925
|
}
|
|
926
|
+
|
|
812
927
|
.mr-2 {
|
|
813
928
|
margin-right: 0.5rem;
|
|
814
929
|
}
|
|
930
|
+
|
|
815
931
|
.mt-1 {
|
|
816
932
|
margin-top: 0.25rem;
|
|
817
933
|
}
|
|
934
|
+
|
|
818
935
|
.mt-2 {
|
|
819
936
|
margin-top: 0.5rem;
|
|
820
937
|
}
|
|
938
|
+
|
|
821
939
|
.mt-3 {
|
|
822
940
|
margin-top: 0.75rem;
|
|
823
941
|
}
|
|
942
|
+
|
|
824
943
|
.mt-auto {
|
|
825
944
|
margin-top: auto;
|
|
826
945
|
}
|
|
946
|
+
|
|
827
947
|
.line-clamp-2 {
|
|
828
948
|
overflow: hidden;
|
|
829
949
|
display: -webkit-box;
|
|
830
950
|
-webkit-box-orient: vertical;
|
|
831
951
|
-webkit-line-clamp: 2;
|
|
832
952
|
}
|
|
953
|
+
|
|
833
954
|
.block {
|
|
834
955
|
display: block;
|
|
835
956
|
}
|
|
957
|
+
|
|
836
958
|
.inline {
|
|
837
959
|
display: inline;
|
|
838
960
|
}
|
|
961
|
+
|
|
839
962
|
.flex {
|
|
840
963
|
display: flex;
|
|
841
964
|
}
|
|
965
|
+
|
|
842
966
|
.inline-flex {
|
|
843
967
|
display: inline-flex;
|
|
844
968
|
}
|
|
969
|
+
|
|
845
970
|
.grid {
|
|
846
971
|
display: grid;
|
|
847
972
|
}
|
|
973
|
+
|
|
848
974
|
.aspect-productImages {
|
|
849
975
|
aspect-ratio: var(--productImage-aspectRatio);
|
|
850
976
|
}
|
|
977
|
+
|
|
851
978
|
.aspect-square {
|
|
852
979
|
aspect-ratio: 1 / 1;
|
|
853
980
|
}
|
|
981
|
+
|
|
854
982
|
.h-0 {
|
|
855
983
|
height: 0px;
|
|
856
984
|
}
|
|
985
|
+
|
|
857
986
|
.h-0\.5 {
|
|
858
987
|
height: 0.125rem;
|
|
859
988
|
}
|
|
989
|
+
|
|
860
990
|
.h-1 {
|
|
861
991
|
height: 0.25rem;
|
|
862
992
|
}
|
|
993
|
+
|
|
863
994
|
.h-1\.5 {
|
|
864
995
|
height: 0.375rem;
|
|
865
996
|
}
|
|
997
|
+
|
|
866
998
|
.h-10 {
|
|
867
999
|
height: 2.5rem;
|
|
868
1000
|
}
|
|
1001
|
+
|
|
869
1002
|
.h-11 {
|
|
870
1003
|
height: 2.75rem;
|
|
871
1004
|
}
|
|
1005
|
+
|
|
872
1006
|
.h-14 {
|
|
873
1007
|
height: 3.5rem;
|
|
874
1008
|
}
|
|
1009
|
+
|
|
875
1010
|
.h-2 {
|
|
876
1011
|
height: 0.5rem;
|
|
877
1012
|
}
|
|
1013
|
+
|
|
878
1014
|
.h-2\.5 {
|
|
879
1015
|
height: 0.625rem;
|
|
880
1016
|
}
|
|
1017
|
+
|
|
881
1018
|
.h-4 {
|
|
882
1019
|
height: 1rem;
|
|
883
1020
|
}
|
|
1021
|
+
|
|
884
1022
|
.h-5 {
|
|
885
1023
|
height: 1.25rem;
|
|
886
1024
|
}
|
|
1025
|
+
|
|
887
1026
|
.h-6 {
|
|
888
1027
|
height: 1.5rem;
|
|
889
1028
|
}
|
|
1029
|
+
|
|
890
1030
|
.h-64 {
|
|
891
1031
|
height: 16rem;
|
|
892
1032
|
}
|
|
1033
|
+
|
|
893
1034
|
.h-7 {
|
|
894
1035
|
height: 1.75rem;
|
|
895
1036
|
}
|
|
1037
|
+
|
|
896
1038
|
.h-8 {
|
|
897
1039
|
height: 2rem;
|
|
898
1040
|
}
|
|
1041
|
+
|
|
899
1042
|
.h-9 {
|
|
900
1043
|
height: 2.25rem;
|
|
901
1044
|
}
|
|
1045
|
+
|
|
902
1046
|
.h-\[1px\] {
|
|
903
1047
|
height: 1px;
|
|
904
1048
|
}
|
|
1049
|
+
|
|
905
1050
|
.h-\[2px\] {
|
|
906
1051
|
height: 2px;
|
|
907
1052
|
}
|
|
1053
|
+
|
|
908
1054
|
.h-\[42px\] {
|
|
909
1055
|
height: 42px;
|
|
910
1056
|
}
|
|
1057
|
+
|
|
911
1058
|
.h-\[4px\] {
|
|
912
1059
|
height: 4px;
|
|
913
1060
|
}
|
|
1061
|
+
|
|
914
1062
|
.h-auto {
|
|
915
1063
|
height: auto;
|
|
916
1064
|
}
|
|
1065
|
+
|
|
917
1066
|
.h-full {
|
|
918
1067
|
height: 100%;
|
|
919
1068
|
}
|
|
1069
|
+
|
|
920
1070
|
.max-h-\[240px\] {
|
|
921
1071
|
max-height: 240px;
|
|
922
1072
|
}
|
|
1073
|
+
|
|
923
1074
|
.max-h-screen {
|
|
924
1075
|
max-height: 100vh;
|
|
925
1076
|
}
|
|
1077
|
+
|
|
926
1078
|
.min-h-\[24px\] {
|
|
927
1079
|
min-height: 24px;
|
|
928
1080
|
}
|
|
1081
|
+
|
|
929
1082
|
.w-1 {
|
|
930
1083
|
width: 0.25rem;
|
|
931
1084
|
}
|
|
1085
|
+
|
|
932
1086
|
.w-1\.5 {
|
|
933
1087
|
width: 0.375rem;
|
|
934
1088
|
}
|
|
1089
|
+
|
|
935
1090
|
.w-1\/2 {
|
|
936
1091
|
width: 50%;
|
|
937
1092
|
}
|
|
1093
|
+
|
|
938
1094
|
.w-10 {
|
|
939
1095
|
width: 2.5rem;
|
|
940
1096
|
}
|
|
1097
|
+
|
|
941
1098
|
.w-12 {
|
|
942
1099
|
width: 3rem;
|
|
943
1100
|
}
|
|
1101
|
+
|
|
944
1102
|
.w-14 {
|
|
945
1103
|
width: 3.5rem;
|
|
946
1104
|
}
|
|
1105
|
+
|
|
947
1106
|
.w-16 {
|
|
948
1107
|
width: 4rem;
|
|
949
1108
|
}
|
|
1109
|
+
|
|
950
1110
|
.w-2 {
|
|
951
1111
|
width: 0.5rem;
|
|
952
1112
|
}
|
|
1113
|
+
|
|
953
1114
|
.w-2\.5 {
|
|
954
1115
|
width: 0.625rem;
|
|
955
1116
|
}
|
|
1117
|
+
|
|
956
1118
|
.w-4 {
|
|
957
1119
|
width: 1rem;
|
|
958
1120
|
}
|
|
1121
|
+
|
|
959
1122
|
.w-5 {
|
|
960
1123
|
width: 1.25rem;
|
|
961
1124
|
}
|
|
1125
|
+
|
|
962
1126
|
.w-6 {
|
|
963
1127
|
width: 1.5rem;
|
|
964
1128
|
}
|
|
1129
|
+
|
|
965
1130
|
.w-7 {
|
|
966
1131
|
width: 1.75rem;
|
|
967
1132
|
}
|
|
1133
|
+
|
|
968
1134
|
.w-8 {
|
|
969
1135
|
width: 2rem;
|
|
970
1136
|
}
|
|
1137
|
+
|
|
971
1138
|
.w-\[1px\] {
|
|
972
1139
|
width: 1px;
|
|
973
1140
|
}
|
|
1141
|
+
|
|
974
1142
|
.w-\[40px\] {
|
|
975
1143
|
width: 40px;
|
|
976
1144
|
}
|
|
1145
|
+
|
|
977
1146
|
.w-auto {
|
|
978
1147
|
width: auto;
|
|
979
1148
|
}
|
|
1149
|
+
|
|
980
1150
|
.w-full {
|
|
981
1151
|
width: 100%;
|
|
982
1152
|
}
|
|
1153
|
+
|
|
983
1154
|
.w-max {
|
|
984
1155
|
width: -moz-max-content;
|
|
985
1156
|
width: max-content;
|
|
986
1157
|
}
|
|
1158
|
+
|
|
987
1159
|
.min-w-0 {
|
|
988
1160
|
min-width: 0px;
|
|
989
1161
|
}
|
|
1162
|
+
|
|
990
1163
|
.min-w-\[8rem\] {
|
|
991
1164
|
min-width: 8rem;
|
|
992
1165
|
}
|
|
1166
|
+
|
|
993
1167
|
.max-w-full {
|
|
994
1168
|
max-width: 100%;
|
|
995
1169
|
}
|
|
1170
|
+
|
|
996
1171
|
.max-w-lg {
|
|
997
1172
|
max-width: 32rem;
|
|
998
1173
|
}
|
|
1174
|
+
|
|
999
1175
|
.max-w-xs {
|
|
1000
1176
|
max-width: 20rem;
|
|
1001
1177
|
}
|
|
1178
|
+
|
|
1002
1179
|
.flex-1 {
|
|
1003
1180
|
flex: 1 1 0%;
|
|
1004
1181
|
}
|
|
1182
|
+
|
|
1005
1183
|
.flex-shrink-0 {
|
|
1006
1184
|
flex-shrink: 0;
|
|
1007
1185
|
}
|
|
1186
|
+
|
|
1008
1187
|
.shrink-0 {
|
|
1009
1188
|
flex-shrink: 0;
|
|
1010
1189
|
}
|
|
1190
|
+
|
|
1011
1191
|
.flex-grow {
|
|
1012
1192
|
flex-grow: 1;
|
|
1013
1193
|
}
|
|
1194
|
+
|
|
1014
1195
|
.grow {
|
|
1015
1196
|
flex-grow: 1;
|
|
1016
1197
|
}
|
|
1198
|
+
|
|
1017
1199
|
.grow-0 {
|
|
1018
1200
|
flex-grow: 0;
|
|
1019
1201
|
}
|
|
1202
|
+
|
|
1020
1203
|
.basis-full {
|
|
1021
1204
|
flex-basis: 100%;
|
|
1022
1205
|
}
|
|
1206
|
+
|
|
1023
1207
|
.origin-\[0\] {
|
|
1024
1208
|
transform-origin: 0;
|
|
1025
1209
|
}
|
|
1210
|
+
|
|
1026
1211
|
.-translate-x-1\/2 {
|
|
1027
1212
|
--tw-translate-x: -50%;
|
|
1028
1213
|
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));
|
|
1029
1214
|
}
|
|
1215
|
+
|
|
1030
1216
|
.-translate-y-1\/2 {
|
|
1031
1217
|
--tw-translate-y: -50%;
|
|
1032
1218
|
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));
|
|
1033
1219
|
}
|
|
1220
|
+
|
|
1034
1221
|
.translate-x-\[-50\%\] {
|
|
1035
1222
|
--tw-translate-x: -50%;
|
|
1036
1223
|
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));
|
|
1037
1224
|
}
|
|
1225
|
+
|
|
1038
1226
|
.translate-y-\[-50\%\] {
|
|
1039
1227
|
--tw-translate-y: -50%;
|
|
1040
1228
|
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));
|
|
1041
1229
|
}
|
|
1230
|
+
|
|
1042
1231
|
.rotate-90 {
|
|
1043
1232
|
--tw-rotate: 90deg;
|
|
1044
1233
|
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));
|
|
1045
1234
|
}
|
|
1046
|
-
@keyframes pulse {
|
|
1047
1235
|
|
|
1236
|
+
@keyframes pulse {
|
|
1048
1237
|
50% {
|
|
1049
1238
|
opacity: .5;
|
|
1050
1239
|
}
|
|
1051
1240
|
}
|
|
1241
|
+
|
|
1052
1242
|
.animate-pulse {
|
|
1053
1243
|
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1054
1244
|
}
|
|
1055
|
-
@keyframes spin {
|
|
1056
1245
|
|
|
1246
|
+
@keyframes spin {
|
|
1057
1247
|
to {
|
|
1058
1248
|
transform: rotate(360deg);
|
|
1059
1249
|
}
|
|
1060
1250
|
}
|
|
1251
|
+
|
|
1061
1252
|
.animate-spin {
|
|
1062
1253
|
animation: spin 1s linear infinite;
|
|
1063
1254
|
}
|
|
1255
|
+
|
|
1064
1256
|
.cursor-default {
|
|
1065
1257
|
cursor: default;
|
|
1066
1258
|
}
|
|
1259
|
+
|
|
1067
1260
|
.cursor-pointer {
|
|
1068
1261
|
cursor: pointer;
|
|
1069
1262
|
}
|
|
1263
|
+
|
|
1070
1264
|
.touch-none {
|
|
1071
1265
|
touch-action: none;
|
|
1072
1266
|
}
|
|
1267
|
+
|
|
1073
1268
|
.select-none {
|
|
1074
1269
|
-webkit-user-select: none;
|
|
1075
1270
|
-moz-user-select: none;
|
|
1076
1271
|
user-select: none;
|
|
1077
1272
|
}
|
|
1273
|
+
|
|
1078
1274
|
.resize-none {
|
|
1079
1275
|
resize: none;
|
|
1080
1276
|
}
|
|
1277
|
+
|
|
1081
1278
|
.resize {
|
|
1082
1279
|
resize: both;
|
|
1083
1280
|
}
|
|
1281
|
+
|
|
1282
|
+
.columns-1 {
|
|
1283
|
+
-moz-columns: 1;
|
|
1284
|
+
columns: 1;
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
.columns-2 {
|
|
1288
|
+
-moz-columns: 2;
|
|
1289
|
+
columns: 2;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
.columns-3 {
|
|
1293
|
+
-moz-columns: 3;
|
|
1294
|
+
columns: 3;
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1084
1297
|
.grid-cols-1 {
|
|
1085
1298
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1086
1299
|
}
|
|
1300
|
+
|
|
1087
1301
|
.grid-cols-2 {
|
|
1088
1302
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1089
1303
|
}
|
|
1304
|
+
|
|
1090
1305
|
.grid-cols-3 {
|
|
1091
1306
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1092
1307
|
}
|
|
1308
|
+
|
|
1093
1309
|
.grid-cols-4 {
|
|
1094
1310
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1095
1311
|
}
|
|
1312
|
+
|
|
1096
1313
|
.grid-cols-\[auto\2c auto\2c 1fr\] {
|
|
1097
1314
|
grid-template-columns: auto auto 1fr;
|
|
1098
1315
|
}
|
|
1316
|
+
|
|
1099
1317
|
.flex-row {
|
|
1100
1318
|
flex-direction: row;
|
|
1101
1319
|
}
|
|
1320
|
+
|
|
1102
1321
|
.flex-col {
|
|
1103
1322
|
flex-direction: column;
|
|
1104
1323
|
}
|
|
1324
|
+
|
|
1105
1325
|
.flex-col-reverse {
|
|
1106
1326
|
flex-direction: column-reverse;
|
|
1107
1327
|
}
|
|
1328
|
+
|
|
1108
1329
|
.flex-wrap {
|
|
1109
1330
|
flex-wrap: wrap;
|
|
1110
1331
|
}
|
|
1332
|
+
|
|
1111
1333
|
.items-start {
|
|
1112
1334
|
align-items: flex-start;
|
|
1113
1335
|
}
|
|
1336
|
+
|
|
1114
1337
|
.items-center {
|
|
1115
1338
|
align-items: center;
|
|
1116
1339
|
}
|
|
1340
|
+
|
|
1117
1341
|
.justify-start {
|
|
1118
1342
|
justify-content: flex-start;
|
|
1119
1343
|
}
|
|
1344
|
+
|
|
1120
1345
|
.justify-end {
|
|
1121
1346
|
justify-content: flex-end;
|
|
1122
1347
|
}
|
|
1348
|
+
|
|
1123
1349
|
.justify-center {
|
|
1124
1350
|
justify-content: center;
|
|
1125
1351
|
}
|
|
1352
|
+
|
|
1126
1353
|
.justify-between {
|
|
1127
1354
|
justify-content: space-between;
|
|
1128
1355
|
}
|
|
1356
|
+
|
|
1129
1357
|
.gap-0 {
|
|
1130
1358
|
gap: 0px;
|
|
1131
1359
|
}
|
|
1360
|
+
|
|
1132
1361
|
.gap-1 {
|
|
1133
1362
|
gap: 0.25rem;
|
|
1134
1363
|
}
|
|
1364
|
+
|
|
1135
1365
|
.gap-2 {
|
|
1136
1366
|
gap: 0.5rem;
|
|
1137
1367
|
}
|
|
1368
|
+
|
|
1138
1369
|
.gap-4 {
|
|
1139
1370
|
gap: 1rem;
|
|
1140
1371
|
}
|
|
1372
|
+
|
|
1141
1373
|
.gap-x-\[7px\] {
|
|
1142
1374
|
-moz-column-gap: 7px;
|
|
1143
1375
|
column-gap: 7px;
|
|
1144
1376
|
}
|
|
1377
|
+
|
|
1145
1378
|
.gap-y-4 {
|
|
1146
1379
|
row-gap: 1rem;
|
|
1147
1380
|
}
|
|
1381
|
+
|
|
1148
1382
|
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1149
1383
|
--tw-space-y-reverse: 0;
|
|
1150
1384
|
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1151
1385
|
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
1152
1386
|
}
|
|
1387
|
+
|
|
1153
1388
|
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1154
1389
|
--tw-space-y-reverse: 0;
|
|
1155
1390
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1156
1391
|
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1157
1392
|
}
|
|
1393
|
+
|
|
1158
1394
|
.self-start {
|
|
1159
1395
|
align-self: flex-start;
|
|
1160
1396
|
}
|
|
1397
|
+
|
|
1161
1398
|
.self-center {
|
|
1162
1399
|
align-self: center;
|
|
1163
1400
|
}
|
|
1401
|
+
|
|
1164
1402
|
.overflow-hidden {
|
|
1165
1403
|
overflow: hidden;
|
|
1166
1404
|
}
|
|
1405
|
+
|
|
1167
1406
|
.overflow-scroll {
|
|
1168
1407
|
overflow: scroll;
|
|
1169
1408
|
}
|
|
1409
|
+
|
|
1170
1410
|
.overflow-x-auto {
|
|
1171
1411
|
overflow-x: auto;
|
|
1172
1412
|
}
|
|
1413
|
+
|
|
1173
1414
|
.overflow-y-auto {
|
|
1174
1415
|
overflow-y: auto;
|
|
1175
1416
|
}
|
|
1417
|
+
|
|
1176
1418
|
.overflow-y-hidden {
|
|
1177
1419
|
overflow-y: hidden;
|
|
1178
1420
|
}
|
|
1421
|
+
|
|
1179
1422
|
.truncate {
|
|
1180
1423
|
overflow: hidden;
|
|
1181
1424
|
text-overflow: ellipsis;
|
|
1182
1425
|
white-space: nowrap;
|
|
1183
1426
|
}
|
|
1427
|
+
|
|
1184
1428
|
.text-ellipsis {
|
|
1185
1429
|
text-overflow: ellipsis;
|
|
1186
1430
|
}
|
|
1431
|
+
|
|
1187
1432
|
.whitespace-nowrap {
|
|
1188
1433
|
white-space: nowrap;
|
|
1189
1434
|
}
|
|
1435
|
+
|
|
1190
1436
|
.rounded {
|
|
1191
1437
|
border-radius: 0.25rem;
|
|
1192
1438
|
}
|
|
1439
|
+
|
|
1193
1440
|
.rounded-\[4px\] {
|
|
1194
1441
|
border-radius: 4px;
|
|
1195
1442
|
}
|
|
1443
|
+
|
|
1196
1444
|
.rounded-\[inherit\] {
|
|
1197
1445
|
border-radius: inherit;
|
|
1198
1446
|
}
|
|
1447
|
+
|
|
1199
1448
|
.rounded-full {
|
|
1200
1449
|
border-radius: 9999px;
|
|
1201
1450
|
}
|
|
1451
|
+
|
|
1202
1452
|
.rounded-md {
|
|
1203
1453
|
border-radius: calc(var(--radius) - 2px);
|
|
1204
1454
|
}
|
|
1455
|
+
|
|
1205
1456
|
.rounded-none {
|
|
1206
1457
|
border-radius: 0px;
|
|
1207
1458
|
}
|
|
1459
|
+
|
|
1208
1460
|
.rounded-sm {
|
|
1209
1461
|
border-radius: calc(var(--radius) - 4px);
|
|
1210
1462
|
}
|
|
1463
|
+
|
|
1211
1464
|
.rounded-b-lg {
|
|
1212
1465
|
border-bottom-right-radius: var(--radius);
|
|
1213
1466
|
border-bottom-left-radius: var(--radius);
|
|
1214
1467
|
}
|
|
1468
|
+
|
|
1215
1469
|
.rounded-t-2xl {
|
|
1216
1470
|
border-top-left-radius: 1rem;
|
|
1217
1471
|
border-top-right-radius: 1rem;
|
|
1218
1472
|
}
|
|
1473
|
+
|
|
1219
1474
|
.rounded-bl {
|
|
1220
1475
|
border-bottom-left-radius: 0.25rem;
|
|
1221
1476
|
}
|
|
1477
|
+
|
|
1222
1478
|
.rounded-br {
|
|
1223
1479
|
border-bottom-right-radius: 0.25rem;
|
|
1224
1480
|
}
|
|
1481
|
+
|
|
1225
1482
|
.rounded-tl {
|
|
1226
1483
|
border-top-left-radius: 0.25rem;
|
|
1227
1484
|
}
|
|
1485
|
+
|
|
1228
1486
|
.rounded-tr {
|
|
1229
1487
|
border-top-right-radius: 0.25rem;
|
|
1230
1488
|
}
|
|
1489
|
+
|
|
1231
1490
|
.border {
|
|
1232
1491
|
border-width: 1px;
|
|
1233
1492
|
}
|
|
1493
|
+
|
|
1234
1494
|
.border-0 {
|
|
1235
1495
|
border-width: 0px;
|
|
1236
1496
|
}
|
|
1497
|
+
|
|
1237
1498
|
.border-2 {
|
|
1238
1499
|
border-width: 2px;
|
|
1239
1500
|
}
|
|
1501
|
+
|
|
1240
1502
|
.border-b {
|
|
1241
1503
|
border-bottom-width: 1px;
|
|
1242
1504
|
}
|
|
1505
|
+
|
|
1243
1506
|
.border-l {
|
|
1244
1507
|
border-left-width: 1px;
|
|
1245
1508
|
}
|
|
1509
|
+
|
|
1246
1510
|
.border-t {
|
|
1247
1511
|
border-top-width: 1px;
|
|
1248
1512
|
}
|
|
1513
|
+
|
|
1249
1514
|
.border-none {
|
|
1250
1515
|
border-style: none;
|
|
1251
1516
|
}
|
|
1517
|
+
|
|
1252
1518
|
.\!border-stateColors-error {
|
|
1253
1519
|
border-color: var(--stateColors-error) !important;
|
|
1254
1520
|
}
|
|
1521
|
+
|
|
1255
1522
|
.border-black {
|
|
1256
1523
|
--tw-border-opacity: 1;
|
|
1257
1524
|
border-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
1258
1525
|
}
|
|
1526
|
+
|
|
1259
1527
|
.border-buttonColors-primaryOutlineColor {
|
|
1260
1528
|
border-color: var(--buttonColors-primaryOutlineColor);
|
|
1261
1529
|
}
|
|
1530
|
+
|
|
1262
1531
|
.border-buttonColors-secondaryOutlineColor {
|
|
1263
1532
|
border-color: var(--buttonColors-secondaryOutlineColor);
|
|
1264
1533
|
}
|
|
1534
|
+
|
|
1265
1535
|
.border-coreColors-brandColorPrimary {
|
|
1266
1536
|
border-color: var(--coreColors-brandColorPrimary);
|
|
1267
1537
|
}
|
|
1538
|
+
|
|
1268
1539
|
.border-coreColors-dividingLines {
|
|
1269
1540
|
border-color: var(--coreColors-dividingLines);
|
|
1270
1541
|
}
|
|
1542
|
+
|
|
1271
1543
|
.border-input {
|
|
1272
1544
|
border-color: hsl(var(--input));
|
|
1273
1545
|
}
|
|
1546
|
+
|
|
1274
1547
|
.border-stateColors-error {
|
|
1275
1548
|
border-color: var(--stateColors-error);
|
|
1276
1549
|
}
|
|
1550
|
+
|
|
1277
1551
|
.border-transparent {
|
|
1278
1552
|
border-color: transparent;
|
|
1279
1553
|
}
|
|
1554
|
+
|
|
1280
1555
|
.border-l-transparent {
|
|
1281
1556
|
border-left-color: transparent;
|
|
1282
1557
|
}
|
|
1558
|
+
|
|
1283
1559
|
.border-t-transparent {
|
|
1284
1560
|
border-top-color: transparent;
|
|
1285
1561
|
}
|
|
1562
|
+
|
|
1286
1563
|
.bg-\[\#612EFF\] {
|
|
1287
1564
|
--tw-bg-opacity: 1;
|
|
1288
1565
|
background-color: rgb(97 46 255 / var(--tw-bg-opacity));
|
|
1289
1566
|
}
|
|
1567
|
+
|
|
1290
1568
|
.bg-background {
|
|
1291
1569
|
background-color: hsl(var(--background));
|
|
1292
1570
|
}
|
|
1571
|
+
|
|
1293
1572
|
.bg-black\/80 {
|
|
1294
1573
|
background-color: rgb(0 0 0 / 0.8);
|
|
1295
1574
|
}
|
|
1575
|
+
|
|
1296
1576
|
.bg-border {
|
|
1297
1577
|
background-color: hsl(var(--border));
|
|
1298
1578
|
}
|
|
1579
|
+
|
|
1299
1580
|
.bg-buttonColors-primaryFill {
|
|
1300
1581
|
background-color: var(--buttonColors-primaryFill);
|
|
1301
1582
|
}
|
|
1583
|
+
|
|
1302
1584
|
.bg-buttonColors-secondaryFill {
|
|
1303
1585
|
background-color: var(--buttonColors-secondaryFill);
|
|
1304
1586
|
}
|
|
1587
|
+
|
|
1305
1588
|
.bg-coreColors-brandColorPrimary {
|
|
1306
1589
|
background-color: var(--coreColors-brandColorPrimary);
|
|
1307
1590
|
}
|
|
1591
|
+
|
|
1308
1592
|
.bg-coreColors-dividingLines {
|
|
1309
1593
|
background-color: var(--coreColors-dividingLines);
|
|
1310
1594
|
}
|
|
1595
|
+
|
|
1311
1596
|
.bg-coreColors-inputBackground {
|
|
1312
1597
|
background-color: var(--coreColors-inputBackground);
|
|
1313
1598
|
}
|
|
1599
|
+
|
|
1314
1600
|
.bg-coreColors-modalBackground {
|
|
1315
1601
|
background-color: var(--coreColors-modalBackground);
|
|
1316
1602
|
}
|
|
1603
|
+
|
|
1317
1604
|
.bg-coreColors-pageColor {
|
|
1318
1605
|
background-color: var(--coreColors-pageColor);
|
|
1319
1606
|
}
|
|
1607
|
+
|
|
1320
1608
|
.bg-productBadging-fill {
|
|
1321
1609
|
background-color: var(--productBadging-fill);
|
|
1322
1610
|
}
|
|
1611
|
+
|
|
1323
1612
|
.bg-stateColors-disabled {
|
|
1324
1613
|
background-color: var(--stateColors-disabled);
|
|
1325
1614
|
}
|
|
1615
|
+
|
|
1326
1616
|
.bg-stateColors-error {
|
|
1327
1617
|
background-color: var(--stateColors-error);
|
|
1328
1618
|
}
|
|
1619
|
+
|
|
1329
1620
|
.bg-stateColors-skeleton {
|
|
1330
1621
|
background-color: var(--stateColors-skeleton);
|
|
1331
1622
|
}
|
|
1623
|
+
|
|
1332
1624
|
.bg-stateColors-success {
|
|
1333
1625
|
background-color: var(--stateColors-success);
|
|
1334
1626
|
}
|
|
1627
|
+
|
|
1335
1628
|
.bg-stateColors-warning {
|
|
1336
1629
|
background-color: var(--stateColors-warning);
|
|
1337
1630
|
}
|
|
1631
|
+
|
|
1338
1632
|
.bg-transparent {
|
|
1339
1633
|
background-color: transparent;
|
|
1340
1634
|
}
|
|
1635
|
+
|
|
1341
1636
|
.bg-white {
|
|
1342
1637
|
--tw-bg-opacity: 1;
|
|
1343
1638
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1344
1639
|
}
|
|
1640
|
+
|
|
1345
1641
|
.bg-\[linear-gradient\(270deg\2c \#ffffff00_0\%\2c \#FFF_100\%\)\] {
|
|
1346
1642
|
background-image: linear-gradient(270deg,#ffffff00 0%,#FFF 100%);
|
|
1347
1643
|
}
|
|
1644
|
+
|
|
1348
1645
|
.bg-\[linear-gradient\(90deg\2c \#ffffff00_0\%\2c \#FFF_100\%\)\] {
|
|
1349
1646
|
background-image: linear-gradient(90deg,#ffffff00 0%,#FFF 100%);
|
|
1350
1647
|
}
|
|
1648
|
+
|
|
1351
1649
|
.bg-fade-left {
|
|
1352
1650
|
background-image: linear-gradient(to right, var(--coreColors-pageColor) 0%, #ffffff00 100%);;
|
|
1353
1651
|
}
|
|
1652
|
+
|
|
1354
1653
|
.bg-fade-right {
|
|
1355
1654
|
background-image: linear-gradient(to left, var(--coreColors-pageColor) 0%, #ffffff00 100%);;
|
|
1356
1655
|
}
|
|
1656
|
+
|
|
1357
1657
|
.fill-current {
|
|
1358
1658
|
fill: currentColor;
|
|
1359
1659
|
}
|
|
1660
|
+
|
|
1360
1661
|
.p-0 {
|
|
1361
1662
|
padding: 0px;
|
|
1362
1663
|
}
|
|
1664
|
+
|
|
1363
1665
|
.p-1 {
|
|
1364
1666
|
padding: 0.25rem;
|
|
1365
1667
|
}
|
|
1668
|
+
|
|
1366
1669
|
.p-2 {
|
|
1367
1670
|
padding: 0.5rem;
|
|
1368
1671
|
}
|
|
1672
|
+
|
|
1369
1673
|
.p-3 {
|
|
1370
1674
|
padding: 0.75rem;
|
|
1371
1675
|
}
|
|
1676
|
+
|
|
1372
1677
|
.p-4 {
|
|
1373
1678
|
padding: 1rem;
|
|
1374
1679
|
}
|
|
1680
|
+
|
|
1375
1681
|
.p-6 {
|
|
1376
1682
|
padding: 1.5rem;
|
|
1377
1683
|
}
|
|
1684
|
+
|
|
1378
1685
|
.p-\[1px\] {
|
|
1379
1686
|
padding: 1px;
|
|
1380
1687
|
}
|
|
1688
|
+
|
|
1689
|
+
.px-0 {
|
|
1690
|
+
padding-left: 0px;
|
|
1691
|
+
padding-right: 0px;
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1381
1694
|
.px-1 {
|
|
1382
1695
|
padding-left: 0.25rem;
|
|
1383
1696
|
padding-right: 0.25rem;
|
|
1384
1697
|
}
|
|
1698
|
+
|
|
1385
1699
|
.px-2 {
|
|
1386
1700
|
padding-left: 0.5rem;
|
|
1387
1701
|
padding-right: 0.5rem;
|
|
1388
1702
|
}
|
|
1703
|
+
|
|
1389
1704
|
.px-2\.5 {
|
|
1390
1705
|
padding-left: 0.625rem;
|
|
1391
1706
|
padding-right: 0.625rem;
|
|
1392
1707
|
}
|
|
1708
|
+
|
|
1393
1709
|
.px-3 {
|
|
1394
1710
|
padding-left: 0.75rem;
|
|
1395
1711
|
padding-right: 0.75rem;
|
|
1396
1712
|
}
|
|
1713
|
+
|
|
1397
1714
|
.px-4 {
|
|
1398
1715
|
padding-left: 1rem;
|
|
1399
1716
|
padding-right: 1rem;
|
|
1400
1717
|
}
|
|
1718
|
+
|
|
1401
1719
|
.px-5 {
|
|
1402
1720
|
padding-left: 1.25rem;
|
|
1403
1721
|
padding-right: 1.25rem;
|
|
1404
1722
|
}
|
|
1723
|
+
|
|
1405
1724
|
.px-8 {
|
|
1406
1725
|
padding-left: 2rem;
|
|
1407
1726
|
padding-right: 2rem;
|
|
1408
1727
|
}
|
|
1728
|
+
|
|
1409
1729
|
.px-\[16px\] {
|
|
1410
1730
|
padding-left: 16px;
|
|
1411
1731
|
padding-right: 16px;
|
|
1412
1732
|
}
|
|
1733
|
+
|
|
1413
1734
|
.py-1 {
|
|
1414
1735
|
padding-top: 0.25rem;
|
|
1415
1736
|
padding-bottom: 0.25rem;
|
|
1416
1737
|
}
|
|
1738
|
+
|
|
1417
1739
|
.py-2 {
|
|
1418
1740
|
padding-top: 0.5rem;
|
|
1419
1741
|
padding-bottom: 0.5rem;
|
|
1420
1742
|
}
|
|
1743
|
+
|
|
1421
1744
|
.py-3 {
|
|
1422
1745
|
padding-top: 0.75rem;
|
|
1423
1746
|
padding-bottom: 0.75rem;
|
|
1424
1747
|
}
|
|
1748
|
+
|
|
1425
1749
|
.py-4 {
|
|
1426
1750
|
padding-top: 1rem;
|
|
1427
1751
|
padding-bottom: 1rem;
|
|
1428
1752
|
}
|
|
1753
|
+
|
|
1429
1754
|
.pb-2 {
|
|
1430
1755
|
padding-bottom: 0.5rem;
|
|
1431
1756
|
}
|
|
1757
|
+
|
|
1432
1758
|
.pb-4 {
|
|
1433
1759
|
padding-bottom: 1rem;
|
|
1434
1760
|
}
|
|
1761
|
+
|
|
1435
1762
|
.pb-8 {
|
|
1436
1763
|
padding-bottom: 2rem;
|
|
1437
1764
|
}
|
|
1765
|
+
|
|
1438
1766
|
.pl-0 {
|
|
1439
1767
|
padding-left: 0px;
|
|
1440
1768
|
}
|
|
1769
|
+
|
|
1441
1770
|
.pl-10 {
|
|
1442
1771
|
padding-left: 2.5rem;
|
|
1443
1772
|
}
|
|
1773
|
+
|
|
1444
1774
|
.pl-2 {
|
|
1445
1775
|
padding-left: 0.5rem;
|
|
1446
1776
|
}
|
|
1777
|
+
|
|
1447
1778
|
.pl-4 {
|
|
1448
1779
|
padding-left: 1rem;
|
|
1449
1780
|
}
|
|
1781
|
+
|
|
1450
1782
|
.pl-8 {
|
|
1451
1783
|
padding-left: 2rem;
|
|
1452
1784
|
}
|
|
1785
|
+
|
|
1453
1786
|
.pr-1 {
|
|
1454
1787
|
padding-right: 0.25rem;
|
|
1455
1788
|
}
|
|
1789
|
+
|
|
1456
1790
|
.pr-2 {
|
|
1457
1791
|
padding-right: 0.5rem;
|
|
1458
1792
|
}
|
|
1793
|
+
|
|
1459
1794
|
.pr-4 {
|
|
1460
1795
|
padding-right: 1rem;
|
|
1461
1796
|
}
|
|
1797
|
+
|
|
1462
1798
|
.pt-0 {
|
|
1463
1799
|
padding-top: 0px;
|
|
1464
1800
|
}
|
|
1801
|
+
|
|
1465
1802
|
.pt-12 {
|
|
1466
1803
|
padding-top: 3rem;
|
|
1467
1804
|
}
|
|
1805
|
+
|
|
1468
1806
|
.pt-4 {
|
|
1469
1807
|
padding-top: 1rem;
|
|
1470
1808
|
}
|
|
1809
|
+
|
|
1471
1810
|
.pt-5 {
|
|
1472
1811
|
padding-top: 1.25rem;
|
|
1473
1812
|
}
|
|
1813
|
+
|
|
1474
1814
|
.pt-6 {
|
|
1475
1815
|
padding-top: 1.5rem;
|
|
1476
1816
|
}
|
|
1817
|
+
|
|
1477
1818
|
.text-left {
|
|
1478
1819
|
text-align: left;
|
|
1479
1820
|
}
|
|
1821
|
+
|
|
1480
1822
|
.text-center {
|
|
1481
1823
|
text-align: center;
|
|
1482
1824
|
}
|
|
1825
|
+
|
|
1483
1826
|
.text-right {
|
|
1484
1827
|
text-align: right;
|
|
1485
1828
|
}
|
|
1829
|
+
|
|
1486
1830
|
.text-start {
|
|
1487
1831
|
text-align: start;
|
|
1488
1832
|
}
|
|
1833
|
+
|
|
1489
1834
|
.align-top {
|
|
1490
1835
|
vertical-align: top;
|
|
1491
1836
|
}
|
|
1837
|
+
|
|
1492
1838
|
.font-fontMedium {
|
|
1493
1839
|
font-family: var(--fontMedium);
|
|
1494
1840
|
}
|
|
1841
|
+
|
|
1495
1842
|
.font-fontRegular {
|
|
1496
1843
|
font-family: var(--fontRegular);
|
|
1497
1844
|
}
|
|
1845
|
+
|
|
1498
1846
|
.text-\[10px\] {
|
|
1499
1847
|
font-size: 10px;
|
|
1500
1848
|
}
|
|
1849
|
+
|
|
1501
1850
|
.text-\[12px\] {
|
|
1502
1851
|
font-size: 12px;
|
|
1503
1852
|
}
|
|
1853
|
+
|
|
1504
1854
|
.text-\[15px\] {
|
|
1505
1855
|
font-size: 15px;
|
|
1506
1856
|
}
|
|
1857
|
+
|
|
1507
1858
|
.text-\[18px\] {
|
|
1508
1859
|
font-size: 18px;
|
|
1509
1860
|
}
|
|
1861
|
+
|
|
1510
1862
|
.text-\[23px\] {
|
|
1511
1863
|
font-size: 23px;
|
|
1512
1864
|
}
|
|
1865
|
+
|
|
1513
1866
|
.text-lg {
|
|
1514
1867
|
font-size: 1.125rem;
|
|
1515
1868
|
line-height: 1.75rem;
|
|
1516
1869
|
}
|
|
1870
|
+
|
|
1517
1871
|
.text-sm {
|
|
1518
1872
|
font-size: 0.875rem;
|
|
1519
1873
|
line-height: 1.25rem;
|
|
1520
1874
|
}
|
|
1875
|
+
|
|
1521
1876
|
.text-xs {
|
|
1522
1877
|
font-size: 0.75rem;
|
|
1523
1878
|
line-height: 1rem;
|
|
1524
1879
|
}
|
|
1880
|
+
|
|
1525
1881
|
.font-medium {
|
|
1526
1882
|
font-weight: 500;
|
|
1527
1883
|
}
|
|
1884
|
+
|
|
1528
1885
|
.font-normal {
|
|
1529
1886
|
font-weight: 400;
|
|
1530
1887
|
}
|
|
1888
|
+
|
|
1531
1889
|
.font-semibold {
|
|
1532
1890
|
font-weight: 600;
|
|
1533
1891
|
}
|
|
1892
|
+
|
|
1534
1893
|
.uppercase {
|
|
1535
1894
|
text-transform: uppercase;
|
|
1536
1895
|
}
|
|
1896
|
+
|
|
1537
1897
|
.leading-\[130\%\] {
|
|
1538
1898
|
line-height: 130%;
|
|
1539
1899
|
}
|
|
1900
|
+
|
|
1540
1901
|
.leading-\[13px\] {
|
|
1541
1902
|
line-height: 13px;
|
|
1542
1903
|
}
|
|
1904
|
+
|
|
1543
1905
|
.leading-\[160\%\] {
|
|
1544
1906
|
line-height: 160%;
|
|
1545
1907
|
}
|
|
1908
|
+
|
|
1546
1909
|
.leading-\[24px\] {
|
|
1547
1910
|
line-height: 24px;
|
|
1548
1911
|
}
|
|
1912
|
+
|
|
1549
1913
|
.leading-none {
|
|
1550
1914
|
line-height: 1;
|
|
1551
1915
|
}
|
|
1916
|
+
|
|
1552
1917
|
.text-black {
|
|
1553
1918
|
--tw-text-opacity: 1;
|
|
1554
1919
|
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
1555
1920
|
}
|
|
1921
|
+
|
|
1556
1922
|
.text-buttonColors-destructiveText {
|
|
1557
1923
|
color: var(--buttonColors-destructiveText);
|
|
1558
1924
|
}
|
|
1925
|
+
|
|
1559
1926
|
.text-buttonColors-disabled {
|
|
1560
1927
|
color: var(--buttonColors-disabled);
|
|
1561
1928
|
}
|
|
1929
|
+
|
|
1562
1930
|
.text-buttonColors-primaryFill {
|
|
1563
1931
|
color: var(--buttonColors-primaryFill);
|
|
1564
1932
|
}
|
|
1933
|
+
|
|
1565
1934
|
.text-buttonColors-primaryOutline {
|
|
1566
1935
|
color: var(--buttonColors-primaryOutline);
|
|
1567
1936
|
}
|
|
1937
|
+
|
|
1568
1938
|
.text-buttonColors-primaryOutlineColor {
|
|
1569
1939
|
color: var(--buttonColors-primaryOutlineColor);
|
|
1570
1940
|
}
|
|
1941
|
+
|
|
1571
1942
|
.text-buttonColors-primaryOutlineEnabled {
|
|
1572
1943
|
color: var(--buttonColors-primaryOutlineEnabled);
|
|
1573
1944
|
}
|
|
1945
|
+
|
|
1574
1946
|
.text-buttonColors-primaryShadow {
|
|
1575
1947
|
color: var(--buttonColors-primaryShadow);
|
|
1576
1948
|
}
|
|
1949
|
+
|
|
1577
1950
|
.text-buttonColors-primaryText {
|
|
1578
1951
|
color: var(--buttonColors-primaryText);
|
|
1579
1952
|
}
|
|
1953
|
+
|
|
1580
1954
|
.text-buttonColors-secondaryFill {
|
|
1581
1955
|
color: var(--buttonColors-secondaryFill);
|
|
1582
1956
|
}
|
|
1957
|
+
|
|
1583
1958
|
.text-buttonColors-secondaryOutline {
|
|
1584
1959
|
color: var(--buttonColors-secondaryOutline);
|
|
1585
1960
|
}
|
|
1961
|
+
|
|
1586
1962
|
.text-buttonColors-secondaryOutlineColor {
|
|
1587
1963
|
color: var(--buttonColors-secondaryOutlineColor);
|
|
1588
1964
|
}
|
|
1965
|
+
|
|
1589
1966
|
.text-buttonColors-secondaryOutlineEnabled {
|
|
1590
1967
|
color: var(--buttonColors-secondaryOutlineEnabled);
|
|
1591
1968
|
}
|
|
1969
|
+
|
|
1592
1970
|
.text-buttonColors-secondaryShadow {
|
|
1593
1971
|
color: var(--buttonColors-secondaryShadow);
|
|
1594
1972
|
}
|
|
1973
|
+
|
|
1595
1974
|
.text-buttonColors-secondaryText {
|
|
1596
1975
|
color: var(--buttonColors-secondaryText);
|
|
1597
1976
|
}
|
|
1977
|
+
|
|
1598
1978
|
.text-coreColors-brandColorPrimary {
|
|
1599
1979
|
color: var(--coreColors-brandColorPrimary);
|
|
1600
1980
|
}
|
|
1981
|
+
|
|
1601
1982
|
.text-coreColors-dividingLines {
|
|
1602
1983
|
color: var(--coreColors-dividingLines);
|
|
1603
1984
|
}
|
|
1985
|
+
|
|
1604
1986
|
.text-coreColors-headerBackground {
|
|
1605
1987
|
color: var(--coreColors-headerBackground);
|
|
1606
1988
|
}
|
|
1989
|
+
|
|
1607
1990
|
.text-coreColors-headerIcon {
|
|
1608
1991
|
color: var(--coreColors-headerIcon);
|
|
1609
1992
|
}
|
|
1993
|
+
|
|
1610
1994
|
.text-coreColors-inputBackground {
|
|
1611
1995
|
color: var(--coreColors-inputBackground);
|
|
1612
1996
|
}
|
|
1997
|
+
|
|
1613
1998
|
.text-coreColors-modalBackground {
|
|
1614
1999
|
color: var(--coreColors-modalBackground);
|
|
1615
2000
|
}
|
|
2001
|
+
|
|
1616
2002
|
.text-coreColors-pageColor {
|
|
1617
2003
|
color: var(--coreColors-pageColor);
|
|
1618
2004
|
}
|
|
2005
|
+
|
|
1619
2006
|
.text-coreColors-primaryIcon {
|
|
1620
2007
|
color: var(--coreColors-primaryIcon);
|
|
1621
2008
|
}
|
|
2009
|
+
|
|
1622
2010
|
.text-coreColors-secondaryIcon {
|
|
1623
2011
|
color: var(--coreColors-secondaryIcon);
|
|
1624
2012
|
}
|
|
2013
|
+
|
|
1625
2014
|
.text-coreColors-shadow {
|
|
1626
2015
|
color: var(--coreColors-shadow);
|
|
1627
2016
|
}
|
|
2017
|
+
|
|
1628
2018
|
.text-coreColors-shadowsEnabled {
|
|
1629
2019
|
color: var(--coreColors-shadowsEnabled);
|
|
1630
2020
|
}
|
|
2021
|
+
|
|
1631
2022
|
.text-coreColors-tabBar {
|
|
1632
2023
|
color: var(--coreColors-tabBar);
|
|
1633
2024
|
}
|
|
2025
|
+
|
|
1634
2026
|
.text-current {
|
|
1635
2027
|
color: currentColor;
|
|
1636
2028
|
}
|
|
2029
|
+
|
|
1637
2030
|
.text-foreground\/50 {
|
|
1638
2031
|
color: hsl(var(--foreground) / 0.5);
|
|
1639
2032
|
}
|
|
2033
|
+
|
|
1640
2034
|
.text-muted-foreground {
|
|
1641
2035
|
color: hsl(var(--muted-foreground));
|
|
1642
2036
|
}
|
|
2037
|
+
|
|
1643
2038
|
.text-productBadging-text {
|
|
1644
2039
|
color: var(--productBadging-text);
|
|
1645
2040
|
}
|
|
2041
|
+
|
|
1646
2042
|
.text-stateColors-disabled {
|
|
1647
2043
|
color: var(--stateColors-disabled);
|
|
1648
2044
|
}
|
|
2045
|
+
|
|
1649
2046
|
.text-stateColors-error {
|
|
1650
2047
|
color: var(--stateColors-error);
|
|
1651
2048
|
}
|
|
2049
|
+
|
|
1652
2050
|
.text-stateColors-favorites {
|
|
1653
2051
|
color: var(--stateColors-favorites);
|
|
1654
2052
|
}
|
|
2053
|
+
|
|
1655
2054
|
.text-stateColors-reviews {
|
|
1656
2055
|
color: var(--stateColors-reviews);
|
|
1657
2056
|
}
|
|
2057
|
+
|
|
1658
2058
|
.text-stateColors-skeleton {
|
|
1659
2059
|
color: var(--stateColors-skeleton);
|
|
1660
2060
|
}
|
|
2061
|
+
|
|
1661
2062
|
.text-stateColors-subscriptions {
|
|
1662
2063
|
color: var(--stateColors-subscriptions);
|
|
1663
2064
|
}
|
|
2065
|
+
|
|
1664
2066
|
.text-stateColors-success {
|
|
1665
2067
|
color: var(--stateColors-success);
|
|
1666
2068
|
}
|
|
2069
|
+
|
|
1667
2070
|
.text-stateColors-warning {
|
|
1668
2071
|
color: var(--stateColors-warning);
|
|
1669
2072
|
}
|
|
2073
|
+
|
|
1670
2074
|
.text-textColors-legalText {
|
|
1671
2075
|
color: var(--textColors-legalText);
|
|
1672
2076
|
}
|
|
2077
|
+
|
|
1673
2078
|
.text-textColors-pageTitle {
|
|
1674
2079
|
color: var(--textColors-pageTitle);
|
|
1675
2080
|
}
|
|
2081
|
+
|
|
1676
2082
|
.text-textColors-priceText {
|
|
1677
2083
|
color: var(--textColors-priceText);
|
|
1678
2084
|
}
|
|
2085
|
+
|
|
1679
2086
|
.text-textColors-primaryColor {
|
|
1680
2087
|
color: var(--textColors-primaryColor, #121212ff);
|
|
1681
2088
|
}
|
|
2089
|
+
|
|
1682
2090
|
.text-textColors-productTitle {
|
|
1683
2091
|
color: var(--textColors-productTitle);
|
|
1684
2092
|
}
|
|
2093
|
+
|
|
1685
2094
|
.text-textColors-salePriceText {
|
|
1686
2095
|
color: var(--textColors-salePriceText);
|
|
1687
2096
|
}
|
|
2097
|
+
|
|
1688
2098
|
.text-textColors-secondaryColor {
|
|
1689
2099
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
1690
2100
|
}
|
|
2101
|
+
|
|
1691
2102
|
.text-textColors-strikethroughPriceText {
|
|
1692
2103
|
color: var(--textColors-strikethroughPriceText);
|
|
1693
2104
|
}
|
|
2105
|
+
|
|
1694
2106
|
.line-through {
|
|
1695
2107
|
text-decoration-line: line-through;
|
|
1696
2108
|
}
|
|
2109
|
+
|
|
1697
2110
|
.underline-offset-4 {
|
|
1698
2111
|
text-underline-offset: 4px;
|
|
1699
2112
|
}
|
|
2113
|
+
|
|
1700
2114
|
.opacity-0 {
|
|
1701
2115
|
opacity: 0;
|
|
1702
2116
|
}
|
|
2117
|
+
|
|
1703
2118
|
.opacity-100 {
|
|
1704
2119
|
opacity: 1;
|
|
1705
2120
|
}
|
|
2121
|
+
|
|
1706
2122
|
.opacity-50 {
|
|
1707
2123
|
opacity: 0.5;
|
|
1708
2124
|
}
|
|
2125
|
+
|
|
1709
2126
|
.shadow-\[0_0_6px_0_rgba\(17\2c 17\2c 17\2c 0\.16\)\] {
|
|
1710
2127
|
--tw-shadow: 0 0 6px 0 rgba(17,17,17,0.16);
|
|
1711
2128
|
--tw-shadow-colored: 0 0 6px 0 var(--tw-shadow-color);
|
|
1712
2129
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1713
2130
|
}
|
|
2131
|
+
|
|
1714
2132
|
.shadow-lg {
|
|
1715
2133
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1716
2134
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
1717
2135
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1718
2136
|
}
|
|
2137
|
+
|
|
1719
2138
|
.shadow-primary {
|
|
1720
2139
|
--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);;
|
|
1721
2140
|
--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);;
|
|
1722
2141
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1723
2142
|
}
|
|
2143
|
+
|
|
1724
2144
|
.shadow-secondary {
|
|
1725
2145
|
--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);;
|
|
1726
2146
|
--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);;
|
|
1727
2147
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1728
2148
|
}
|
|
2149
|
+
|
|
1729
2150
|
.shadow-buttonColors-primaryShadow {
|
|
1730
2151
|
--tw-shadow-color: var(--buttonColors-primaryShadow);
|
|
1731
2152
|
--tw-shadow: var(--tw-shadow-colored);
|
|
1732
2153
|
}
|
|
2154
|
+
|
|
1733
2155
|
.shadow-primary {
|
|
1734
2156
|
--tw-shadow-color: hsl(var(--primary));
|
|
1735
2157
|
--tw-shadow: var(--tw-shadow-colored);
|
|
1736
2158
|
}
|
|
2159
|
+
|
|
1737
2160
|
.shadow-secondary {
|
|
1738
2161
|
--tw-shadow-color: hsl(var(--secondary));
|
|
1739
2162
|
--tw-shadow: var(--tw-shadow-colored);
|
|
1740
2163
|
}
|
|
2164
|
+
|
|
1741
2165
|
.outline-none {
|
|
1742
2166
|
outline: 2px solid transparent;
|
|
1743
2167
|
outline-offset: 2px;
|
|
1744
2168
|
}
|
|
2169
|
+
|
|
1745
2170
|
.outline {
|
|
1746
2171
|
outline-style: solid;
|
|
1747
2172
|
}
|
|
2173
|
+
|
|
1748
2174
|
.outline-0 {
|
|
1749
2175
|
outline-width: 0px;
|
|
1750
2176
|
}
|
|
2177
|
+
|
|
1751
2178
|
.outline-1 {
|
|
1752
2179
|
outline-width: 1px;
|
|
1753
2180
|
}
|
|
2181
|
+
|
|
1754
2182
|
.outline-coreColors-brandColorPrimary {
|
|
1755
2183
|
outline-color: var(--coreColors-brandColorPrimary);
|
|
1756
2184
|
}
|
|
2185
|
+
|
|
1757
2186
|
.outline-coreColors-dividingLines {
|
|
1758
2187
|
outline-color: var(--coreColors-dividingLines);
|
|
1759
2188
|
}
|
|
2189
|
+
|
|
1760
2190
|
.outline-stateColors-error {
|
|
1761
2191
|
outline-color: var(--stateColors-error);
|
|
1762
2192
|
}
|
|
2193
|
+
|
|
1763
2194
|
.outline-stateColors-skeleton {
|
|
1764
2195
|
outline-color: var(--stateColors-skeleton);
|
|
1765
2196
|
}
|
|
2197
|
+
|
|
1766
2198
|
.ring-0 {
|
|
1767
2199
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1768
2200
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1769
2201
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1770
2202
|
}
|
|
2203
|
+
|
|
1771
2204
|
.ring-offset-background {
|
|
1772
2205
|
--tw-ring-offset-color: hsl(var(--background));
|
|
1773
2206
|
}
|
|
2207
|
+
|
|
1774
2208
|
.drop-shadow-\[0_3px_1px_0_rgba\(0\2c 0\2c 0\2c 1\)\] {
|
|
1775
2209
|
--tw-drop-shadow: drop-shadow(0 3px 1px 0 rgba(0,0,0,1));
|
|
1776
2210
|
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);
|
|
1777
2211
|
}
|
|
2212
|
+
|
|
1778
2213
|
.\!filter {
|
|
1779
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;
|
|
1780
2215
|
}
|
|
2216
|
+
|
|
1781
2217
|
.filter {
|
|
1782
2218
|
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);
|
|
1783
2219
|
}
|
|
2220
|
+
|
|
1784
2221
|
.transition-all {
|
|
1785
2222
|
transition-property: all;
|
|
1786
2223
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1787
2224
|
transition-duration: 150ms;
|
|
1788
2225
|
}
|
|
2226
|
+
|
|
1789
2227
|
.transition-colors {
|
|
1790
2228
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
1791
2229
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1792
2230
|
transition-duration: 150ms;
|
|
1793
2231
|
}
|
|
2232
|
+
|
|
1794
2233
|
.transition-opacity {
|
|
1795
2234
|
transition-property: opacity;
|
|
1796
2235
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1797
2236
|
transition-duration: 150ms;
|
|
1798
2237
|
}
|
|
2238
|
+
|
|
1799
2239
|
.transition-transform {
|
|
1800
2240
|
transition-property: transform;
|
|
1801
2241
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1802
2242
|
transition-duration: 150ms;
|
|
1803
2243
|
}
|
|
2244
|
+
|
|
1804
2245
|
.duration-200 {
|
|
1805
2246
|
transition-duration: 200ms;
|
|
1806
2247
|
}
|
|
2248
|
+
|
|
1807
2249
|
.duration-300 {
|
|
1808
2250
|
transition-duration: 300ms;
|
|
1809
2251
|
}
|
|
2252
|
+
|
|
1810
2253
|
.duration-500 {
|
|
1811
2254
|
transition-duration: 500ms;
|
|
1812
2255
|
}
|
|
2256
|
+
|
|
1813
2257
|
.ease-in-out {
|
|
1814
2258
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1815
2259
|
}
|
|
1816
|
-
@keyframes enter {
|
|
1817
2260
|
|
|
2261
|
+
@keyframes enter {
|
|
1818
2262
|
from {
|
|
1819
2263
|
opacity: var(--tw-enter-opacity, 1);
|
|
1820
2264
|
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));
|
|
1821
2265
|
}
|
|
1822
2266
|
}
|
|
1823
|
-
@keyframes exit {
|
|
1824
2267
|
|
|
2268
|
+
@keyframes exit {
|
|
1825
2269
|
to {
|
|
1826
2270
|
opacity: var(--tw-exit-opacity, 1);
|
|
1827
2271
|
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));
|
|
1828
2272
|
}
|
|
1829
2273
|
}
|
|
2274
|
+
|
|
1830
2275
|
.duration-200 {
|
|
1831
2276
|
animation-duration: 200ms;
|
|
1832
2277
|
}
|
|
2278
|
+
|
|
1833
2279
|
.duration-300 {
|
|
1834
2280
|
animation-duration: 300ms;
|
|
1835
2281
|
}
|
|
2282
|
+
|
|
1836
2283
|
.duration-500 {
|
|
1837
2284
|
animation-duration: 500ms;
|
|
1838
2285
|
}
|
|
2286
|
+
|
|
1839
2287
|
.ease-in-out {
|
|
1840
2288
|
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1841
2289
|
}
|
|
2290
|
+
|
|
1842
2291
|
.container {
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
2292
|
+
padding-right: 16px;
|
|
2293
|
+
padding-left: 16px;
|
|
2294
|
+
}
|
|
2295
|
+
|
|
1846
2296
|
*:hover {
|
|
1847
|
-
|
|
1848
|
-
|
|
2297
|
+
text-decoration-line: unset !important;
|
|
2298
|
+
}
|
|
2299
|
+
|
|
2300
|
+
body::-webkit-scrollbar {
|
|
2301
|
+
display: none;
|
|
2302
|
+
-ms-overflow-style: none;
|
|
2303
|
+
/* IE and Edge */
|
|
2304
|
+
scrollbar-width: none;
|
|
2305
|
+
/* Firefox */
|
|
2306
|
+
}
|
|
2307
|
+
|
|
1849
2308
|
.file\:border-0::file-selector-button {
|
|
1850
2309
|
border-width: 0px;
|
|
1851
2310
|
}
|
|
2311
|
+
|
|
1852
2312
|
.file\:bg-transparent::file-selector-button {
|
|
1853
2313
|
background-color: transparent;
|
|
1854
2314
|
}
|
|
2315
|
+
|
|
1855
2316
|
.file\:text-sm::file-selector-button {
|
|
1856
2317
|
font-size: 0.875rem;
|
|
1857
2318
|
line-height: 1.25rem;
|
|
1858
2319
|
}
|
|
2320
|
+
|
|
1859
2321
|
.file\:font-medium::file-selector-button {
|
|
1860
2322
|
font-weight: 500;
|
|
1861
2323
|
}
|
|
2324
|
+
|
|
1862
2325
|
.placeholder\:text-stateColors-error::-moz-placeholder {
|
|
1863
2326
|
color: var(--stateColors-error);
|
|
1864
2327
|
}
|
|
2328
|
+
|
|
1865
2329
|
.placeholder\:text-stateColors-error::placeholder {
|
|
1866
2330
|
color: var(--stateColors-error);
|
|
1867
2331
|
}
|
|
2332
|
+
|
|
1868
2333
|
.placeholder\:text-textColors-secondaryColor::-moz-placeholder {
|
|
1869
2334
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
1870
2335
|
}
|
|
2336
|
+
|
|
1871
2337
|
.placeholder\:text-textColors-secondaryColor::placeholder {
|
|
1872
2338
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
1873
2339
|
}
|
|
2340
|
+
|
|
1874
2341
|
.placeholder-shown\:\!truncate:-moz-placeholder-shown {
|
|
1875
2342
|
overflow: hidden !important;
|
|
1876
2343
|
text-overflow: ellipsis !important;
|
|
1877
2344
|
white-space: nowrap !important;
|
|
1878
2345
|
}
|
|
2346
|
+
|
|
1879
2347
|
.placeholder-shown\:\!truncate:placeholder-shown {
|
|
1880
2348
|
overflow: hidden !important;
|
|
1881
2349
|
text-overflow: ellipsis !important;
|
|
1882
2350
|
white-space: nowrap !important;
|
|
1883
2351
|
}
|
|
2352
|
+
|
|
1884
2353
|
.placeholder-shown\:p-4:-moz-placeholder-shown {
|
|
1885
2354
|
padding: 1rem;
|
|
1886
2355
|
}
|
|
2356
|
+
|
|
1887
2357
|
.placeholder-shown\:p-4:placeholder-shown {
|
|
1888
2358
|
padding: 1rem;
|
|
1889
2359
|
}
|
|
2360
|
+
|
|
1890
2361
|
.placeholder-shown\:text-textColors-secondaryColor:-moz-placeholder-shown {
|
|
1891
2362
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
1892
2363
|
}
|
|
2364
|
+
|
|
1893
2365
|
.placeholder-shown\:text-textColors-secondaryColor:placeholder-shown {
|
|
1894
2366
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
1895
2367
|
}
|
|
2368
|
+
|
|
1896
2369
|
.focus-within\:\!border-stateColors-error:focus-within {
|
|
1897
2370
|
border-color: var(--stateColors-error) !important;
|
|
1898
2371
|
}
|
|
2372
|
+
|
|
1899
2373
|
.focus-within\:border-coreColors-brandColorPrimary:focus-within {
|
|
1900
2374
|
border-color: var(--coreColors-brandColorPrimary);
|
|
1901
2375
|
}
|
|
2376
|
+
|
|
1902
2377
|
.hover\:h-\[18px\]:hover {
|
|
1903
2378
|
height: 18px;
|
|
1904
2379
|
}
|
|
2380
|
+
|
|
1905
2381
|
.hover\:w-\[18px\]:hover {
|
|
1906
2382
|
width: 18px;
|
|
1907
2383
|
}
|
|
2384
|
+
|
|
1908
2385
|
.hover\:bg-accent:hover {
|
|
1909
2386
|
background-color: hsl(var(--accent));
|
|
1910
2387
|
}
|
|
2388
|
+
|
|
1911
2389
|
.hover\:bg-muted:hover {
|
|
1912
2390
|
background-color: hsl(var(--muted));
|
|
1913
2391
|
}
|
|
2392
|
+
|
|
1914
2393
|
.hover\:bg-secondary:hover {
|
|
1915
2394
|
background-color: hsl(var(--secondary));
|
|
1916
2395
|
}
|
|
2396
|
+
|
|
1917
2397
|
.hover\:text-accent-foreground:hover {
|
|
1918
2398
|
color: hsl(var(--accent-foreground));
|
|
1919
2399
|
}
|
|
2400
|
+
|
|
1920
2401
|
.hover\:text-foreground:hover {
|
|
1921
2402
|
color: hsl(var(--foreground));
|
|
1922
2403
|
}
|
|
2404
|
+
|
|
1923
2405
|
.hover\:text-muted-foreground:hover {
|
|
1924
2406
|
color: hsl(var(--muted-foreground));
|
|
1925
2407
|
}
|
|
2408
|
+
|
|
1926
2409
|
.hover\:underline:hover {
|
|
1927
2410
|
text-decoration-line: underline;
|
|
1928
2411
|
}
|
|
2412
|
+
|
|
1929
2413
|
.hover\:\!line-through:hover {
|
|
1930
2414
|
text-decoration-line: line-through !important;
|
|
1931
2415
|
}
|
|
2416
|
+
|
|
1932
2417
|
.focus\:border-coreColors-brandColorPrimary:focus {
|
|
1933
2418
|
border-color: var(--coreColors-brandColorPrimary);
|
|
1934
2419
|
}
|
|
2420
|
+
|
|
1935
2421
|
.focus\:border-stateColors-error:focus {
|
|
1936
2422
|
border-color: var(--stateColors-error);
|
|
1937
2423
|
}
|
|
2424
|
+
|
|
1938
2425
|
.focus\:bg-stateColors-skeleton:focus {
|
|
1939
2426
|
background-color: var(--stateColors-skeleton);
|
|
1940
2427
|
}
|
|
2428
|
+
|
|
1941
2429
|
.focus\:opacity-100:focus {
|
|
1942
2430
|
opacity: 1;
|
|
1943
2431
|
}
|
|
2432
|
+
|
|
1944
2433
|
.focus\:outline-none:focus {
|
|
1945
2434
|
outline: 2px solid transparent;
|
|
1946
2435
|
outline-offset: 2px;
|
|
1947
2436
|
}
|
|
2437
|
+
|
|
1948
2438
|
.focus\:ring-2:focus {
|
|
1949
2439
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1950
2440
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1951
2441
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1952
2442
|
}
|
|
2443
|
+
|
|
1953
2444
|
.focus\:ring-ring:focus {
|
|
1954
2445
|
--tw-ring-color: hsl(var(--ring));
|
|
1955
2446
|
}
|
|
2447
|
+
|
|
1956
2448
|
.focus\:ring-offset-2:focus {
|
|
1957
2449
|
--tw-ring-offset-width: 2px;
|
|
1958
2450
|
}
|
|
2451
|
+
|
|
1959
2452
|
.focus-visible\:outline-none:focus-visible {
|
|
1960
2453
|
outline: 2px solid transparent;
|
|
1961
2454
|
outline-offset: 2px;
|
|
1962
2455
|
}
|
|
2456
|
+
|
|
1963
2457
|
.focus-visible\:ring-0:focus-visible {
|
|
1964
2458
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1965
2459
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1966
2460
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1967
2461
|
}
|
|
2462
|
+
|
|
1968
2463
|
.focus-visible\:ring-2:focus-visible {
|
|
1969
2464
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1970
2465
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1971
2466
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1972
2467
|
}
|
|
2468
|
+
|
|
1973
2469
|
.focus-visible\:ring-ring:focus-visible {
|
|
1974
2470
|
--tw-ring-color: hsl(var(--ring));
|
|
1975
2471
|
}
|
|
2472
|
+
|
|
1976
2473
|
.focus-visible\:ring-offset-2:focus-visible {
|
|
1977
2474
|
--tw-ring-offset-width: 2px;
|
|
1978
2475
|
}
|
|
2476
|
+
|
|
1979
2477
|
.focus-visible\:ring-offset-background:focus-visible {
|
|
1980
2478
|
--tw-ring-offset-color: hsl(var(--background));
|
|
1981
2479
|
}
|
|
2480
|
+
|
|
1982
2481
|
.active\:text-coreColors-brandColorPrimary:active {
|
|
1983
2482
|
color: var(--coreColors-brandColorPrimary);
|
|
1984
2483
|
}
|
|
2484
|
+
|
|
1985
2485
|
.active\:opacity-70:active {
|
|
1986
2486
|
opacity: 0.7;
|
|
1987
2487
|
}
|
|
2488
|
+
|
|
1988
2489
|
.active\:outline-coreColors-brandColorPrimary:active {
|
|
1989
2490
|
outline-color: var(--coreColors-brandColorPrimary);
|
|
1990
2491
|
}
|
|
2492
|
+
|
|
1991
2493
|
.disabled\:pointer-events-none:disabled {
|
|
1992
2494
|
pointer-events: none;
|
|
1993
2495
|
}
|
|
2496
|
+
|
|
1994
2497
|
.disabled\:cursor-not-allowed:disabled {
|
|
1995
2498
|
cursor: not-allowed;
|
|
1996
2499
|
}
|
|
2500
|
+
|
|
1997
2501
|
.disabled\:border-stateColors-disabled:disabled {
|
|
1998
2502
|
border-color: var(--stateColors-disabled);
|
|
1999
2503
|
}
|
|
2504
|
+
|
|
2000
2505
|
.disabled\:bg-buttonColors-secondaryFill:disabled {
|
|
2001
2506
|
background-color: var(--buttonColors-secondaryFill);
|
|
2002
2507
|
}
|
|
2508
|
+
|
|
2003
2509
|
.disabled\:bg-stateColors-disabled:disabled {
|
|
2004
2510
|
background-color: var(--stateColors-disabled);
|
|
2005
2511
|
}
|
|
2512
|
+
|
|
2006
2513
|
.disabled\:bg-transparent:disabled {
|
|
2007
2514
|
background-color: transparent;
|
|
2008
2515
|
}
|
|
2516
|
+
|
|
2009
2517
|
.disabled\:text-stateColors-disabled:disabled {
|
|
2010
2518
|
color: var(--stateColors-disabled);
|
|
2011
2519
|
}
|
|
2520
|
+
|
|
2012
2521
|
.disabled\:opacity-50:disabled {
|
|
2013
2522
|
opacity: 0.5;
|
|
2014
2523
|
}
|
|
2524
|
+
|
|
2015
2525
|
.disabled\:opacity-70:disabled {
|
|
2016
2526
|
opacity: 0.7;
|
|
2017
2527
|
}
|
|
2528
|
+
|
|
2018
2529
|
.group:hover .group-hover\:opacity-100 {
|
|
2019
2530
|
opacity: 1;
|
|
2020
2531
|
}
|
|
2532
|
+
|
|
2021
2533
|
.group:active .group-active\:text-coreColors-brandColorPrimary {
|
|
2022
2534
|
color: var(--coreColors-brandColorPrimary);
|
|
2023
2535
|
}
|
|
2536
|
+
|
|
2024
2537
|
.group:disabled .group-disabled\:text-stateColors-disabled {
|
|
2025
2538
|
color: var(--stateColors-disabled);
|
|
2026
2539
|
}
|
|
2540
|
+
|
|
2027
2541
|
.group.destructive .group-\[\.destructive\]\:border-muted\/40 {
|
|
2028
2542
|
border-color: hsl(var(--muted) / 0.4);
|
|
2029
2543
|
}
|
|
2544
|
+
|
|
2030
2545
|
.group.destructive .group-\[\.destructive\]\:text-red-300 {
|
|
2031
2546
|
--tw-text-opacity: 1;
|
|
2032
2547
|
color: rgb(252 165 165 / var(--tw-text-opacity));
|
|
2033
2548
|
}
|
|
2549
|
+
|
|
2034
2550
|
.group.destructive .group-\[\.destructive\]\:hover\:border-destructive\/30:hover {
|
|
2035
2551
|
border-color: hsl(var(--destructive) / 0.3);
|
|
2036
2552
|
}
|
|
2553
|
+
|
|
2037
2554
|
.group.destructive .group-\[\.destructive\]\:hover\:bg-destructive:hover {
|
|
2038
2555
|
background-color: hsl(var(--destructive));
|
|
2039
2556
|
}
|
|
2557
|
+
|
|
2040
2558
|
.group.destructive .group-\[\.destructive\]\:hover\:text-destructive-foreground:hover {
|
|
2041
2559
|
color: hsl(var(--destructive-foreground));
|
|
2042
2560
|
}
|
|
2561
|
+
|
|
2043
2562
|
.group.destructive .group-\[\.destructive\]\:hover\:text-red-50:hover {
|
|
2044
2563
|
--tw-text-opacity: 1;
|
|
2045
2564
|
color: rgb(254 242 242 / var(--tw-text-opacity));
|
|
2046
2565
|
}
|
|
2566
|
+
|
|
2047
2567
|
.group.destructive .group-\[\.destructive\]\:focus\:ring-destructive:focus {
|
|
2048
2568
|
--tw-ring-color: hsl(var(--destructive));
|
|
2049
2569
|
}
|
|
2570
|
+
|
|
2050
2571
|
.group.destructive .group-\[\.destructive\]\:focus\:ring-red-400:focus {
|
|
2051
2572
|
--tw-ring-opacity: 1;
|
|
2052
2573
|
--tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity));
|
|
2053
2574
|
}
|
|
2575
|
+
|
|
2054
2576
|
.group.destructive .group-\[\.destructive\]\:focus\:ring-offset-red-600:focus {
|
|
2055
2577
|
--tw-ring-offset-color: #dc2626;
|
|
2056
2578
|
}
|
|
2579
|
+
|
|
2057
2580
|
.peer:-moz-placeholder-shown ~ .peer-placeholder-shown\:opacity-0 {
|
|
2058
2581
|
opacity: 0;
|
|
2059
2582
|
}
|
|
2583
|
+
|
|
2060
2584
|
.peer:placeholder-shown ~ .peer-placeholder-shown\:opacity-0 {
|
|
2061
2585
|
opacity: 0;
|
|
2062
2586
|
}
|
|
2587
|
+
|
|
2063
2588
|
.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
|
|
2064
2589
|
cursor: not-allowed;
|
|
2065
2590
|
}
|
|
2591
|
+
|
|
2066
2592
|
.peer:disabled ~ .peer-disabled\:opacity-70 {
|
|
2067
2593
|
opacity: 0.7;
|
|
2068
2594
|
}
|
|
2595
|
+
|
|
2069
2596
|
.data-\[disabled\]\:pointer-events-none[data-disabled] {
|
|
2070
2597
|
pointer-events: none;
|
|
2071
2598
|
}
|
|
2599
|
+
|
|
2072
2600
|
.data-\[state\=checked\]\:translate-x-6[data-state=checked] {
|
|
2073
2601
|
--tw-translate-x: 1.5rem;
|
|
2074
2602
|
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));
|
|
2075
2603
|
}
|
|
2604
|
+
|
|
2076
2605
|
.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked] {
|
|
2077
2606
|
--tw-translate-x: 0px;
|
|
2078
2607
|
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));
|
|
2079
2608
|
}
|
|
2609
|
+
|
|
2080
2610
|
.data-\[swipe\=cancel\]\:translate-x-0[data-swipe=cancel] {
|
|
2081
2611
|
--tw-translate-x: 0px;
|
|
2082
2612
|
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));
|
|
2083
2613
|
}
|
|
2614
|
+
|
|
2084
2615
|
.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe=end] {
|
|
2085
2616
|
--tw-translate-x: var(--radix-toast-swipe-end-x);
|
|
2086
2617
|
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));
|
|
2087
2618
|
}
|
|
2619
|
+
|
|
2088
2620
|
.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe=move] {
|
|
2089
2621
|
--tw-translate-x: var(--radix-toast-swipe-move-x);
|
|
2090
2622
|
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));
|
|
2091
2623
|
}
|
|
2092
|
-
@keyframes accordion-up {
|
|
2093
2624
|
|
|
2625
|
+
@keyframes accordion-up {
|
|
2094
2626
|
from {
|
|
2095
2627
|
height: var(--radix-accordion-content-height);
|
|
2096
2628
|
}
|
|
@@ -2099,11 +2631,12 @@ video {
|
|
|
2099
2631
|
height: 0;
|
|
2100
2632
|
}
|
|
2101
2633
|
}
|
|
2634
|
+
|
|
2102
2635
|
.data-\[state\=closed\]\:animate-accordion-up[data-state=closed] {
|
|
2103
2636
|
animation: accordion-up 0.2s ease-out;
|
|
2104
2637
|
}
|
|
2105
|
-
@keyframes accordion-down {
|
|
2106
2638
|
|
|
2639
|
+
@keyframes accordion-down {
|
|
2107
2640
|
from {
|
|
2108
2641
|
height: 0;
|
|
2109
2642
|
}
|
|
@@ -2112,36 +2645,47 @@ video {
|
|
|
2112
2645
|
height: var(--radix-accordion-content-height);
|
|
2113
2646
|
}
|
|
2114
2647
|
}
|
|
2648
|
+
|
|
2115
2649
|
.data-\[state\=open\]\:animate-accordion-down[data-state=open] {
|
|
2116
2650
|
animation: accordion-down 0.2s ease-out;
|
|
2117
2651
|
}
|
|
2652
|
+
|
|
2118
2653
|
.data-\[state\=checked\]\:bg-stateColors-success[data-state=checked] {
|
|
2119
2654
|
background-color: var(--stateColors-success);
|
|
2120
2655
|
}
|
|
2656
|
+
|
|
2121
2657
|
.data-\[state\=on\]\:bg-accent[data-state=on] {
|
|
2122
2658
|
background-color: hsl(var(--accent));
|
|
2123
2659
|
}
|
|
2660
|
+
|
|
2124
2661
|
.data-\[state\=unchecked\]\:bg-stateColors-disabled[data-state=unchecked] {
|
|
2125
2662
|
background-color: var(--stateColors-disabled);
|
|
2126
2663
|
}
|
|
2664
|
+
|
|
2127
2665
|
.data-\[icon\=true\]\:pr-10[data-icon=true] {
|
|
2128
2666
|
padding-right: 2.5rem;
|
|
2129
2667
|
}
|
|
2668
|
+
|
|
2130
2669
|
.data-\[error\=true\]\:text-stateColors-error[data-error=true] {
|
|
2131
2670
|
color: var(--stateColors-error);
|
|
2132
2671
|
}
|
|
2672
|
+
|
|
2133
2673
|
.data-\[state\=on\]\:text-accent-foreground[data-state=on] {
|
|
2134
2674
|
color: hsl(var(--accent-foreground));
|
|
2135
2675
|
}
|
|
2676
|
+
|
|
2136
2677
|
.data-\[disabled\]\:opacity-50[data-disabled] {
|
|
2137
2678
|
opacity: 0.5;
|
|
2138
2679
|
}
|
|
2680
|
+
|
|
2139
2681
|
.data-\[swipe\=move\]\:transition-none[data-swipe=move] {
|
|
2140
2682
|
transition-property: none;
|
|
2141
2683
|
}
|
|
2684
|
+
|
|
2142
2685
|
.data-\[state\=open\]\:duration-500[data-state=open] {
|
|
2143
2686
|
transition-duration: 500ms;
|
|
2144
2687
|
}
|
|
2688
|
+
|
|
2145
2689
|
.data-\[state\=open\]\:animate-in[data-state=open] {
|
|
2146
2690
|
animation-name: enter;
|
|
2147
2691
|
animation-duration: 150ms;
|
|
@@ -2151,6 +2695,7 @@ video {
|
|
|
2151
2695
|
--tw-enter-translate-x: initial;
|
|
2152
2696
|
--tw-enter-translate-y: initial;
|
|
2153
2697
|
}
|
|
2698
|
+
|
|
2154
2699
|
.data-\[state\=closed\]\:animate-out[data-state=closed] {
|
|
2155
2700
|
animation-name: exit;
|
|
2156
2701
|
animation-duration: 150ms;
|
|
@@ -2160,6 +2705,7 @@ video {
|
|
|
2160
2705
|
--tw-exit-translate-x: initial;
|
|
2161
2706
|
--tw-exit-translate-y: initial;
|
|
2162
2707
|
}
|
|
2708
|
+
|
|
2163
2709
|
.data-\[swipe\=end\]\:animate-out[data-swipe=end] {
|
|
2164
2710
|
animation-name: exit;
|
|
2165
2711
|
animation-duration: 150ms;
|
|
@@ -2169,53 +2715,68 @@ video {
|
|
|
2169
2715
|
--tw-exit-translate-x: initial;
|
|
2170
2716
|
--tw-exit-translate-y: initial;
|
|
2171
2717
|
}
|
|
2718
|
+
|
|
2172
2719
|
.data-\[state\=closed\]\:fade-out-0[data-state=closed] {
|
|
2173
2720
|
--tw-exit-opacity: 0;
|
|
2174
2721
|
}
|
|
2722
|
+
|
|
2175
2723
|
.data-\[state\=open\]\:fade-in-0[data-state=open] {
|
|
2176
2724
|
--tw-enter-opacity: 0;
|
|
2177
2725
|
}
|
|
2726
|
+
|
|
2178
2727
|
.data-\[state\=closed\]\:zoom-out-95[data-state=closed] {
|
|
2179
2728
|
--tw-exit-scale: .95;
|
|
2180
2729
|
}
|
|
2730
|
+
|
|
2181
2731
|
.data-\[state\=open\]\:zoom-in-95[data-state=open] {
|
|
2182
2732
|
--tw-enter-scale: .95;
|
|
2183
2733
|
}
|
|
2734
|
+
|
|
2184
2735
|
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom] {
|
|
2185
2736
|
--tw-enter-translate-y: -0.5rem;
|
|
2186
2737
|
}
|
|
2738
|
+
|
|
2187
2739
|
.data-\[side\=left\]\:slide-in-from-right-2[data-side=left] {
|
|
2188
2740
|
--tw-enter-translate-x: 0.5rem;
|
|
2189
2741
|
}
|
|
2742
|
+
|
|
2190
2743
|
.data-\[side\=right\]\:slide-in-from-left-2[data-side=right] {
|
|
2191
2744
|
--tw-enter-translate-x: -0.5rem;
|
|
2192
2745
|
}
|
|
2746
|
+
|
|
2193
2747
|
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top] {
|
|
2194
2748
|
--tw-enter-translate-y: 0.5rem;
|
|
2195
2749
|
}
|
|
2750
|
+
|
|
2196
2751
|
.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state=closed] {
|
|
2197
2752
|
--tw-exit-translate-x: -50%;
|
|
2198
2753
|
}
|
|
2754
|
+
|
|
2199
2755
|
.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state=closed] {
|
|
2200
2756
|
--tw-exit-translate-y: -48%;
|
|
2201
2757
|
}
|
|
2758
|
+
|
|
2202
2759
|
.data-\[state\=closed\]\:slide-out-to-top-full[data-state=closed] {
|
|
2203
2760
|
--tw-exit-translate-y: -100%;
|
|
2204
2761
|
}
|
|
2762
|
+
|
|
2205
2763
|
.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state=open] {
|
|
2206
2764
|
--tw-enter-translate-x: -50%;
|
|
2207
2765
|
}
|
|
2766
|
+
|
|
2208
2767
|
.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state=open] {
|
|
2209
2768
|
--tw-enter-translate-y: -48%;
|
|
2210
2769
|
}
|
|
2770
|
+
|
|
2211
2771
|
.data-\[state\=open\]\:slide-in-from-top-full[data-state=open] {
|
|
2212
2772
|
--tw-enter-translate-y: -100%;
|
|
2213
2773
|
}
|
|
2774
|
+
|
|
2214
2775
|
.data-\[state\=open\]\:duration-500[data-state=open] {
|
|
2215
2776
|
animation-duration: 500ms;
|
|
2216
2777
|
}
|
|
2217
|
-
@media (min-width: 640px) {
|
|
2218
2778
|
|
|
2779
|
+
@media (min-width: 640px) {
|
|
2219
2780
|
.sm\:mt-0 {
|
|
2220
2781
|
margin-top: 0px;
|
|
2221
2782
|
}
|
|
@@ -2242,68 +2803,89 @@ video {
|
|
|
2242
2803
|
text-align: left;
|
|
2243
2804
|
}
|
|
2244
2805
|
}
|
|
2806
|
+
|
|
2245
2807
|
.\[\&\+label\]\:text-stateColors-error+label {
|
|
2246
2808
|
color: var(--stateColors-error);
|
|
2247
2809
|
}
|
|
2810
|
+
|
|
2248
2811
|
.\[\&\>div\>button\]\:border-coreColors-brandColorPrimary>div>button {
|
|
2249
2812
|
border-color: var(--coreColors-brandColorPrimary);
|
|
2250
2813
|
}
|
|
2814
|
+
|
|
2251
2815
|
.\[\&\>div\]\:w-full>div {
|
|
2252
2816
|
width: 100%;
|
|
2253
2817
|
}
|
|
2818
|
+
|
|
2254
2819
|
.\[\&\>p\]\:text-stateColors-disabled>p {
|
|
2255
2820
|
color: var(--stateColors-disabled);
|
|
2256
2821
|
}
|
|
2822
|
+
|
|
2257
2823
|
.\[\&\>p\]\:text-textColors-primaryColor>p {
|
|
2258
2824
|
color: var(--textColors-primaryColor, #121212ff);
|
|
2259
2825
|
}
|
|
2826
|
+
|
|
2260
2827
|
.\[\&\>p\]\:text-textColors-secondaryColor>p {
|
|
2261
2828
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
2262
2829
|
}
|
|
2830
|
+
|
|
2263
2831
|
.\[\&\>p\]\:\!line-through>p {
|
|
2264
2832
|
text-decoration-line: line-through !important;
|
|
2265
2833
|
}
|
|
2834
|
+
|
|
2266
2835
|
.\[\&\[data-state\=open\]\]\:outline-coreColors-brandColorPrimary[data-state=open] {
|
|
2267
2836
|
outline-color: var(--coreColors-brandColorPrimary);
|
|
2268
2837
|
}
|
|
2838
|
+
|
|
2269
2839
|
.\[\&\[data-state\=open\]_\.chevron-icon\]\:rotate-180[data-state=open] .chevron-icon {
|
|
2270
2840
|
--tw-rotate: 180deg;
|
|
2271
2841
|
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));
|
|
2272
2842
|
}
|
|
2843
|
+
|
|
2273
2844
|
.\[\&\[data-state\=open\]_\.label\]\:text-coreColors-brandColorPrimary[data-state=open] .label {
|
|
2274
2845
|
color: var(--coreColors-brandColorPrimary);
|
|
2275
2846
|
}
|
|
2847
|
+
|
|
2276
2848
|
.\[\&\[data-state\=open\]_\.label\]\:text-textColors-secondaryColor[data-state=open] .label {
|
|
2277
2849
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
2278
2850
|
}
|
|
2851
|
+
|
|
2279
2852
|
.\[\&\[data-state\=open\]_svg\]\:rotate-180[data-state=open] svg {
|
|
2280
2853
|
--tw-rotate: 180deg;
|
|
2281
2854
|
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));
|
|
2282
2855
|
}
|
|
2856
|
+
|
|
2283
2857
|
.\[\&_\*\]\:text-coreColors-pageColor * {
|
|
2284
2858
|
color: var(--coreColors-pageColor);
|
|
2285
2859
|
}
|
|
2860
|
+
|
|
2286
2861
|
.\[\&_\*\]\:text-stateColors-error * {
|
|
2287
2862
|
color: var(--stateColors-error);
|
|
2288
2863
|
}
|
|
2864
|
+
|
|
2289
2865
|
.\[\&_\*\]\:text-textColors-primaryColor * {
|
|
2290
2866
|
color: var(--textColors-primaryColor, #121212ff);
|
|
2291
2867
|
}
|
|
2868
|
+
|
|
2292
2869
|
.\[\&_\*\]\:placeholder\:text-stateColors-error *::-moz-placeholder {
|
|
2293
2870
|
color: var(--stateColors-error);
|
|
2294
2871
|
}
|
|
2872
|
+
|
|
2295
2873
|
.\[\&_\*\]\:placeholder\:text-stateColors-error *::placeholder {
|
|
2296
2874
|
color: var(--stateColors-error);
|
|
2297
2875
|
}
|
|
2876
|
+
|
|
2298
2877
|
.\[\&_label\]\:focus-within\:\!text-stateColors-error:focus-within label {
|
|
2299
2878
|
color: var(--stateColors-error) !important;
|
|
2300
2879
|
}
|
|
2880
|
+
|
|
2301
2881
|
.\[\&_label\]\:focus-within\:text-coreColors-brandColorPrimary:focus-within label {
|
|
2302
2882
|
color: var(--coreColors-brandColorPrimary);
|
|
2303
2883
|
}
|
|
2884
|
+
|
|
2304
2885
|
.\[\&_p\]\:text-stateColors-disabled p {
|
|
2305
2886
|
color: var(--stateColors-disabled);
|
|
2306
2887
|
}
|
|
2888
|
+
|
|
2307
2889
|
.active\:\[\&_svg\]\:text-stateColors-favorites svg:active {
|
|
2308
2890
|
color: var(--stateColors-favorites);
|
|
2309
2891
|
}
|