@tapcart/mobile-components 0.5.2 → 0.5.4
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.js +2 -2
- package/dist/components/hooks/use-scroll-direction.d.ts +1 -1
- package/dist/components/hooks/use-scroll-direction.d.ts.map +1 -1
- package/dist/components/hooks/use-scroll-direction.js +25 -19
- package/dist/components/templates/product-card.d.ts +33 -0
- package/dist/components/templates/product-card.d.ts.map +1 -0
- package/dist/components/templates/product-card.js +42 -0
- package/dist/components/templates/product-grid.d.ts +14 -0
- package/dist/components/templates/product-grid.d.ts.map +1 -0
- package/dist/components/templates/product-grid.js +22 -0
- package/dist/components/ui/Input/input.d.ts +1 -1
- package/dist/components/ui/Input/types.d.ts +2 -2
- package/dist/components/ui/Input/useInput.d.ts +1 -1
- package/dist/components/ui/badge.d.ts +4 -1
- package/dist/components/ui/badge.d.ts.map +1 -1
- package/dist/components/ui/badge.js +25 -4
- package/dist/components/ui/button.js +2 -2
- package/dist/components/ui/color-swatch.d.ts +25 -0
- package/dist/components/ui/color-swatch.d.ts.map +1 -0
- package/dist/components/ui/color-swatch.js +44 -0
- package/dist/components/ui/drawer.d.ts.map +1 -1
- package/dist/components/ui/drawer.js +1 -1
- package/dist/components/ui/favorite.d.ts +2 -0
- package/dist/components/ui/favorite.d.ts.map +1 -1
- package/dist/components/ui/favorite.js +11 -2
- package/dist/components/ui/icon.d.ts +5 -2
- package/dist/components/ui/icon.d.ts.map +1 -1
- package/dist/components/ui/icon.js +20 -4
- package/dist/components/ui/price.d.ts +2 -1
- package/dist/components/ui/price.d.ts.map +1 -1
- package/dist/components/ui/price.js +17 -5
- package/dist/components/ui/product-card.d.ts.map +1 -1
- package/dist/components/ui/product-card.js +17 -16
- package/dist/components/ui/selectors.d.ts +4 -2
- package/dist/components/ui/selectors.d.ts.map +1 -1
- package/dist/components/ui/selectors.js +5 -5
- package/dist/components/ui/text.d.ts +2 -1
- package/dist/components/ui/text.d.ts.map +1 -1
- package/dist/components/ui/text.js +3 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/styles.css +694 -189
- package/package.json +2 -1
- package/dist/components/ThemeProvider.d.ts +0 -3
- package/dist/components/ThemeProvider.d.ts.map +0 -1
- package/dist/components/ThemeProvider.js +0 -18
- package/dist/components/ThemeToggle.d.ts +0 -2
- package/dist/components/ThemeToggle.d.ts.map +0 -1
- package/dist/components/ThemeToggle.js +0 -8
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
|
+
}
|
|
399
440
|
|
|
400
|
-
|
|
401
|
-
|
|
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
|
+
}
|
|
402
539
|
|
|
403
|
-
|
|
404
|
-
|
|
540
|
+
.textarea-component::placeholder {
|
|
541
|
+
white-space: nowrap;
|
|
542
|
+
overflow: hidden;
|
|
543
|
+
text-overflow: ellipsis;
|
|
544
|
+
}
|
|
405
545
|
|
|
406
|
-
|
|
407
|
-
--card-foreground: 222.2 47.4% 11.2%;
|
|
546
|
+
/*.dark {*/
|
|
408
547
|
|
|
409
|
-
|
|
410
|
-
--input: 214.3 31.8% 91.4%;
|
|
548
|
+
/* --background: 222.2 84% 4.9%;*/
|
|
411
549
|
|
|
412
|
-
|
|
413
|
-
--primary-foreground: 210 40% 98%;
|
|
550
|
+
/* --foreground: 210 40% 98%;*/
|
|
414
551
|
|
|
415
|
-
|
|
416
|
-
--secondary-foreground: 222.2 47.4% 11.2%;
|
|
552
|
+
/* --card: 222.2 84% 4.9%;*/
|
|
417
553
|
|
|
418
|
-
|
|
419
|
-
--accent-foreground: 222.2 47.4% 11.2%;
|
|
554
|
+
/* --card-foreground: 210 40% 98%;*/
|
|
420
555
|
|
|
421
|
-
|
|
422
|
-
--destructive-foreground: 210 40% 98%;
|
|
556
|
+
/* --popover: 222.2 84% 4.9%;*/
|
|
423
557
|
|
|
424
|
-
|
|
558
|
+
/* --popover-foreground: 210 40% 98%;*/
|
|
425
559
|
|
|
426
|
-
|
|
560
|
+
/* --primary: 210 40% 98%;*/
|
|
427
561
|
|
|
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;
|
|
562
|
+
/* --primary-foreground: 222.2 47.4% 11.2%;*/
|
|
434
563
|
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
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
|
-
}
|
|
564
|
+
/* --secondary: 217.2 32.6% 17.5%;*/
|
|
565
|
+
|
|
566
|
+
/* --secondary-foreground: 210 40% 98%;*/
|
|
567
|
+
|
|
568
|
+
/* --muted: 217.2 32.6% 17.5%;*/
|
|
569
|
+
|
|
570
|
+
/* --muted-foreground: 215 20.2% 65.1%;*/
|
|
571
|
+
|
|
572
|
+
/* --accent: 217.2 32.6% 17.5%;*/
|
|
507
573
|
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
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
|
-
* {
|
|
574
|
+
/* --accent-foreground: 210 40% 98%;*/
|
|
575
|
+
|
|
576
|
+
/* --destructive: 0 62.8% 30.6%;*/
|
|
577
|
+
|
|
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,1221 +720,1663 @@ 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
|
.-mt-4 {
|
|
798
904
|
margin-top: -1rem;
|
|
799
905
|
}
|
|
906
|
+
|
|
800
907
|
.mb-2 {
|
|
801
908
|
margin-bottom: 0.5rem;
|
|
802
909
|
}
|
|
910
|
+
|
|
803
911
|
.mb-4 {
|
|
804
912
|
margin-bottom: 1rem;
|
|
805
913
|
}
|
|
914
|
+
|
|
806
915
|
.mb-6 {
|
|
807
916
|
margin-bottom: 1.5rem;
|
|
808
917
|
}
|
|
918
|
+
|
|
809
919
|
.ml-2 {
|
|
810
920
|
margin-left: 0.5rem;
|
|
811
921
|
}
|
|
922
|
+
|
|
923
|
+
.ml-auto {
|
|
924
|
+
margin-left: auto;
|
|
925
|
+
}
|
|
926
|
+
|
|
812
927
|
.mr-2 {
|
|
813
928
|
margin-right: 0.5rem;
|
|
814
929
|
}
|
|
930
|
+
|
|
931
|
+
.mr-auto {
|
|
932
|
+
margin-right: auto;
|
|
933
|
+
}
|
|
934
|
+
|
|
815
935
|
.mt-1 {
|
|
816
936
|
margin-top: 0.25rem;
|
|
817
937
|
}
|
|
938
|
+
|
|
818
939
|
.mt-2 {
|
|
819
940
|
margin-top: 0.5rem;
|
|
820
941
|
}
|
|
942
|
+
|
|
821
943
|
.mt-3 {
|
|
822
944
|
margin-top: 0.75rem;
|
|
823
945
|
}
|
|
946
|
+
|
|
824
947
|
.mt-auto {
|
|
825
948
|
margin-top: auto;
|
|
826
949
|
}
|
|
950
|
+
|
|
827
951
|
.line-clamp-1 {
|
|
828
952
|
overflow: hidden;
|
|
829
953
|
display: -webkit-box;
|
|
830
954
|
-webkit-box-orient: vertical;
|
|
831
955
|
-webkit-line-clamp: 1;
|
|
832
956
|
}
|
|
957
|
+
|
|
833
958
|
.line-clamp-2 {
|
|
834
959
|
overflow: hidden;
|
|
835
960
|
display: -webkit-box;
|
|
836
961
|
-webkit-box-orient: vertical;
|
|
837
962
|
-webkit-line-clamp: 2;
|
|
838
963
|
}
|
|
964
|
+
|
|
839
965
|
.block {
|
|
840
966
|
display: block;
|
|
841
967
|
}
|
|
968
|
+
|
|
842
969
|
.inline {
|
|
843
970
|
display: inline;
|
|
844
971
|
}
|
|
972
|
+
|
|
845
973
|
.flex {
|
|
846
974
|
display: flex;
|
|
847
975
|
}
|
|
976
|
+
|
|
848
977
|
.inline-flex {
|
|
849
978
|
display: inline-flex;
|
|
850
979
|
}
|
|
980
|
+
|
|
851
981
|
.grid {
|
|
852
982
|
display: grid;
|
|
853
983
|
}
|
|
984
|
+
|
|
854
985
|
.aspect-productImages {
|
|
855
986
|
aspect-ratio: var(--productImage-aspectRatio);
|
|
856
987
|
}
|
|
988
|
+
|
|
857
989
|
.aspect-square {
|
|
858
990
|
aspect-ratio: 1 / 1;
|
|
859
991
|
}
|
|
992
|
+
|
|
860
993
|
.h-0 {
|
|
861
994
|
height: 0px;
|
|
862
995
|
}
|
|
996
|
+
|
|
863
997
|
.h-0\.5 {
|
|
864
998
|
height: 0.125rem;
|
|
865
999
|
}
|
|
1000
|
+
|
|
866
1001
|
.h-1 {
|
|
867
1002
|
height: 0.25rem;
|
|
868
1003
|
}
|
|
1004
|
+
|
|
869
1005
|
.h-1\.5 {
|
|
870
1006
|
height: 0.375rem;
|
|
871
1007
|
}
|
|
1008
|
+
|
|
872
1009
|
.h-10 {
|
|
873
1010
|
height: 2.5rem;
|
|
874
1011
|
}
|
|
1012
|
+
|
|
875
1013
|
.h-11 {
|
|
876
1014
|
height: 2.75rem;
|
|
877
1015
|
}
|
|
1016
|
+
|
|
878
1017
|
.h-14 {
|
|
879
1018
|
height: 3.5rem;
|
|
880
1019
|
}
|
|
1020
|
+
|
|
881
1021
|
.h-2 {
|
|
882
1022
|
height: 0.5rem;
|
|
883
1023
|
}
|
|
1024
|
+
|
|
884
1025
|
.h-2\.5 {
|
|
885
1026
|
height: 0.625rem;
|
|
886
1027
|
}
|
|
1028
|
+
|
|
887
1029
|
.h-4 {
|
|
888
1030
|
height: 1rem;
|
|
889
1031
|
}
|
|
1032
|
+
|
|
890
1033
|
.h-5 {
|
|
891
1034
|
height: 1.25rem;
|
|
892
1035
|
}
|
|
1036
|
+
|
|
893
1037
|
.h-6 {
|
|
894
1038
|
height: 1.5rem;
|
|
895
1039
|
}
|
|
1040
|
+
|
|
896
1041
|
.h-64 {
|
|
897
1042
|
height: 16rem;
|
|
898
1043
|
}
|
|
1044
|
+
|
|
899
1045
|
.h-7 {
|
|
900
1046
|
height: 1.75rem;
|
|
901
1047
|
}
|
|
1048
|
+
|
|
902
1049
|
.h-8 {
|
|
903
1050
|
height: 2rem;
|
|
904
1051
|
}
|
|
1052
|
+
|
|
905
1053
|
.h-9 {
|
|
906
1054
|
height: 2.25rem;
|
|
907
1055
|
}
|
|
1056
|
+
|
|
908
1057
|
.h-\[1px\] {
|
|
909
1058
|
height: 1px;
|
|
910
1059
|
}
|
|
1060
|
+
|
|
1061
|
+
.h-\[22px\] {
|
|
1062
|
+
height: 22px;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
911
1065
|
.h-\[2px\] {
|
|
912
1066
|
height: 2px;
|
|
913
1067
|
}
|
|
1068
|
+
|
|
914
1069
|
.h-\[42px\] {
|
|
915
1070
|
height: 42px;
|
|
916
1071
|
}
|
|
1072
|
+
|
|
917
1073
|
.h-\[4px\] {
|
|
918
1074
|
height: 4px;
|
|
919
1075
|
}
|
|
1076
|
+
|
|
920
1077
|
.h-auto {
|
|
921
1078
|
height: auto;
|
|
922
1079
|
}
|
|
1080
|
+
|
|
923
1081
|
.h-full {
|
|
924
1082
|
height: 100%;
|
|
925
1083
|
}
|
|
1084
|
+
|
|
926
1085
|
.max-h-\[240px\] {
|
|
927
1086
|
max-height: 240px;
|
|
928
1087
|
}
|
|
1088
|
+
|
|
929
1089
|
.max-h-screen {
|
|
930
1090
|
max-height: 100vh;
|
|
931
1091
|
}
|
|
1092
|
+
|
|
932
1093
|
.min-h-\[24px\] {
|
|
933
1094
|
min-height: 24px;
|
|
934
1095
|
}
|
|
1096
|
+
|
|
935
1097
|
.w-1 {
|
|
936
1098
|
width: 0.25rem;
|
|
937
1099
|
}
|
|
1100
|
+
|
|
938
1101
|
.w-1\.5 {
|
|
939
1102
|
width: 0.375rem;
|
|
940
1103
|
}
|
|
1104
|
+
|
|
941
1105
|
.w-1\/2 {
|
|
942
1106
|
width: 50%;
|
|
943
1107
|
}
|
|
1108
|
+
|
|
944
1109
|
.w-10 {
|
|
945
1110
|
width: 2.5rem;
|
|
946
1111
|
}
|
|
1112
|
+
|
|
947
1113
|
.w-12 {
|
|
948
1114
|
width: 3rem;
|
|
949
1115
|
}
|
|
1116
|
+
|
|
950
1117
|
.w-14 {
|
|
951
1118
|
width: 3.5rem;
|
|
952
1119
|
}
|
|
1120
|
+
|
|
953
1121
|
.w-16 {
|
|
954
1122
|
width: 4rem;
|
|
955
1123
|
}
|
|
1124
|
+
|
|
956
1125
|
.w-2 {
|
|
957
1126
|
width: 0.5rem;
|
|
958
1127
|
}
|
|
1128
|
+
|
|
959
1129
|
.w-2\.5 {
|
|
960
1130
|
width: 0.625rem;
|
|
961
1131
|
}
|
|
1132
|
+
|
|
962
1133
|
.w-4 {
|
|
963
1134
|
width: 1rem;
|
|
964
1135
|
}
|
|
1136
|
+
|
|
965
1137
|
.w-5 {
|
|
966
1138
|
width: 1.25rem;
|
|
967
1139
|
}
|
|
1140
|
+
|
|
968
1141
|
.w-6 {
|
|
969
1142
|
width: 1.5rem;
|
|
970
1143
|
}
|
|
1144
|
+
|
|
971
1145
|
.w-7 {
|
|
972
1146
|
width: 1.75rem;
|
|
973
1147
|
}
|
|
1148
|
+
|
|
974
1149
|
.w-8 {
|
|
975
1150
|
width: 2rem;
|
|
976
1151
|
}
|
|
1152
|
+
|
|
977
1153
|
.w-\[1px\] {
|
|
978
1154
|
width: 1px;
|
|
979
1155
|
}
|
|
1156
|
+
|
|
1157
|
+
.w-\[22px\] {
|
|
1158
|
+
width: 22px;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
980
1161
|
.w-\[40px\] {
|
|
981
1162
|
width: 40px;
|
|
982
1163
|
}
|
|
1164
|
+
|
|
983
1165
|
.w-auto {
|
|
984
1166
|
width: auto;
|
|
985
1167
|
}
|
|
1168
|
+
|
|
986
1169
|
.w-full {
|
|
987
1170
|
width: 100%;
|
|
988
1171
|
}
|
|
1172
|
+
|
|
989
1173
|
.w-max {
|
|
990
1174
|
width: -moz-max-content;
|
|
991
1175
|
width: max-content;
|
|
992
1176
|
}
|
|
1177
|
+
|
|
993
1178
|
.min-w-0 {
|
|
994
1179
|
min-width: 0px;
|
|
995
1180
|
}
|
|
1181
|
+
|
|
996
1182
|
.min-w-\[8rem\] {
|
|
997
1183
|
min-width: 8rem;
|
|
998
1184
|
}
|
|
1185
|
+
|
|
1186
|
+
.min-w-\[fit-content\] {
|
|
1187
|
+
min-width: -moz-fit-content;
|
|
1188
|
+
min-width: fit-content;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
999
1191
|
.max-w-full {
|
|
1000
1192
|
max-width: 100%;
|
|
1001
1193
|
}
|
|
1194
|
+
|
|
1002
1195
|
.max-w-lg {
|
|
1003
1196
|
max-width: 32rem;
|
|
1004
1197
|
}
|
|
1198
|
+
|
|
1005
1199
|
.max-w-xs {
|
|
1006
1200
|
max-width: 20rem;
|
|
1007
1201
|
}
|
|
1202
|
+
|
|
1008
1203
|
.flex-1 {
|
|
1009
1204
|
flex: 1 1 0%;
|
|
1010
1205
|
}
|
|
1206
|
+
|
|
1011
1207
|
.flex-shrink-0 {
|
|
1012
1208
|
flex-shrink: 0;
|
|
1013
1209
|
}
|
|
1210
|
+
|
|
1014
1211
|
.shrink-0 {
|
|
1015
1212
|
flex-shrink: 0;
|
|
1016
1213
|
}
|
|
1214
|
+
|
|
1017
1215
|
.flex-grow {
|
|
1018
1216
|
flex-grow: 1;
|
|
1019
1217
|
}
|
|
1218
|
+
|
|
1020
1219
|
.grow {
|
|
1021
1220
|
flex-grow: 1;
|
|
1022
1221
|
}
|
|
1222
|
+
|
|
1023
1223
|
.grow-0 {
|
|
1024
1224
|
flex-grow: 0;
|
|
1025
1225
|
}
|
|
1226
|
+
|
|
1026
1227
|
.basis-full {
|
|
1027
1228
|
flex-basis: 100%;
|
|
1028
1229
|
}
|
|
1230
|
+
|
|
1029
1231
|
.origin-\[0\] {
|
|
1030
1232
|
transform-origin: 0;
|
|
1031
1233
|
}
|
|
1234
|
+
|
|
1032
1235
|
.-translate-x-1\/2 {
|
|
1033
1236
|
--tw-translate-x: -50%;
|
|
1034
1237
|
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));
|
|
1035
1238
|
}
|
|
1239
|
+
|
|
1036
1240
|
.-translate-y-1\/2 {
|
|
1037
1241
|
--tw-translate-y: -50%;
|
|
1038
1242
|
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));
|
|
1039
1243
|
}
|
|
1244
|
+
|
|
1040
1245
|
.translate-x-\[-50\%\] {
|
|
1041
1246
|
--tw-translate-x: -50%;
|
|
1042
1247
|
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));
|
|
1043
1248
|
}
|
|
1249
|
+
|
|
1044
1250
|
.translate-y-\[-50\%\] {
|
|
1045
1251
|
--tw-translate-y: -50%;
|
|
1046
1252
|
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));
|
|
1047
1253
|
}
|
|
1254
|
+
|
|
1255
|
+
.rotate-45 {
|
|
1256
|
+
--tw-rotate: 45deg;
|
|
1257
|
+
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));
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1048
1260
|
.rotate-90 {
|
|
1049
1261
|
--tw-rotate: 90deg;
|
|
1050
1262
|
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));
|
|
1051
1263
|
}
|
|
1264
|
+
|
|
1052
1265
|
.transform {
|
|
1053
1266
|
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));
|
|
1054
1267
|
}
|
|
1055
|
-
@keyframes pulse {
|
|
1056
1268
|
|
|
1269
|
+
@keyframes pulse {
|
|
1057
1270
|
50% {
|
|
1058
1271
|
opacity: .5;
|
|
1059
1272
|
}
|
|
1060
1273
|
}
|
|
1274
|
+
|
|
1061
1275
|
.animate-pulse {
|
|
1062
1276
|
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1063
1277
|
}
|
|
1064
|
-
@keyframes spin {
|
|
1065
1278
|
|
|
1279
|
+
@keyframes spin {
|
|
1066
1280
|
to {
|
|
1067
1281
|
transform: rotate(360deg);
|
|
1068
1282
|
}
|
|
1069
1283
|
}
|
|
1284
|
+
|
|
1070
1285
|
.animate-spin {
|
|
1071
1286
|
animation: spin 1s linear infinite;
|
|
1072
1287
|
}
|
|
1288
|
+
|
|
1073
1289
|
.cursor-default {
|
|
1074
1290
|
cursor: default;
|
|
1075
1291
|
}
|
|
1292
|
+
|
|
1076
1293
|
.cursor-pointer {
|
|
1077
1294
|
cursor: pointer;
|
|
1078
1295
|
}
|
|
1296
|
+
|
|
1079
1297
|
.touch-none {
|
|
1080
1298
|
touch-action: none;
|
|
1081
1299
|
}
|
|
1300
|
+
|
|
1082
1301
|
.select-none {
|
|
1083
1302
|
-webkit-user-select: none;
|
|
1084
1303
|
-moz-user-select: none;
|
|
1085
1304
|
user-select: none;
|
|
1086
1305
|
}
|
|
1306
|
+
|
|
1087
1307
|
.resize-none {
|
|
1088
1308
|
resize: none;
|
|
1089
1309
|
}
|
|
1310
|
+
|
|
1090
1311
|
.resize {
|
|
1091
1312
|
resize: both;
|
|
1092
1313
|
}
|
|
1314
|
+
|
|
1093
1315
|
.columns-1 {
|
|
1094
1316
|
-moz-columns: 1;
|
|
1095
1317
|
columns: 1;
|
|
1096
1318
|
}
|
|
1319
|
+
|
|
1097
1320
|
.columns-2 {
|
|
1098
1321
|
-moz-columns: 2;
|
|
1099
1322
|
columns: 2;
|
|
1100
1323
|
}
|
|
1324
|
+
|
|
1101
1325
|
.columns-3 {
|
|
1102
1326
|
-moz-columns: 3;
|
|
1103
1327
|
columns: 3;
|
|
1104
1328
|
}
|
|
1329
|
+
|
|
1330
|
+
.grid-flow-col {
|
|
1331
|
+
grid-auto-flow: column;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1105
1334
|
.grid-cols-1 {
|
|
1106
1335
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1107
1336
|
}
|
|
1337
|
+
|
|
1108
1338
|
.grid-cols-2 {
|
|
1109
1339
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1110
1340
|
}
|
|
1341
|
+
|
|
1111
1342
|
.grid-cols-3 {
|
|
1112
1343
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1113
1344
|
}
|
|
1345
|
+
|
|
1114
1346
|
.grid-cols-4 {
|
|
1115
1347
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1116
1348
|
}
|
|
1349
|
+
|
|
1117
1350
|
.grid-cols-\[auto\2c auto\2c 1fr\] {
|
|
1118
1351
|
grid-template-columns: auto auto 1fr;
|
|
1119
1352
|
}
|
|
1353
|
+
|
|
1120
1354
|
.flex-row {
|
|
1121
1355
|
flex-direction: row;
|
|
1122
1356
|
}
|
|
1357
|
+
|
|
1123
1358
|
.flex-col {
|
|
1124
1359
|
flex-direction: column;
|
|
1125
1360
|
}
|
|
1361
|
+
|
|
1126
1362
|
.flex-col-reverse {
|
|
1127
1363
|
flex-direction: column-reverse;
|
|
1128
1364
|
}
|
|
1365
|
+
|
|
1129
1366
|
.flex-wrap {
|
|
1130
1367
|
flex-wrap: wrap;
|
|
1131
1368
|
}
|
|
1369
|
+
|
|
1132
1370
|
.items-start {
|
|
1133
1371
|
align-items: flex-start;
|
|
1134
1372
|
}
|
|
1373
|
+
|
|
1135
1374
|
.items-center {
|
|
1136
1375
|
align-items: center;
|
|
1137
1376
|
}
|
|
1377
|
+
|
|
1138
1378
|
.justify-start {
|
|
1139
1379
|
justify-content: flex-start;
|
|
1140
1380
|
}
|
|
1381
|
+
|
|
1141
1382
|
.justify-end {
|
|
1142
1383
|
justify-content: flex-end;
|
|
1143
1384
|
}
|
|
1385
|
+
|
|
1144
1386
|
.justify-center {
|
|
1145
1387
|
justify-content: center;
|
|
1146
1388
|
}
|
|
1389
|
+
|
|
1147
1390
|
.justify-between {
|
|
1148
1391
|
justify-content: space-between;
|
|
1149
1392
|
}
|
|
1393
|
+
|
|
1150
1394
|
.gap-0 {
|
|
1151
1395
|
gap: 0px;
|
|
1152
1396
|
}
|
|
1397
|
+
|
|
1153
1398
|
.gap-1 {
|
|
1154
1399
|
gap: 0.25rem;
|
|
1155
1400
|
}
|
|
1401
|
+
|
|
1156
1402
|
.gap-2 {
|
|
1157
1403
|
gap: 0.5rem;
|
|
1158
1404
|
}
|
|
1405
|
+
|
|
1159
1406
|
.gap-4 {
|
|
1160
1407
|
gap: 1rem;
|
|
1161
1408
|
}
|
|
1409
|
+
|
|
1410
|
+
.gap-x-2 {
|
|
1411
|
+
-moz-column-gap: 0.5rem;
|
|
1412
|
+
column-gap: 0.5rem;
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1162
1415
|
.gap-x-\[7px\] {
|
|
1163
1416
|
-moz-column-gap: 7px;
|
|
1164
1417
|
column-gap: 7px;
|
|
1165
1418
|
}
|
|
1419
|
+
|
|
1420
|
+
.gap-y-2 {
|
|
1421
|
+
row-gap: 0.5rem;
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1166
1424
|
.gap-y-4 {
|
|
1167
1425
|
row-gap: 1rem;
|
|
1168
1426
|
}
|
|
1427
|
+
|
|
1169
1428
|
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1170
1429
|
--tw-space-y-reverse: 0;
|
|
1171
1430
|
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1172
1431
|
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
1173
1432
|
}
|
|
1433
|
+
|
|
1174
1434
|
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1175
1435
|
--tw-space-y-reverse: 0;
|
|
1176
1436
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1177
1437
|
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1178
1438
|
}
|
|
1439
|
+
|
|
1179
1440
|
.self-start {
|
|
1180
1441
|
align-self: flex-start;
|
|
1181
1442
|
}
|
|
1443
|
+
|
|
1182
1444
|
.self-center {
|
|
1183
1445
|
align-self: center;
|
|
1184
1446
|
}
|
|
1447
|
+
|
|
1185
1448
|
.overflow-hidden {
|
|
1186
1449
|
overflow: hidden;
|
|
1187
1450
|
}
|
|
1451
|
+
|
|
1188
1452
|
.overflow-scroll {
|
|
1189
1453
|
overflow: scroll;
|
|
1190
1454
|
}
|
|
1455
|
+
|
|
1191
1456
|
.overflow-x-auto {
|
|
1192
1457
|
overflow-x: auto;
|
|
1193
1458
|
}
|
|
1459
|
+
|
|
1194
1460
|
.overflow-y-auto {
|
|
1195
1461
|
overflow-y: auto;
|
|
1196
1462
|
}
|
|
1463
|
+
|
|
1197
1464
|
.overflow-y-hidden {
|
|
1198
1465
|
overflow-y: hidden;
|
|
1199
1466
|
}
|
|
1467
|
+
|
|
1200
1468
|
.truncate {
|
|
1201
1469
|
overflow: hidden;
|
|
1202
1470
|
text-overflow: ellipsis;
|
|
1203
1471
|
white-space: nowrap;
|
|
1204
1472
|
}
|
|
1473
|
+
|
|
1205
1474
|
.text-ellipsis {
|
|
1206
1475
|
text-overflow: ellipsis;
|
|
1207
1476
|
}
|
|
1477
|
+
|
|
1208
1478
|
.whitespace-nowrap {
|
|
1209
1479
|
white-space: nowrap;
|
|
1210
1480
|
}
|
|
1481
|
+
|
|
1211
1482
|
.rounded {
|
|
1212
1483
|
border-radius: 0.25rem;
|
|
1213
1484
|
}
|
|
1485
|
+
|
|
1486
|
+
.rounded-2xl {
|
|
1487
|
+
border-radius: 1rem;
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1214
1490
|
.rounded-\[4px\] {
|
|
1215
1491
|
border-radius: 4px;
|
|
1216
1492
|
}
|
|
1493
|
+
|
|
1217
1494
|
.rounded-\[inherit\] {
|
|
1218
1495
|
border-radius: inherit;
|
|
1219
1496
|
}
|
|
1497
|
+
|
|
1220
1498
|
.rounded-full {
|
|
1221
1499
|
border-radius: 9999px;
|
|
1222
1500
|
}
|
|
1501
|
+
|
|
1223
1502
|
.rounded-md {
|
|
1224
1503
|
border-radius: calc(var(--radius) - 2px);
|
|
1225
1504
|
}
|
|
1505
|
+
|
|
1226
1506
|
.rounded-none {
|
|
1227
1507
|
border-radius: 0px;
|
|
1228
1508
|
}
|
|
1509
|
+
|
|
1229
1510
|
.rounded-sm {
|
|
1230
1511
|
border-radius: calc(var(--radius) - 4px);
|
|
1231
1512
|
}
|
|
1513
|
+
|
|
1232
1514
|
.rounded-b-lg {
|
|
1233
1515
|
border-bottom-right-radius: var(--radius);
|
|
1234
1516
|
border-bottom-left-radius: var(--radius);
|
|
1235
1517
|
}
|
|
1518
|
+
|
|
1236
1519
|
.rounded-t-2xl {
|
|
1237
1520
|
border-top-left-radius: 1rem;
|
|
1238
1521
|
border-top-right-radius: 1rem;
|
|
1239
1522
|
}
|
|
1523
|
+
|
|
1240
1524
|
.rounded-bl {
|
|
1241
1525
|
border-bottom-left-radius: 0.25rem;
|
|
1242
1526
|
}
|
|
1527
|
+
|
|
1528
|
+
.rounded-bl-2xl {
|
|
1529
|
+
border-bottom-left-radius: 1rem;
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1243
1532
|
.rounded-br {
|
|
1244
1533
|
border-bottom-right-radius: 0.25rem;
|
|
1245
1534
|
}
|
|
1535
|
+
|
|
1536
|
+
.rounded-br-2xl {
|
|
1537
|
+
border-bottom-right-radius: 1rem;
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1246
1540
|
.rounded-tl {
|
|
1247
1541
|
border-top-left-radius: 0.25rem;
|
|
1248
1542
|
}
|
|
1543
|
+
|
|
1544
|
+
.rounded-tl-2xl {
|
|
1545
|
+
border-top-left-radius: 1rem;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1249
1548
|
.rounded-tr {
|
|
1250
1549
|
border-top-right-radius: 0.25rem;
|
|
1251
1550
|
}
|
|
1551
|
+
|
|
1552
|
+
.rounded-tr-2xl {
|
|
1553
|
+
border-top-right-radius: 1rem;
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1252
1556
|
.border {
|
|
1253
1557
|
border-width: 1px;
|
|
1254
1558
|
}
|
|
1559
|
+
|
|
1255
1560
|
.border-0 {
|
|
1256
1561
|
border-width: 0px;
|
|
1257
1562
|
}
|
|
1563
|
+
|
|
1258
1564
|
.border-2 {
|
|
1259
1565
|
border-width: 2px;
|
|
1260
1566
|
}
|
|
1567
|
+
|
|
1261
1568
|
.border-b {
|
|
1262
1569
|
border-bottom-width: 1px;
|
|
1263
1570
|
}
|
|
1571
|
+
|
|
1264
1572
|
.border-l {
|
|
1265
1573
|
border-left-width: 1px;
|
|
1266
1574
|
}
|
|
1575
|
+
|
|
1267
1576
|
.border-t {
|
|
1268
1577
|
border-top-width: 1px;
|
|
1269
1578
|
}
|
|
1579
|
+
|
|
1270
1580
|
.border-none {
|
|
1271
1581
|
border-style: none;
|
|
1272
1582
|
}
|
|
1583
|
+
|
|
1273
1584
|
.\!border-stateColors-error {
|
|
1274
1585
|
border-color: var(--stateColors-error) !important;
|
|
1275
1586
|
}
|
|
1587
|
+
|
|
1276
1588
|
.border-black {
|
|
1277
1589
|
--tw-border-opacity: 1;
|
|
1278
1590
|
border-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
1279
1591
|
}
|
|
1592
|
+
|
|
1280
1593
|
.border-buttonColors-primaryOutlineColor {
|
|
1281
1594
|
border-color: var(--buttonColors-primaryOutlineColor);
|
|
1282
1595
|
}
|
|
1596
|
+
|
|
1283
1597
|
.border-buttonColors-secondaryOutlineColor {
|
|
1284
1598
|
border-color: var(--buttonColors-secondaryOutlineColor);
|
|
1285
1599
|
}
|
|
1600
|
+
|
|
1286
1601
|
.border-coreColors-brandColorPrimary {
|
|
1287
1602
|
border-color: var(--coreColors-brandColorPrimary);
|
|
1288
1603
|
}
|
|
1604
|
+
|
|
1289
1605
|
.border-coreColors-dividingLines {
|
|
1290
1606
|
border-color: var(--coreColors-dividingLines);
|
|
1291
1607
|
}
|
|
1608
|
+
|
|
1292
1609
|
.border-input {
|
|
1293
1610
|
border-color: hsl(var(--input));
|
|
1294
1611
|
}
|
|
1612
|
+
|
|
1295
1613
|
.border-stateColors-error {
|
|
1296
1614
|
border-color: var(--stateColors-error);
|
|
1297
1615
|
}
|
|
1616
|
+
|
|
1298
1617
|
.border-transparent {
|
|
1299
1618
|
border-color: transparent;
|
|
1300
1619
|
}
|
|
1620
|
+
|
|
1301
1621
|
.border-l-transparent {
|
|
1302
1622
|
border-left-color: transparent;
|
|
1303
1623
|
}
|
|
1624
|
+
|
|
1304
1625
|
.border-t-transparent {
|
|
1305
1626
|
border-top-color: transparent;
|
|
1306
1627
|
}
|
|
1628
|
+
|
|
1307
1629
|
.bg-\[\#612EFF\] {
|
|
1308
1630
|
--tw-bg-opacity: 1;
|
|
1309
1631
|
background-color: rgb(97 46 255 / var(--tw-bg-opacity));
|
|
1310
1632
|
}
|
|
1633
|
+
|
|
1311
1634
|
.bg-background {
|
|
1312
1635
|
background-color: hsl(var(--background));
|
|
1313
1636
|
}
|
|
1637
|
+
|
|
1314
1638
|
.bg-black\/80 {
|
|
1315
1639
|
background-color: rgb(0 0 0 / 0.8);
|
|
1316
1640
|
}
|
|
1641
|
+
|
|
1317
1642
|
.bg-border {
|
|
1318
1643
|
background-color: hsl(var(--border));
|
|
1319
1644
|
}
|
|
1645
|
+
|
|
1320
1646
|
.bg-buttonColors-primaryFill {
|
|
1321
1647
|
background-color: var(--buttonColors-primaryFill);
|
|
1322
1648
|
}
|
|
1649
|
+
|
|
1323
1650
|
.bg-buttonColors-secondaryFill {
|
|
1324
1651
|
background-color: var(--buttonColors-secondaryFill);
|
|
1325
1652
|
}
|
|
1653
|
+
|
|
1326
1654
|
.bg-coreColors-brandColorPrimary {
|
|
1327
1655
|
background-color: var(--coreColors-brandColorPrimary);
|
|
1328
1656
|
}
|
|
1657
|
+
|
|
1329
1658
|
.bg-coreColors-dividingLines {
|
|
1330
1659
|
background-color: var(--coreColors-dividingLines);
|
|
1331
1660
|
}
|
|
1661
|
+
|
|
1332
1662
|
.bg-coreColors-inputBackground {
|
|
1333
1663
|
background-color: var(--coreColors-inputBackground);
|
|
1334
1664
|
}
|
|
1665
|
+
|
|
1335
1666
|
.bg-coreColors-modalBackground {
|
|
1336
1667
|
background-color: var(--coreColors-modalBackground);
|
|
1337
1668
|
}
|
|
1669
|
+
|
|
1338
1670
|
.bg-coreColors-pageColor {
|
|
1339
1671
|
background-color: var(--coreColors-pageColor);
|
|
1340
1672
|
}
|
|
1673
|
+
|
|
1341
1674
|
.bg-productBadging-fill {
|
|
1342
1675
|
background-color: var(--productBadging-fill);
|
|
1343
1676
|
}
|
|
1677
|
+
|
|
1344
1678
|
.bg-stateColors-disabled {
|
|
1345
1679
|
background-color: var(--stateColors-disabled);
|
|
1346
1680
|
}
|
|
1681
|
+
|
|
1347
1682
|
.bg-stateColors-error {
|
|
1348
1683
|
background-color: var(--stateColors-error);
|
|
1349
1684
|
}
|
|
1685
|
+
|
|
1350
1686
|
.bg-stateColors-skeleton {
|
|
1351
1687
|
background-color: var(--stateColors-skeleton);
|
|
1352
1688
|
}
|
|
1689
|
+
|
|
1353
1690
|
.bg-stateColors-success {
|
|
1354
1691
|
background-color: var(--stateColors-success);
|
|
1355
1692
|
}
|
|
1693
|
+
|
|
1356
1694
|
.bg-stateColors-warning {
|
|
1357
1695
|
background-color: var(--stateColors-warning);
|
|
1358
1696
|
}
|
|
1697
|
+
|
|
1359
1698
|
.bg-transparent {
|
|
1360
1699
|
background-color: transparent;
|
|
1361
1700
|
}
|
|
1701
|
+
|
|
1362
1702
|
.bg-white {
|
|
1363
1703
|
--tw-bg-opacity: 1;
|
|
1364
1704
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1365
1705
|
}
|
|
1706
|
+
|
|
1366
1707
|
.bg-\[linear-gradient\(270deg\2c \#ffffff00_0\%\2c \#FFF_100\%\)\] {
|
|
1367
1708
|
background-image: linear-gradient(270deg,#ffffff00 0%,#FFF 100%);
|
|
1368
1709
|
}
|
|
1710
|
+
|
|
1369
1711
|
.bg-\[linear-gradient\(90deg\2c \#ffffff00_0\%\2c \#FFF_100\%\)\] {
|
|
1370
1712
|
background-image: linear-gradient(90deg,#ffffff00 0%,#FFF 100%);
|
|
1371
1713
|
}
|
|
1714
|
+
|
|
1372
1715
|
.bg-fade-left {
|
|
1373
1716
|
background-image: linear-gradient(to right, var(--coreColors-pageColor) 0%, #ffffff00 100%);;
|
|
1374
1717
|
}
|
|
1718
|
+
|
|
1375
1719
|
.bg-fade-right {
|
|
1376
1720
|
background-image: linear-gradient(to left, var(--coreColors-pageColor) 0%, #ffffff00 100%);;
|
|
1377
1721
|
}
|
|
1722
|
+
|
|
1723
|
+
.bg-contain {
|
|
1724
|
+
background-size: contain;
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1378
1727
|
.fill-current {
|
|
1379
1728
|
fill: currentColor;
|
|
1380
1729
|
}
|
|
1730
|
+
|
|
1381
1731
|
.p-0 {
|
|
1382
1732
|
padding: 0px;
|
|
1383
1733
|
}
|
|
1734
|
+
|
|
1384
1735
|
.p-1 {
|
|
1385
1736
|
padding: 0.25rem;
|
|
1386
1737
|
}
|
|
1738
|
+
|
|
1387
1739
|
.p-2 {
|
|
1388
1740
|
padding: 0.5rem;
|
|
1389
1741
|
}
|
|
1742
|
+
|
|
1390
1743
|
.p-3 {
|
|
1391
1744
|
padding: 0.75rem;
|
|
1392
1745
|
}
|
|
1746
|
+
|
|
1393
1747
|
.p-4 {
|
|
1394
1748
|
padding: 1rem;
|
|
1395
1749
|
}
|
|
1750
|
+
|
|
1396
1751
|
.p-6 {
|
|
1397
1752
|
padding: 1.5rem;
|
|
1398
1753
|
}
|
|
1754
|
+
|
|
1399
1755
|
.p-\[1px\] {
|
|
1400
1756
|
padding: 1px;
|
|
1401
1757
|
}
|
|
1758
|
+
|
|
1402
1759
|
.px-0 {
|
|
1403
1760
|
padding-left: 0px;
|
|
1404
1761
|
padding-right: 0px;
|
|
1405
1762
|
}
|
|
1763
|
+
|
|
1406
1764
|
.px-1 {
|
|
1407
1765
|
padding-left: 0.25rem;
|
|
1408
1766
|
padding-right: 0.25rem;
|
|
1409
1767
|
}
|
|
1768
|
+
|
|
1410
1769
|
.px-2 {
|
|
1411
1770
|
padding-left: 0.5rem;
|
|
1412
1771
|
padding-right: 0.5rem;
|
|
1413
1772
|
}
|
|
1773
|
+
|
|
1414
1774
|
.px-2\.5 {
|
|
1415
1775
|
padding-left: 0.625rem;
|
|
1416
1776
|
padding-right: 0.625rem;
|
|
1417
1777
|
}
|
|
1778
|
+
|
|
1418
1779
|
.px-3 {
|
|
1419
1780
|
padding-left: 0.75rem;
|
|
1420
1781
|
padding-right: 0.75rem;
|
|
1421
1782
|
}
|
|
1783
|
+
|
|
1422
1784
|
.px-4 {
|
|
1423
1785
|
padding-left: 1rem;
|
|
1424
1786
|
padding-right: 1rem;
|
|
1425
1787
|
}
|
|
1788
|
+
|
|
1426
1789
|
.px-5 {
|
|
1427
1790
|
padding-left: 1.25rem;
|
|
1428
1791
|
padding-right: 1.25rem;
|
|
1429
1792
|
}
|
|
1793
|
+
|
|
1430
1794
|
.px-8 {
|
|
1431
1795
|
padding-left: 2rem;
|
|
1432
1796
|
padding-right: 2rem;
|
|
1433
1797
|
}
|
|
1798
|
+
|
|
1434
1799
|
.px-\[16px\] {
|
|
1435
1800
|
padding-left: 16px;
|
|
1436
1801
|
padding-right: 16px;
|
|
1437
1802
|
}
|
|
1803
|
+
|
|
1438
1804
|
.py-1 {
|
|
1439
1805
|
padding-top: 0.25rem;
|
|
1440
1806
|
padding-bottom: 0.25rem;
|
|
1441
1807
|
}
|
|
1808
|
+
|
|
1442
1809
|
.py-2 {
|
|
1443
1810
|
padding-top: 0.5rem;
|
|
1444
1811
|
padding-bottom: 0.5rem;
|
|
1445
1812
|
}
|
|
1813
|
+
|
|
1446
1814
|
.py-3 {
|
|
1447
1815
|
padding-top: 0.75rem;
|
|
1448
1816
|
padding-bottom: 0.75rem;
|
|
1449
1817
|
}
|
|
1818
|
+
|
|
1450
1819
|
.py-4 {
|
|
1451
1820
|
padding-top: 1rem;
|
|
1452
1821
|
padding-bottom: 1rem;
|
|
1453
1822
|
}
|
|
1823
|
+
|
|
1454
1824
|
.pb-2 {
|
|
1455
1825
|
padding-bottom: 0.5rem;
|
|
1456
1826
|
}
|
|
1827
|
+
|
|
1457
1828
|
.pb-4 {
|
|
1458
1829
|
padding-bottom: 1rem;
|
|
1459
1830
|
}
|
|
1831
|
+
|
|
1460
1832
|
.pb-8 {
|
|
1461
1833
|
padding-bottom: 2rem;
|
|
1462
1834
|
}
|
|
1835
|
+
|
|
1463
1836
|
.pl-0 {
|
|
1464
1837
|
padding-left: 0px;
|
|
1465
1838
|
}
|
|
1839
|
+
|
|
1466
1840
|
.pl-10 {
|
|
1467
1841
|
padding-left: 2.5rem;
|
|
1468
1842
|
}
|
|
1843
|
+
|
|
1469
1844
|
.pl-2 {
|
|
1470
1845
|
padding-left: 0.5rem;
|
|
1471
1846
|
}
|
|
1847
|
+
|
|
1472
1848
|
.pl-4 {
|
|
1473
1849
|
padding-left: 1rem;
|
|
1474
1850
|
}
|
|
1851
|
+
|
|
1475
1852
|
.pl-8 {
|
|
1476
1853
|
padding-left: 2rem;
|
|
1477
1854
|
}
|
|
1855
|
+
|
|
1478
1856
|
.pr-1 {
|
|
1479
1857
|
padding-right: 0.25rem;
|
|
1480
1858
|
}
|
|
1859
|
+
|
|
1481
1860
|
.pr-2 {
|
|
1482
1861
|
padding-right: 0.5rem;
|
|
1483
1862
|
}
|
|
1863
|
+
|
|
1484
1864
|
.pr-4 {
|
|
1485
1865
|
padding-right: 1rem;
|
|
1486
1866
|
}
|
|
1867
|
+
|
|
1487
1868
|
.pt-0 {
|
|
1488
1869
|
padding-top: 0px;
|
|
1489
1870
|
}
|
|
1871
|
+
|
|
1490
1872
|
.pt-12 {
|
|
1491
1873
|
padding-top: 3rem;
|
|
1492
1874
|
}
|
|
1875
|
+
|
|
1493
1876
|
.pt-4 {
|
|
1494
1877
|
padding-top: 1rem;
|
|
1495
1878
|
}
|
|
1879
|
+
|
|
1496
1880
|
.pt-5 {
|
|
1497
1881
|
padding-top: 1.25rem;
|
|
1498
1882
|
}
|
|
1883
|
+
|
|
1499
1884
|
.pt-6 {
|
|
1500
1885
|
padding-top: 1.5rem;
|
|
1501
1886
|
}
|
|
1887
|
+
|
|
1502
1888
|
.text-left {
|
|
1503
1889
|
text-align: left;
|
|
1504
1890
|
}
|
|
1891
|
+
|
|
1505
1892
|
.text-center {
|
|
1506
1893
|
text-align: center;
|
|
1507
1894
|
}
|
|
1895
|
+
|
|
1508
1896
|
.text-right {
|
|
1509
1897
|
text-align: right;
|
|
1510
1898
|
}
|
|
1899
|
+
|
|
1511
1900
|
.text-start {
|
|
1512
1901
|
text-align: start;
|
|
1513
1902
|
}
|
|
1903
|
+
|
|
1514
1904
|
.align-top {
|
|
1515
1905
|
vertical-align: top;
|
|
1516
1906
|
}
|
|
1907
|
+
|
|
1517
1908
|
.font-fontMedium {
|
|
1518
1909
|
font-family: var(--fontMedium);
|
|
1519
1910
|
}
|
|
1911
|
+
|
|
1520
1912
|
.font-fontRegular {
|
|
1521
1913
|
font-family: var(--fontRegular);
|
|
1522
1914
|
}
|
|
1915
|
+
|
|
1523
1916
|
.text-\[10px\] {
|
|
1524
1917
|
font-size: 10px;
|
|
1525
1918
|
}
|
|
1919
|
+
|
|
1526
1920
|
.text-\[12px\] {
|
|
1527
1921
|
font-size: 12px;
|
|
1528
1922
|
}
|
|
1923
|
+
|
|
1529
1924
|
.text-\[15px\] {
|
|
1530
1925
|
font-size: 15px;
|
|
1531
1926
|
}
|
|
1927
|
+
|
|
1532
1928
|
.text-\[18px\] {
|
|
1533
1929
|
font-size: 18px;
|
|
1534
1930
|
}
|
|
1931
|
+
|
|
1535
1932
|
.text-\[23px\] {
|
|
1536
1933
|
font-size: 23px;
|
|
1537
1934
|
}
|
|
1935
|
+
|
|
1538
1936
|
.text-lg {
|
|
1539
1937
|
font-size: 1.125rem;
|
|
1540
1938
|
line-height: 1.75rem;
|
|
1541
1939
|
}
|
|
1940
|
+
|
|
1542
1941
|
.text-sm {
|
|
1543
1942
|
font-size: 0.875rem;
|
|
1544
1943
|
line-height: 1.25rem;
|
|
1545
1944
|
}
|
|
1945
|
+
|
|
1546
1946
|
.text-xs {
|
|
1547
1947
|
font-size: 0.75rem;
|
|
1548
1948
|
line-height: 1rem;
|
|
1549
1949
|
}
|
|
1950
|
+
|
|
1550
1951
|
.font-medium {
|
|
1551
1952
|
font-weight: 500;
|
|
1552
1953
|
}
|
|
1954
|
+
|
|
1553
1955
|
.font-normal {
|
|
1554
1956
|
font-weight: 400;
|
|
1555
1957
|
}
|
|
1958
|
+
|
|
1556
1959
|
.font-semibold {
|
|
1557
1960
|
font-weight: 600;
|
|
1558
1961
|
}
|
|
1962
|
+
|
|
1559
1963
|
.uppercase {
|
|
1560
1964
|
text-transform: uppercase;
|
|
1561
1965
|
}
|
|
1966
|
+
|
|
1562
1967
|
.leading-\[130\%\] {
|
|
1563
1968
|
line-height: 130%;
|
|
1564
1969
|
}
|
|
1970
|
+
|
|
1565
1971
|
.leading-\[13px\] {
|
|
1566
1972
|
line-height: 13px;
|
|
1567
1973
|
}
|
|
1974
|
+
|
|
1568
1975
|
.leading-\[160\%\] {
|
|
1569
1976
|
line-height: 160%;
|
|
1570
1977
|
}
|
|
1978
|
+
|
|
1571
1979
|
.leading-\[24px\] {
|
|
1572
1980
|
line-height: 24px;
|
|
1573
1981
|
}
|
|
1982
|
+
|
|
1574
1983
|
.leading-none {
|
|
1575
1984
|
line-height: 1;
|
|
1576
1985
|
}
|
|
1986
|
+
|
|
1577
1987
|
.text-black {
|
|
1578
1988
|
--tw-text-opacity: 1;
|
|
1579
1989
|
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
1580
1990
|
}
|
|
1991
|
+
|
|
1581
1992
|
.text-buttonColors-destructiveText {
|
|
1582
1993
|
color: var(--buttonColors-destructiveText);
|
|
1583
1994
|
}
|
|
1995
|
+
|
|
1584
1996
|
.text-buttonColors-disabled {
|
|
1585
1997
|
color: var(--buttonColors-disabled);
|
|
1586
1998
|
}
|
|
1999
|
+
|
|
1587
2000
|
.text-buttonColors-primaryFill {
|
|
1588
2001
|
color: var(--buttonColors-primaryFill);
|
|
1589
2002
|
}
|
|
2003
|
+
|
|
1590
2004
|
.text-buttonColors-primaryOutline {
|
|
1591
2005
|
color: var(--buttonColors-primaryOutline);
|
|
1592
2006
|
}
|
|
2007
|
+
|
|
1593
2008
|
.text-buttonColors-primaryOutlineColor {
|
|
1594
2009
|
color: var(--buttonColors-primaryOutlineColor);
|
|
1595
2010
|
}
|
|
2011
|
+
|
|
1596
2012
|
.text-buttonColors-primaryOutlineEnabled {
|
|
1597
2013
|
color: var(--buttonColors-primaryOutlineEnabled);
|
|
1598
2014
|
}
|
|
2015
|
+
|
|
1599
2016
|
.text-buttonColors-primaryShadow {
|
|
1600
2017
|
color: var(--buttonColors-primaryShadow);
|
|
1601
2018
|
}
|
|
2019
|
+
|
|
1602
2020
|
.text-buttonColors-primaryText {
|
|
1603
2021
|
color: var(--buttonColors-primaryText);
|
|
1604
2022
|
}
|
|
2023
|
+
|
|
1605
2024
|
.text-buttonColors-secondaryFill {
|
|
1606
2025
|
color: var(--buttonColors-secondaryFill);
|
|
1607
2026
|
}
|
|
2027
|
+
|
|
1608
2028
|
.text-buttonColors-secondaryOutline {
|
|
1609
2029
|
color: var(--buttonColors-secondaryOutline);
|
|
1610
2030
|
}
|
|
2031
|
+
|
|
1611
2032
|
.text-buttonColors-secondaryOutlineColor {
|
|
1612
2033
|
color: var(--buttonColors-secondaryOutlineColor);
|
|
1613
2034
|
}
|
|
2035
|
+
|
|
1614
2036
|
.text-buttonColors-secondaryOutlineEnabled {
|
|
1615
2037
|
color: var(--buttonColors-secondaryOutlineEnabled);
|
|
1616
2038
|
}
|
|
2039
|
+
|
|
1617
2040
|
.text-buttonColors-secondaryShadow {
|
|
1618
2041
|
color: var(--buttonColors-secondaryShadow);
|
|
1619
2042
|
}
|
|
2043
|
+
|
|
1620
2044
|
.text-buttonColors-secondaryText {
|
|
1621
2045
|
color: var(--buttonColors-secondaryText);
|
|
1622
2046
|
}
|
|
2047
|
+
|
|
1623
2048
|
.text-coreColors-brandColorPrimary {
|
|
1624
2049
|
color: var(--coreColors-brandColorPrimary);
|
|
1625
2050
|
}
|
|
2051
|
+
|
|
1626
2052
|
.text-coreColors-dividingLines {
|
|
1627
2053
|
color: var(--coreColors-dividingLines);
|
|
1628
2054
|
}
|
|
2055
|
+
|
|
1629
2056
|
.text-coreColors-headerBackground {
|
|
1630
2057
|
color: var(--coreColors-headerBackground);
|
|
1631
2058
|
}
|
|
2059
|
+
|
|
1632
2060
|
.text-coreColors-headerIcon {
|
|
1633
2061
|
color: var(--coreColors-headerIcon);
|
|
1634
2062
|
}
|
|
2063
|
+
|
|
1635
2064
|
.text-coreColors-inputBackground {
|
|
1636
2065
|
color: var(--coreColors-inputBackground);
|
|
1637
2066
|
}
|
|
2067
|
+
|
|
1638
2068
|
.text-coreColors-modalBackground {
|
|
1639
2069
|
color: var(--coreColors-modalBackground);
|
|
1640
2070
|
}
|
|
2071
|
+
|
|
1641
2072
|
.text-coreColors-pageColor {
|
|
1642
2073
|
color: var(--coreColors-pageColor);
|
|
1643
2074
|
}
|
|
2075
|
+
|
|
1644
2076
|
.text-coreColors-primaryIcon {
|
|
1645
2077
|
color: var(--coreColors-primaryIcon);
|
|
1646
2078
|
}
|
|
2079
|
+
|
|
1647
2080
|
.text-coreColors-secondaryIcon {
|
|
1648
2081
|
color: var(--coreColors-secondaryIcon);
|
|
1649
2082
|
}
|
|
2083
|
+
|
|
1650
2084
|
.text-coreColors-shadow {
|
|
1651
2085
|
color: var(--coreColors-shadow);
|
|
1652
2086
|
}
|
|
2087
|
+
|
|
1653
2088
|
.text-coreColors-shadowsEnabled {
|
|
1654
2089
|
color: var(--coreColors-shadowsEnabled);
|
|
1655
2090
|
}
|
|
2091
|
+
|
|
1656
2092
|
.text-coreColors-tabBar {
|
|
1657
2093
|
color: var(--coreColors-tabBar);
|
|
1658
2094
|
}
|
|
2095
|
+
|
|
1659
2096
|
.text-current {
|
|
1660
2097
|
color: currentColor;
|
|
1661
2098
|
}
|
|
2099
|
+
|
|
1662
2100
|
.text-foreground\/50 {
|
|
1663
2101
|
color: hsl(var(--foreground) / 0.5);
|
|
1664
2102
|
}
|
|
2103
|
+
|
|
1665
2104
|
.text-muted-foreground {
|
|
1666
2105
|
color: hsl(var(--muted-foreground));
|
|
1667
2106
|
}
|
|
2107
|
+
|
|
1668
2108
|
.text-productBadging-text {
|
|
1669
2109
|
color: var(--productBadging-text);
|
|
1670
2110
|
}
|
|
2111
|
+
|
|
1671
2112
|
.text-stateColors-disabled {
|
|
1672
2113
|
color: var(--stateColors-disabled);
|
|
1673
2114
|
}
|
|
2115
|
+
|
|
1674
2116
|
.text-stateColors-error {
|
|
1675
2117
|
color: var(--stateColors-error);
|
|
1676
2118
|
}
|
|
2119
|
+
|
|
1677
2120
|
.text-stateColors-favorites {
|
|
1678
2121
|
color: var(--stateColors-favorites);
|
|
1679
2122
|
}
|
|
2123
|
+
|
|
1680
2124
|
.text-stateColors-reviews {
|
|
1681
2125
|
color: var(--stateColors-reviews);
|
|
1682
2126
|
}
|
|
2127
|
+
|
|
1683
2128
|
.text-stateColors-skeleton {
|
|
1684
2129
|
color: var(--stateColors-skeleton);
|
|
1685
2130
|
}
|
|
2131
|
+
|
|
1686
2132
|
.text-stateColors-subscriptions {
|
|
1687
2133
|
color: var(--stateColors-subscriptions);
|
|
1688
2134
|
}
|
|
2135
|
+
|
|
1689
2136
|
.text-stateColors-success {
|
|
1690
2137
|
color: var(--stateColors-success);
|
|
1691
2138
|
}
|
|
2139
|
+
|
|
1692
2140
|
.text-stateColors-warning {
|
|
1693
2141
|
color: var(--stateColors-warning);
|
|
1694
2142
|
}
|
|
2143
|
+
|
|
1695
2144
|
.text-textColors-legalText {
|
|
1696
2145
|
color: var(--textColors-legalText);
|
|
1697
2146
|
}
|
|
2147
|
+
|
|
1698
2148
|
.text-textColors-pageTitle {
|
|
1699
2149
|
color: var(--textColors-pageTitle);
|
|
1700
2150
|
}
|
|
2151
|
+
|
|
1701
2152
|
.text-textColors-priceText {
|
|
1702
2153
|
color: var(--textColors-priceText);
|
|
1703
2154
|
}
|
|
2155
|
+
|
|
1704
2156
|
.text-textColors-primaryColor {
|
|
1705
2157
|
color: var(--textColors-primaryColor, #121212ff);
|
|
1706
2158
|
}
|
|
2159
|
+
|
|
1707
2160
|
.text-textColors-productTitle {
|
|
1708
2161
|
color: var(--textColors-productTitle);
|
|
1709
2162
|
}
|
|
2163
|
+
|
|
1710
2164
|
.text-textColors-salePriceText {
|
|
1711
2165
|
color: var(--textColors-salePriceText);
|
|
1712
2166
|
}
|
|
2167
|
+
|
|
1713
2168
|
.text-textColors-secondaryColor {
|
|
1714
2169
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
1715
2170
|
}
|
|
2171
|
+
|
|
1716
2172
|
.text-textColors-strikethroughPriceText {
|
|
1717
2173
|
color: var(--textColors-strikethroughPriceText);
|
|
1718
2174
|
}
|
|
2175
|
+
|
|
1719
2176
|
.line-through {
|
|
1720
2177
|
text-decoration-line: line-through;
|
|
1721
2178
|
}
|
|
2179
|
+
|
|
1722
2180
|
.underline-offset-4 {
|
|
1723
2181
|
text-underline-offset: 4px;
|
|
1724
2182
|
}
|
|
2183
|
+
|
|
1725
2184
|
.opacity-0 {
|
|
1726
2185
|
opacity: 0;
|
|
1727
2186
|
}
|
|
2187
|
+
|
|
1728
2188
|
.opacity-100 {
|
|
1729
2189
|
opacity: 1;
|
|
1730
2190
|
}
|
|
2191
|
+
|
|
1731
2192
|
.opacity-50 {
|
|
1732
2193
|
opacity: 0.5;
|
|
1733
2194
|
}
|
|
2195
|
+
|
|
1734
2196
|
.shadow-\[0_0_6px_0_rgba\(17\2c 17\2c 17\2c 0\.16\)\] {
|
|
1735
2197
|
--tw-shadow: 0 0 6px 0 rgba(17,17,17,0.16);
|
|
1736
2198
|
--tw-shadow-colored: 0 0 6px 0 var(--tw-shadow-color);
|
|
1737
2199
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1738
2200
|
}
|
|
2201
|
+
|
|
1739
2202
|
.shadow-lg {
|
|
1740
2203
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1741
2204
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
1742
2205
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1743
2206
|
}
|
|
2207
|
+
|
|
1744
2208
|
.shadow-primary {
|
|
1745
2209
|
--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);;
|
|
1746
2210
|
--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);;
|
|
1747
2211
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1748
2212
|
}
|
|
2213
|
+
|
|
1749
2214
|
.shadow-secondary {
|
|
1750
2215
|
--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);;
|
|
1751
2216
|
--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);;
|
|
1752
2217
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1753
2218
|
}
|
|
2219
|
+
|
|
1754
2220
|
.shadow-buttonColors-primaryShadow {
|
|
1755
2221
|
--tw-shadow-color: var(--buttonColors-primaryShadow);
|
|
1756
2222
|
--tw-shadow: var(--tw-shadow-colored);
|
|
1757
2223
|
}
|
|
2224
|
+
|
|
1758
2225
|
.shadow-primary {
|
|
1759
2226
|
--tw-shadow-color: hsl(var(--primary));
|
|
1760
2227
|
--tw-shadow: var(--tw-shadow-colored);
|
|
1761
2228
|
}
|
|
2229
|
+
|
|
1762
2230
|
.shadow-secondary {
|
|
1763
2231
|
--tw-shadow-color: hsl(var(--secondary));
|
|
1764
2232
|
--tw-shadow: var(--tw-shadow-colored);
|
|
1765
2233
|
}
|
|
2234
|
+
|
|
1766
2235
|
.outline-none {
|
|
1767
2236
|
outline: 2px solid transparent;
|
|
1768
2237
|
outline-offset: 2px;
|
|
1769
2238
|
}
|
|
2239
|
+
|
|
1770
2240
|
.outline {
|
|
1771
2241
|
outline-style: solid;
|
|
1772
2242
|
}
|
|
2243
|
+
|
|
1773
2244
|
.outline-0 {
|
|
1774
2245
|
outline-width: 0px;
|
|
1775
2246
|
}
|
|
2247
|
+
|
|
1776
2248
|
.outline-1 {
|
|
1777
2249
|
outline-width: 1px;
|
|
1778
2250
|
}
|
|
2251
|
+
|
|
1779
2252
|
.outline-coreColors-brandColorPrimary {
|
|
1780
2253
|
outline-color: var(--coreColors-brandColorPrimary);
|
|
1781
2254
|
}
|
|
2255
|
+
|
|
1782
2256
|
.outline-coreColors-dividingLines {
|
|
1783
2257
|
outline-color: var(--coreColors-dividingLines);
|
|
1784
2258
|
}
|
|
2259
|
+
|
|
1785
2260
|
.outline-stateColors-error {
|
|
1786
2261
|
outline-color: var(--stateColors-error);
|
|
1787
2262
|
}
|
|
2263
|
+
|
|
1788
2264
|
.outline-stateColors-skeleton {
|
|
1789
2265
|
outline-color: var(--stateColors-skeleton);
|
|
1790
2266
|
}
|
|
2267
|
+
|
|
1791
2268
|
.ring-0 {
|
|
1792
2269
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1793
2270
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1794
2271
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1795
2272
|
}
|
|
2273
|
+
|
|
1796
2274
|
.ring-offset-background {
|
|
1797
2275
|
--tw-ring-offset-color: hsl(var(--background));
|
|
1798
2276
|
}
|
|
2277
|
+
|
|
1799
2278
|
.drop-shadow-\[0_3px_1px_0_rgba\(0\2c 0\2c 0\2c 1\)\] {
|
|
1800
2279
|
--tw-drop-shadow: drop-shadow(0 3px 1px 0 rgba(0,0,0,1));
|
|
1801
2280
|
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);
|
|
1802
2281
|
}
|
|
2282
|
+
|
|
1803
2283
|
.filter {
|
|
1804
2284
|
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);
|
|
1805
2285
|
}
|
|
2286
|
+
|
|
1806
2287
|
.transition-all {
|
|
1807
2288
|
transition-property: all;
|
|
1808
2289
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1809
2290
|
transition-duration: 150ms;
|
|
1810
2291
|
}
|
|
2292
|
+
|
|
1811
2293
|
.transition-colors {
|
|
1812
2294
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
1813
2295
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1814
2296
|
transition-duration: 150ms;
|
|
1815
2297
|
}
|
|
2298
|
+
|
|
1816
2299
|
.transition-opacity {
|
|
1817
2300
|
transition-property: opacity;
|
|
1818
2301
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1819
2302
|
transition-duration: 150ms;
|
|
1820
2303
|
}
|
|
2304
|
+
|
|
1821
2305
|
.transition-transform {
|
|
1822
2306
|
transition-property: transform;
|
|
1823
2307
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1824
2308
|
transition-duration: 150ms;
|
|
1825
2309
|
}
|
|
2310
|
+
|
|
1826
2311
|
.duration-200 {
|
|
1827
2312
|
transition-duration: 200ms;
|
|
1828
2313
|
}
|
|
2314
|
+
|
|
1829
2315
|
.duration-300 {
|
|
1830
2316
|
transition-duration: 300ms;
|
|
1831
2317
|
}
|
|
2318
|
+
|
|
1832
2319
|
.duration-500 {
|
|
1833
2320
|
transition-duration: 500ms;
|
|
1834
2321
|
}
|
|
2322
|
+
|
|
1835
2323
|
.ease-in-out {
|
|
1836
2324
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1837
2325
|
}
|
|
1838
|
-
@keyframes enter {
|
|
1839
2326
|
|
|
2327
|
+
@keyframes enter {
|
|
1840
2328
|
from {
|
|
1841
2329
|
opacity: var(--tw-enter-opacity, 1);
|
|
1842
2330
|
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));
|
|
1843
2331
|
}
|
|
1844
2332
|
}
|
|
1845
|
-
@keyframes exit {
|
|
1846
2333
|
|
|
2334
|
+
@keyframes exit {
|
|
1847
2335
|
to {
|
|
1848
2336
|
opacity: var(--tw-exit-opacity, 1);
|
|
1849
2337
|
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));
|
|
1850
2338
|
}
|
|
1851
2339
|
}
|
|
2340
|
+
|
|
1852
2341
|
.duration-200 {
|
|
1853
2342
|
animation-duration: 200ms;
|
|
1854
2343
|
}
|
|
2344
|
+
|
|
1855
2345
|
.duration-300 {
|
|
1856
2346
|
animation-duration: 300ms;
|
|
1857
2347
|
}
|
|
2348
|
+
|
|
1858
2349
|
.duration-500 {
|
|
1859
2350
|
animation-duration: 500ms;
|
|
1860
2351
|
}
|
|
2352
|
+
|
|
1861
2353
|
.ease-in-out {
|
|
1862
2354
|
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1863
2355
|
}
|
|
2356
|
+
|
|
1864
2357
|
.container {
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
2358
|
+
padding-right: 16px;
|
|
2359
|
+
padding-left: 16px;
|
|
2360
|
+
}
|
|
2361
|
+
|
|
1868
2362
|
*:hover {
|
|
1869
|
-
|
|
1870
|
-
|
|
2363
|
+
text-decoration-line: unset !important;
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2366
|
+
.\[-ms-overflow-style\:none\] {
|
|
2367
|
+
-ms-overflow-style: none;
|
|
2368
|
+
}
|
|
2369
|
+
|
|
2370
|
+
.\[scrollbar-width\:none\] {
|
|
2371
|
+
scrollbar-width: none;
|
|
2372
|
+
}
|
|
1871
2373
|
|
|
1872
2374
|
body::-webkit-scrollbar {
|
|
1873
2375
|
display: none;
|
|
1874
|
-
-ms-overflow-style: none;
|
|
1875
|
-
|
|
2376
|
+
-ms-overflow-style: none;
|
|
2377
|
+
/* IE and Edge */
|
|
2378
|
+
scrollbar-width: none;
|
|
2379
|
+
/* Firefox */
|
|
1876
2380
|
}
|
|
1877
2381
|
|
|
1878
2382
|
.file\:border-0::file-selector-button {
|
|
@@ -2193,7 +2697,6 @@ body::-webkit-scrollbar {
|
|
|
2193
2697
|
}
|
|
2194
2698
|
|
|
2195
2699
|
@keyframes accordion-up {
|
|
2196
|
-
|
|
2197
2700
|
from {
|
|
2198
2701
|
height: var(--radix-accordion-content-height);
|
|
2199
2702
|
}
|
|
@@ -2208,7 +2711,6 @@ body::-webkit-scrollbar {
|
|
|
2208
2711
|
}
|
|
2209
2712
|
|
|
2210
2713
|
@keyframes accordion-down {
|
|
2211
|
-
|
|
2212
2714
|
from {
|
|
2213
2715
|
height: 0;
|
|
2214
2716
|
}
|
|
@@ -2349,7 +2851,6 @@ body::-webkit-scrollbar {
|
|
|
2349
2851
|
}
|
|
2350
2852
|
|
|
2351
2853
|
@media (min-width: 640px) {
|
|
2352
|
-
|
|
2353
2854
|
.sm\:mt-0 {
|
|
2354
2855
|
margin-top: 0px;
|
|
2355
2856
|
}
|
|
@@ -2381,6 +2882,10 @@ body::-webkit-scrollbar {
|
|
|
2381
2882
|
color: var(--stateColors-error);
|
|
2382
2883
|
}
|
|
2383
2884
|
|
|
2885
|
+
.\[\&\:\:-webkit-scrollbar\]\:hidden::-webkit-scrollbar {
|
|
2886
|
+
display: none;
|
|
2887
|
+
}
|
|
2888
|
+
|
|
2384
2889
|
.\[\&\>div\>button\]\:border-coreColors-brandColorPrimary>div>button {
|
|
2385
2890
|
border-color: var(--coreColors-brandColorPrimary);
|
|
2386
2891
|
}
|