@tapcart/mobile-components 0.6.21 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/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/input.d.ts +17 -0
- package/dist/components/ui/input.d.ts.map +1 -0
- package/dist/components/ui/input.js +35 -0
- package/dist/components/ui/price.js +1 -1
- package/dist/components/ui/product-grid.d.ts +15 -0
- package/dist/components/ui/product-grid.d.ts.map +1 -0
- package/dist/components/ui/product-grid.js +22 -0
- package/dist/components/ui/select.d.ts +14 -0
- package/dist/components/ui/select.d.ts.map +1 -0
- package/dist/components/ui/select.js +59 -0
- package/dist/components/ui/video.d.ts +3 -1
- package/dist/components/ui/video.d.ts.map +1 -1
- package/dist/components/ui/video.js +2 -2
- package/dist/styles.css +703 -243
- package/package.json +16 -16
- package/dist/components/hooks/use-click-outside.d.ts +0 -3
- package/dist/components/hooks/use-click-outside.d.ts.map +0 -1
- package/dist/components/hooks/use-click-outside.js +0 -16
- package/dist/components/hooks/use-outside-click.d.ts +0 -4
- package/dist/components/hooks/use-outside-click.d.ts.map +0 -1
- package/dist/components/hooks/use-outside-click.js +0 -16
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
|
-
--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
|
-
}
|
|
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%;*/
|
|
507
571
|
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
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
|
-
* {
|
|
572
|
+
/* --accent: 217.2 32.6% 17.5%;*/
|
|
573
|
+
|
|
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,1464 +720,1845 @@ 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
|
.sticky {
|
|
677
745
|
position: sticky;
|
|
678
746
|
}
|
|
747
|
+
|
|
679
748
|
.inset-0 {
|
|
680
749
|
inset: 0px;
|
|
681
750
|
}
|
|
751
|
+
|
|
682
752
|
.inset-x-0 {
|
|
683
753
|
left: 0px;
|
|
684
754
|
right: 0px;
|
|
685
755
|
}
|
|
756
|
+
|
|
686
757
|
.-bottom-12 {
|
|
687
758
|
bottom: -3rem;
|
|
688
759
|
}
|
|
760
|
+
|
|
689
761
|
.-left-12 {
|
|
690
762
|
left: -3rem;
|
|
691
763
|
}
|
|
764
|
+
|
|
692
765
|
.-right-12 {
|
|
693
766
|
right: -3rem;
|
|
694
767
|
}
|
|
768
|
+
|
|
695
769
|
.-top-12 {
|
|
696
770
|
top: -3rem;
|
|
697
771
|
}
|
|
772
|
+
|
|
698
773
|
.bottom-0 {
|
|
699
774
|
bottom: 0px;
|
|
700
775
|
}
|
|
776
|
+
|
|
701
777
|
.bottom-10 {
|
|
702
778
|
bottom: 2.5rem;
|
|
703
779
|
}
|
|
780
|
+
|
|
704
781
|
.bottom-2 {
|
|
705
782
|
bottom: 0.5rem;
|
|
706
783
|
}
|
|
784
|
+
|
|
707
785
|
.bottom-6 {
|
|
708
786
|
bottom: 1.5rem;
|
|
709
787
|
}
|
|
710
|
-
|
|
711
|
-
bottom: 110px;
|
|
712
|
-
}
|
|
788
|
+
|
|
713
789
|
.bottom-\[18px\] {
|
|
714
790
|
bottom: 18px;
|
|
715
791
|
}
|
|
716
|
-
|
|
717
|
-
bottom: 30px;
|
|
718
|
-
}
|
|
792
|
+
|
|
719
793
|
.bottom-\[58px\] {
|
|
720
794
|
bottom: 58px;
|
|
721
795
|
}
|
|
722
|
-
|
|
723
|
-
bottom: 70px;
|
|
724
|
-
}
|
|
796
|
+
|
|
725
797
|
.end-4 {
|
|
726
798
|
inset-inline-end: 1rem;
|
|
727
799
|
}
|
|
800
|
+
|
|
728
801
|
.left-0 {
|
|
729
802
|
left: 0px;
|
|
730
803
|
}
|
|
804
|
+
|
|
731
805
|
.left-1\/2 {
|
|
732
806
|
left: 50%;
|
|
733
807
|
}
|
|
734
|
-
|
|
735
|
-
left: 3.5rem;
|
|
736
|
-
}
|
|
808
|
+
|
|
737
809
|
.left-2 {
|
|
738
810
|
left: 0.5rem;
|
|
739
811
|
}
|
|
740
|
-
|
|
741
|
-
left: 6rem;
|
|
742
|
-
}
|
|
812
|
+
|
|
743
813
|
.left-4 {
|
|
744
814
|
left: 1rem;
|
|
745
815
|
}
|
|
816
|
+
|
|
746
817
|
.left-6 {
|
|
747
818
|
left: 1.5rem;
|
|
748
819
|
}
|
|
820
|
+
|
|
749
821
|
.left-\[50\%\] {
|
|
750
822
|
left: 50%;
|
|
751
823
|
}
|
|
824
|
+
|
|
752
825
|
.right-0 {
|
|
753
826
|
right: 0px;
|
|
754
827
|
}
|
|
828
|
+
|
|
755
829
|
.right-2 {
|
|
756
830
|
right: 0.5rem;
|
|
757
831
|
}
|
|
758
|
-
|
|
759
|
-
right: 1rem;
|
|
760
|
-
}
|
|
761
|
-
.right-\[100px\] {
|
|
762
|
-
right: 100px;
|
|
763
|
-
}
|
|
764
|
-
.right-\[140px\] {
|
|
765
|
-
right: 140px;
|
|
766
|
-
}
|
|
767
|
-
.right-auto {
|
|
768
|
-
right: auto;
|
|
769
|
-
}
|
|
832
|
+
|
|
770
833
|
.start-10 {
|
|
771
834
|
inset-inline-start: 2.5rem;
|
|
772
835
|
}
|
|
836
|
+
|
|
773
837
|
.start-4 {
|
|
774
838
|
inset-inline-start: 1rem;
|
|
775
839
|
}
|
|
840
|
+
|
|
776
841
|
.top-0 {
|
|
777
842
|
top: 0px;
|
|
778
843
|
}
|
|
844
|
+
|
|
779
845
|
.top-1\/2 {
|
|
780
846
|
top: 50%;
|
|
781
847
|
}
|
|
848
|
+
|
|
782
849
|
.top-10 {
|
|
783
850
|
top: 2.5rem;
|
|
784
851
|
}
|
|
852
|
+
|
|
785
853
|
.top-2 {
|
|
786
854
|
top: 0.5rem;
|
|
787
855
|
}
|
|
788
|
-
|
|
789
|
-
top: 1rem;
|
|
790
|
-
}
|
|
856
|
+
|
|
791
857
|
.top-\[18px\] {
|
|
792
858
|
top: 18px;
|
|
793
859
|
}
|
|
860
|
+
|
|
794
861
|
.top-\[50\%\] {
|
|
795
862
|
top: 50%;
|
|
796
863
|
}
|
|
864
|
+
|
|
797
865
|
.z-10 {
|
|
798
866
|
z-index: 10;
|
|
799
867
|
}
|
|
868
|
+
|
|
800
869
|
.z-20 {
|
|
801
870
|
z-index: 20;
|
|
802
871
|
}
|
|
872
|
+
|
|
803
873
|
.z-50 {
|
|
804
874
|
z-index: 50;
|
|
805
875
|
}
|
|
876
|
+
|
|
806
877
|
.z-\[100\] {
|
|
807
878
|
z-index: 100;
|
|
808
879
|
}
|
|
880
|
+
|
|
809
881
|
.order-1 {
|
|
810
882
|
order: 1;
|
|
811
883
|
}
|
|
884
|
+
|
|
812
885
|
.order-2 {
|
|
813
886
|
order: 2;
|
|
814
887
|
}
|
|
888
|
+
|
|
815
889
|
.col-span-2 {
|
|
816
890
|
grid-column: span 2 / span 2;
|
|
817
891
|
}
|
|
892
|
+
|
|
818
893
|
.col-start-1 {
|
|
819
894
|
grid-column-start: 1;
|
|
820
895
|
}
|
|
896
|
+
|
|
821
897
|
.row-start-1 {
|
|
822
898
|
grid-row-start: 1;
|
|
823
899
|
}
|
|
900
|
+
|
|
824
901
|
.m-2 {
|
|
825
902
|
margin: 0.5rem;
|
|
826
903
|
}
|
|
904
|
+
|
|
827
905
|
.m-auto {
|
|
828
906
|
margin: auto;
|
|
829
907
|
}
|
|
908
|
+
|
|
830
909
|
.mx-1 {
|
|
831
910
|
margin-left: 0.25rem;
|
|
832
911
|
margin-right: 0.25rem;
|
|
833
912
|
}
|
|
913
|
+
|
|
834
914
|
.mx-2 {
|
|
835
915
|
margin-left: 0.5rem;
|
|
836
916
|
margin-right: 0.5rem;
|
|
837
917
|
}
|
|
918
|
+
|
|
838
919
|
.mx-4 {
|
|
839
920
|
margin-left: 1rem;
|
|
840
921
|
margin-right: 1rem;
|
|
841
922
|
}
|
|
923
|
+
|
|
842
924
|
.mx-auto {
|
|
843
925
|
margin-left: auto;
|
|
844
926
|
margin-right: auto;
|
|
845
927
|
}
|
|
928
|
+
|
|
846
929
|
.my-0 {
|
|
847
930
|
margin-top: 0px;
|
|
848
931
|
margin-bottom: 0px;
|
|
849
932
|
}
|
|
933
|
+
|
|
850
934
|
.my-3 {
|
|
851
935
|
margin-top: 0.75rem;
|
|
852
936
|
margin-bottom: 0.75rem;
|
|
853
937
|
}
|
|
938
|
+
|
|
854
939
|
.my-4 {
|
|
855
940
|
margin-top: 1rem;
|
|
856
941
|
margin-bottom: 1rem;
|
|
857
942
|
}
|
|
943
|
+
|
|
858
944
|
.my-auto {
|
|
859
945
|
margin-top: auto;
|
|
860
946
|
margin-bottom: auto;
|
|
861
947
|
}
|
|
948
|
+
|
|
862
949
|
.-mt-4 {
|
|
863
950
|
margin-top: -1rem;
|
|
864
951
|
}
|
|
952
|
+
|
|
865
953
|
.mb-1 {
|
|
866
954
|
margin-bottom: 0.25rem;
|
|
867
955
|
}
|
|
956
|
+
|
|
868
957
|
.mb-2 {
|
|
869
958
|
margin-bottom: 0.5rem;
|
|
870
959
|
}
|
|
871
|
-
|
|
872
|
-
margin-bottom: 1rem;
|
|
873
|
-
}
|
|
960
|
+
|
|
874
961
|
.mb-6 {
|
|
875
962
|
margin-bottom: 1.5rem;
|
|
876
963
|
}
|
|
964
|
+
|
|
877
965
|
.ml-1 {
|
|
878
966
|
margin-left: 0.25rem;
|
|
879
967
|
}
|
|
968
|
+
|
|
880
969
|
.ml-2 {
|
|
881
970
|
margin-left: 0.5rem;
|
|
882
971
|
}
|
|
972
|
+
|
|
883
973
|
.ml-4 {
|
|
884
974
|
margin-left: 1rem;
|
|
885
975
|
}
|
|
886
|
-
|
|
887
|
-
margin-right: 0px;
|
|
888
|
-
}
|
|
889
|
-
.mr-0\.5 {
|
|
890
|
-
margin-right: 0.125rem;
|
|
891
|
-
}
|
|
976
|
+
|
|
892
977
|
.mr-2 {
|
|
893
978
|
margin-right: 0.5rem;
|
|
894
979
|
}
|
|
980
|
+
|
|
895
981
|
.mr-4 {
|
|
896
982
|
margin-right: 1rem;
|
|
897
983
|
}
|
|
984
|
+
|
|
898
985
|
.mt-0 {
|
|
899
986
|
margin-top: 0px;
|
|
900
987
|
}
|
|
988
|
+
|
|
901
989
|
.mt-1 {
|
|
902
990
|
margin-top: 0.25rem;
|
|
903
991
|
}
|
|
992
|
+
|
|
904
993
|
.mt-2 {
|
|
905
994
|
margin-top: 0.5rem;
|
|
906
995
|
}
|
|
996
|
+
|
|
907
997
|
.mt-3 {
|
|
908
998
|
margin-top: 0.75rem;
|
|
909
999
|
}
|
|
910
|
-
|
|
911
|
-
margin-top: 1rem;
|
|
912
|
-
}
|
|
1000
|
+
|
|
913
1001
|
.mt-auto {
|
|
914
1002
|
margin-top: auto;
|
|
915
1003
|
}
|
|
1004
|
+
|
|
916
1005
|
.line-clamp-1 {
|
|
917
1006
|
overflow: hidden;
|
|
918
1007
|
display: -webkit-box;
|
|
919
1008
|
-webkit-box-orient: vertical;
|
|
920
1009
|
-webkit-line-clamp: 1;
|
|
921
1010
|
}
|
|
1011
|
+
|
|
922
1012
|
.line-clamp-2 {
|
|
923
1013
|
overflow: hidden;
|
|
924
1014
|
display: -webkit-box;
|
|
925
1015
|
-webkit-box-orient: vertical;
|
|
926
1016
|
-webkit-line-clamp: 2;
|
|
927
1017
|
}
|
|
1018
|
+
|
|
928
1019
|
.block {
|
|
929
1020
|
display: block;
|
|
930
1021
|
}
|
|
1022
|
+
|
|
1023
|
+
.inline-block {
|
|
1024
|
+
display: inline-block;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
931
1027
|
.inline {
|
|
932
1028
|
display: inline;
|
|
933
1029
|
}
|
|
1030
|
+
|
|
934
1031
|
.flex {
|
|
935
1032
|
display: flex;
|
|
936
1033
|
}
|
|
1034
|
+
|
|
937
1035
|
.inline-flex {
|
|
938
1036
|
display: inline-flex;
|
|
939
1037
|
}
|
|
1038
|
+
|
|
940
1039
|
.grid {
|
|
941
1040
|
display: grid;
|
|
942
1041
|
}
|
|
1042
|
+
|
|
943
1043
|
.hidden {
|
|
944
1044
|
display: none;
|
|
945
1045
|
}
|
|
1046
|
+
|
|
946
1047
|
.aspect-productImages {
|
|
947
1048
|
aspect-ratio: var(--productImage-aspectRatio);
|
|
948
1049
|
}
|
|
1050
|
+
|
|
949
1051
|
.aspect-square {
|
|
950
1052
|
aspect-ratio: 1 / 1;
|
|
951
1053
|
}
|
|
1054
|
+
|
|
952
1055
|
.h-0 {
|
|
953
1056
|
height: 0px;
|
|
954
1057
|
}
|
|
1058
|
+
|
|
955
1059
|
.h-0\.5 {
|
|
956
1060
|
height: 0.125rem;
|
|
957
1061
|
}
|
|
1062
|
+
|
|
958
1063
|
.h-1 {
|
|
959
1064
|
height: 0.25rem;
|
|
960
1065
|
}
|
|
1066
|
+
|
|
961
1067
|
.h-1\.5 {
|
|
962
1068
|
height: 0.375rem;
|
|
963
1069
|
}
|
|
1070
|
+
|
|
964
1071
|
.h-10 {
|
|
965
1072
|
height: 2.5rem;
|
|
966
1073
|
}
|
|
1074
|
+
|
|
967
1075
|
.h-11 {
|
|
968
1076
|
height: 2.75rem;
|
|
969
1077
|
}
|
|
1078
|
+
|
|
970
1079
|
.h-12 {
|
|
971
1080
|
height: 3rem;
|
|
972
1081
|
}
|
|
1082
|
+
|
|
973
1083
|
.h-14 {
|
|
974
1084
|
height: 3.5rem;
|
|
975
1085
|
}
|
|
1086
|
+
|
|
976
1087
|
.h-2 {
|
|
977
1088
|
height: 0.5rem;
|
|
978
1089
|
}
|
|
1090
|
+
|
|
979
1091
|
.h-2\.5 {
|
|
980
1092
|
height: 0.625rem;
|
|
981
1093
|
}
|
|
1094
|
+
|
|
982
1095
|
.h-4 {
|
|
983
1096
|
height: 1rem;
|
|
984
1097
|
}
|
|
1098
|
+
|
|
985
1099
|
.h-48 {
|
|
986
1100
|
height: 12rem;
|
|
987
1101
|
}
|
|
1102
|
+
|
|
988
1103
|
.h-5 {
|
|
989
1104
|
height: 1.25rem;
|
|
990
1105
|
}
|
|
1106
|
+
|
|
991
1107
|
.h-6 {
|
|
992
1108
|
height: 1.5rem;
|
|
993
1109
|
}
|
|
1110
|
+
|
|
994
1111
|
.h-64 {
|
|
995
1112
|
height: 16rem;
|
|
996
1113
|
}
|
|
1114
|
+
|
|
997
1115
|
.h-7 {
|
|
998
1116
|
height: 1.75rem;
|
|
999
1117
|
}
|
|
1118
|
+
|
|
1000
1119
|
.h-8 {
|
|
1001
1120
|
height: 2rem;
|
|
1002
1121
|
}
|
|
1122
|
+
|
|
1003
1123
|
.h-9 {
|
|
1004
1124
|
height: 2.25rem;
|
|
1005
1125
|
}
|
|
1126
|
+
|
|
1006
1127
|
.h-\[1px\] {
|
|
1007
1128
|
height: 1px;
|
|
1008
1129
|
}
|
|
1130
|
+
|
|
1009
1131
|
.h-\[22px\] {
|
|
1010
1132
|
height: 22px;
|
|
1011
1133
|
}
|
|
1134
|
+
|
|
1012
1135
|
.h-\[2px\] {
|
|
1013
1136
|
height: 2px;
|
|
1014
1137
|
}
|
|
1138
|
+
|
|
1015
1139
|
.h-\[36\] {
|
|
1016
1140
|
height: 36;
|
|
1017
1141
|
}
|
|
1142
|
+
|
|
1018
1143
|
.h-\[42px\] {
|
|
1019
1144
|
height: 42px;
|
|
1020
1145
|
}
|
|
1146
|
+
|
|
1021
1147
|
.h-\[48px\] {
|
|
1022
1148
|
height: 48px;
|
|
1023
1149
|
}
|
|
1150
|
+
|
|
1024
1151
|
.h-\[4px\] {
|
|
1025
1152
|
height: 4px;
|
|
1026
1153
|
}
|
|
1154
|
+
|
|
1027
1155
|
.h-auto {
|
|
1028
1156
|
height: auto;
|
|
1029
1157
|
}
|
|
1158
|
+
|
|
1030
1159
|
.h-full {
|
|
1031
1160
|
height: 100%;
|
|
1032
1161
|
}
|
|
1162
|
+
|
|
1033
1163
|
.max-h-\[200px\] {
|
|
1034
1164
|
max-height: 200px;
|
|
1035
1165
|
}
|
|
1166
|
+
|
|
1036
1167
|
.max-h-\[240px\] {
|
|
1037
1168
|
max-height: 240px;
|
|
1038
1169
|
}
|
|
1170
|
+
|
|
1039
1171
|
.max-h-\[300px\] {
|
|
1040
1172
|
max-height: 300px;
|
|
1041
1173
|
}
|
|
1174
|
+
|
|
1042
1175
|
.max-h-screen {
|
|
1043
1176
|
max-height: 100vh;
|
|
1044
1177
|
}
|
|
1178
|
+
|
|
1045
1179
|
.min-h-\[24px\] {
|
|
1046
1180
|
min-height: 24px;
|
|
1047
1181
|
}
|
|
1182
|
+
|
|
1048
1183
|
.w-1 {
|
|
1049
1184
|
width: 0.25rem;
|
|
1050
1185
|
}
|
|
1186
|
+
|
|
1051
1187
|
.w-1\.5 {
|
|
1052
1188
|
width: 0.375rem;
|
|
1053
1189
|
}
|
|
1190
|
+
|
|
1054
1191
|
.w-1\/2 {
|
|
1055
1192
|
width: 50%;
|
|
1056
1193
|
}
|
|
1194
|
+
|
|
1057
1195
|
.w-10 {
|
|
1058
1196
|
width: 2.5rem;
|
|
1059
1197
|
}
|
|
1198
|
+
|
|
1060
1199
|
.w-12 {
|
|
1061
1200
|
width: 3rem;
|
|
1062
1201
|
}
|
|
1202
|
+
|
|
1063
1203
|
.w-14 {
|
|
1064
1204
|
width: 3.5rem;
|
|
1065
1205
|
}
|
|
1206
|
+
|
|
1066
1207
|
.w-16 {
|
|
1067
1208
|
width: 4rem;
|
|
1068
1209
|
}
|
|
1210
|
+
|
|
1069
1211
|
.w-2 {
|
|
1070
1212
|
width: 0.5rem;
|
|
1071
1213
|
}
|
|
1214
|
+
|
|
1072
1215
|
.w-2\.5 {
|
|
1073
1216
|
width: 0.625rem;
|
|
1074
1217
|
}
|
|
1218
|
+
|
|
1075
1219
|
.w-4 {
|
|
1076
1220
|
width: 1rem;
|
|
1077
1221
|
}
|
|
1222
|
+
|
|
1078
1223
|
.w-5 {
|
|
1079
1224
|
width: 1.25rem;
|
|
1080
1225
|
}
|
|
1226
|
+
|
|
1081
1227
|
.w-6 {
|
|
1082
1228
|
width: 1.5rem;
|
|
1083
1229
|
}
|
|
1230
|
+
|
|
1084
1231
|
.w-7 {
|
|
1085
1232
|
width: 1.75rem;
|
|
1086
1233
|
}
|
|
1234
|
+
|
|
1087
1235
|
.w-8 {
|
|
1088
1236
|
width: 2rem;
|
|
1089
1237
|
}
|
|
1238
|
+
|
|
1090
1239
|
.w-\[138px\] {
|
|
1091
1240
|
width: 138px;
|
|
1092
1241
|
}
|
|
1242
|
+
|
|
1093
1243
|
.w-\[140px\] {
|
|
1094
1244
|
width: 140px;
|
|
1095
1245
|
}
|
|
1246
|
+
|
|
1096
1247
|
.w-\[154px\] {
|
|
1097
1248
|
width: 154px;
|
|
1098
1249
|
}
|
|
1250
|
+
|
|
1099
1251
|
.w-\[1px\] {
|
|
1100
1252
|
width: 1px;
|
|
1101
1253
|
}
|
|
1254
|
+
|
|
1102
1255
|
.w-\[22px\] {
|
|
1103
1256
|
width: 22px;
|
|
1104
1257
|
}
|
|
1258
|
+
|
|
1105
1259
|
.w-\[327px\] {
|
|
1106
1260
|
width: 327px;
|
|
1107
1261
|
}
|
|
1262
|
+
|
|
1108
1263
|
.w-\[40px\] {
|
|
1109
1264
|
width: 40px;
|
|
1110
1265
|
}
|
|
1266
|
+
|
|
1111
1267
|
.w-auto {
|
|
1112
1268
|
width: auto;
|
|
1113
1269
|
}
|
|
1270
|
+
|
|
1114
1271
|
.w-fit {
|
|
1115
1272
|
width: -moz-fit-content;
|
|
1116
1273
|
width: fit-content;
|
|
1117
1274
|
}
|
|
1275
|
+
|
|
1118
1276
|
.w-full {
|
|
1119
1277
|
width: 100%;
|
|
1120
1278
|
}
|
|
1279
|
+
|
|
1121
1280
|
.w-max {
|
|
1122
1281
|
width: -moz-max-content;
|
|
1123
1282
|
width: max-content;
|
|
1124
1283
|
}
|
|
1284
|
+
|
|
1125
1285
|
.min-w-0 {
|
|
1126
1286
|
min-width: 0px;
|
|
1127
1287
|
}
|
|
1288
|
+
|
|
1128
1289
|
.min-w-\[8rem\] {
|
|
1129
1290
|
min-width: 8rem;
|
|
1130
1291
|
}
|
|
1292
|
+
|
|
1131
1293
|
.min-w-\[fit-content\] {
|
|
1132
1294
|
min-width: -moz-fit-content;
|
|
1133
1295
|
min-width: fit-content;
|
|
1134
1296
|
}
|
|
1297
|
+
|
|
1135
1298
|
.max-w-\[200px\] {
|
|
1136
1299
|
max-width: 200px;
|
|
1137
1300
|
}
|
|
1301
|
+
|
|
1138
1302
|
.max-w-full {
|
|
1139
1303
|
max-width: 100%;
|
|
1140
1304
|
}
|
|
1305
|
+
|
|
1141
1306
|
.max-w-lg {
|
|
1142
1307
|
max-width: 32rem;
|
|
1143
1308
|
}
|
|
1309
|
+
|
|
1144
1310
|
.max-w-xs {
|
|
1145
1311
|
max-width: 20rem;
|
|
1146
1312
|
}
|
|
1313
|
+
|
|
1147
1314
|
.flex-1 {
|
|
1148
1315
|
flex: 1 1 0%;
|
|
1149
1316
|
}
|
|
1317
|
+
|
|
1150
1318
|
.flex-shrink-0 {
|
|
1151
1319
|
flex-shrink: 0;
|
|
1152
1320
|
}
|
|
1321
|
+
|
|
1153
1322
|
.shrink-0 {
|
|
1154
1323
|
flex-shrink: 0;
|
|
1155
1324
|
}
|
|
1325
|
+
|
|
1156
1326
|
.flex-grow {
|
|
1157
1327
|
flex-grow: 1;
|
|
1158
1328
|
}
|
|
1329
|
+
|
|
1159
1330
|
.grow {
|
|
1160
1331
|
flex-grow: 1;
|
|
1161
1332
|
}
|
|
1333
|
+
|
|
1162
1334
|
.grow-0 {
|
|
1163
1335
|
flex-grow: 0;
|
|
1164
1336
|
}
|
|
1337
|
+
|
|
1165
1338
|
.basis-full {
|
|
1166
1339
|
flex-basis: 100%;
|
|
1167
1340
|
}
|
|
1341
|
+
|
|
1168
1342
|
.origin-\[0\] {
|
|
1169
1343
|
transform-origin: 0;
|
|
1170
1344
|
}
|
|
1345
|
+
|
|
1171
1346
|
.-translate-x-1\/2 {
|
|
1172
1347
|
--tw-translate-x: -50%;
|
|
1173
1348
|
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));
|
|
1174
1349
|
}
|
|
1350
|
+
|
|
1175
1351
|
.-translate-y-1\/2 {
|
|
1176
1352
|
--tw-translate-y: -50%;
|
|
1177
1353
|
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));
|
|
1178
1354
|
}
|
|
1355
|
+
|
|
1179
1356
|
.translate-x-\[-50\%\] {
|
|
1180
1357
|
--tw-translate-x: -50%;
|
|
1181
1358
|
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));
|
|
1182
1359
|
}
|
|
1360
|
+
|
|
1183
1361
|
.translate-y-0 {
|
|
1184
1362
|
--tw-translate-y: 0px;
|
|
1185
1363
|
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));
|
|
1186
1364
|
}
|
|
1365
|
+
|
|
1187
1366
|
.translate-y-\[-10px\] {
|
|
1188
1367
|
--tw-translate-y: -10px;
|
|
1189
1368
|
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));
|
|
1190
1369
|
}
|
|
1370
|
+
|
|
1191
1371
|
.translate-y-\[-50\%\] {
|
|
1192
1372
|
--tw-translate-y: -50%;
|
|
1193
1373
|
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));
|
|
1194
1374
|
}
|
|
1375
|
+
|
|
1195
1376
|
.rotate-180 {
|
|
1196
1377
|
--tw-rotate: 180deg;
|
|
1197
1378
|
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));
|
|
1198
1379
|
}
|
|
1380
|
+
|
|
1199
1381
|
.rotate-45 {
|
|
1200
1382
|
--tw-rotate: 45deg;
|
|
1201
1383
|
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));
|
|
1202
1384
|
}
|
|
1385
|
+
|
|
1203
1386
|
.rotate-90 {
|
|
1204
1387
|
--tw-rotate: 90deg;
|
|
1205
1388
|
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));
|
|
1206
1389
|
}
|
|
1390
|
+
|
|
1207
1391
|
.transform {
|
|
1208
1392
|
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));
|
|
1209
1393
|
}
|
|
1210
|
-
@keyframes pulse {
|
|
1211
1394
|
|
|
1395
|
+
@keyframes pulse {
|
|
1212
1396
|
50% {
|
|
1213
1397
|
opacity: .5;
|
|
1214
1398
|
}
|
|
1215
1399
|
}
|
|
1400
|
+
|
|
1216
1401
|
.animate-pulse {
|
|
1217
1402
|
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1218
1403
|
}
|
|
1219
|
-
@keyframes spin {
|
|
1220
1404
|
|
|
1405
|
+
@keyframes spin {
|
|
1221
1406
|
to {
|
|
1222
1407
|
transform: rotate(360deg);
|
|
1223
1408
|
}
|
|
1224
1409
|
}
|
|
1410
|
+
|
|
1225
1411
|
.animate-spin {
|
|
1226
1412
|
animation: spin 1s linear infinite;
|
|
1227
1413
|
}
|
|
1414
|
+
|
|
1228
1415
|
.cursor-default {
|
|
1229
1416
|
cursor: default;
|
|
1230
1417
|
}
|
|
1418
|
+
|
|
1231
1419
|
.cursor-pointer {
|
|
1232
1420
|
cursor: pointer;
|
|
1233
1421
|
}
|
|
1422
|
+
|
|
1234
1423
|
.touch-none {
|
|
1235
1424
|
touch-action: none;
|
|
1236
1425
|
}
|
|
1426
|
+
|
|
1237
1427
|
.select-none {
|
|
1238
1428
|
-webkit-user-select: none;
|
|
1239
1429
|
-moz-user-select: none;
|
|
1240
1430
|
user-select: none;
|
|
1241
1431
|
}
|
|
1432
|
+
|
|
1242
1433
|
.resize-none {
|
|
1243
1434
|
resize: none;
|
|
1244
1435
|
}
|
|
1436
|
+
|
|
1245
1437
|
.resize {
|
|
1246
1438
|
resize: both;
|
|
1247
1439
|
}
|
|
1440
|
+
|
|
1248
1441
|
.columns-1 {
|
|
1249
1442
|
-moz-columns: 1;
|
|
1250
1443
|
columns: 1;
|
|
1251
1444
|
}
|
|
1445
|
+
|
|
1252
1446
|
.columns-2 {
|
|
1253
1447
|
-moz-columns: 2;
|
|
1254
1448
|
columns: 2;
|
|
1255
1449
|
}
|
|
1450
|
+
|
|
1256
1451
|
.columns-3 {
|
|
1257
1452
|
-moz-columns: 3;
|
|
1258
1453
|
columns: 3;
|
|
1259
1454
|
}
|
|
1455
|
+
|
|
1260
1456
|
.grid-flow-col {
|
|
1261
1457
|
grid-auto-flow: column;
|
|
1262
1458
|
}
|
|
1459
|
+
|
|
1263
1460
|
.grid-cols-1 {
|
|
1264
1461
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1265
1462
|
}
|
|
1463
|
+
|
|
1266
1464
|
.grid-cols-2 {
|
|
1267
1465
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1268
1466
|
}
|
|
1467
|
+
|
|
1269
1468
|
.grid-cols-3 {
|
|
1270
1469
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1271
1470
|
}
|
|
1471
|
+
|
|
1272
1472
|
.grid-cols-4 {
|
|
1273
1473
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1274
1474
|
}
|
|
1475
|
+
|
|
1275
1476
|
.grid-cols-\[auto\2c auto\2c 1fr\] {
|
|
1276
1477
|
grid-template-columns: auto auto 1fr;
|
|
1277
1478
|
}
|
|
1479
|
+
|
|
1278
1480
|
.grid-cols-\[auto_1fr_auto\] {
|
|
1279
1481
|
grid-template-columns: auto 1fr auto;
|
|
1280
1482
|
}
|
|
1483
|
+
|
|
1281
1484
|
.flex-row {
|
|
1282
1485
|
flex-direction: row;
|
|
1283
1486
|
}
|
|
1487
|
+
|
|
1284
1488
|
.flex-row-reverse {
|
|
1285
1489
|
flex-direction: row-reverse;
|
|
1286
1490
|
}
|
|
1491
|
+
|
|
1287
1492
|
.flex-col {
|
|
1288
1493
|
flex-direction: column;
|
|
1289
1494
|
}
|
|
1495
|
+
|
|
1290
1496
|
.flex-col-reverse {
|
|
1291
1497
|
flex-direction: column-reverse;
|
|
1292
1498
|
}
|
|
1499
|
+
|
|
1293
1500
|
.flex-wrap {
|
|
1294
1501
|
flex-wrap: wrap;
|
|
1295
1502
|
}
|
|
1503
|
+
|
|
1296
1504
|
.items-start {
|
|
1297
1505
|
align-items: flex-start;
|
|
1298
1506
|
}
|
|
1507
|
+
|
|
1299
1508
|
.items-center {
|
|
1300
1509
|
align-items: center;
|
|
1301
1510
|
}
|
|
1302
|
-
|
|
1303
|
-
justify-content: flex-start !important;
|
|
1304
|
-
}
|
|
1511
|
+
|
|
1305
1512
|
.justify-start {
|
|
1306
1513
|
justify-content: flex-start;
|
|
1307
1514
|
}
|
|
1308
|
-
|
|
1309
|
-
justify-content: flex-end !important;
|
|
1310
|
-
}
|
|
1515
|
+
|
|
1311
1516
|
.justify-end {
|
|
1312
1517
|
justify-content: flex-end;
|
|
1313
1518
|
}
|
|
1314
|
-
|
|
1315
|
-
justify-content: center !important;
|
|
1316
|
-
}
|
|
1519
|
+
|
|
1317
1520
|
.justify-center {
|
|
1318
1521
|
justify-content: center;
|
|
1319
1522
|
}
|
|
1523
|
+
|
|
1320
1524
|
.justify-between {
|
|
1321
1525
|
justify-content: space-between;
|
|
1322
1526
|
}
|
|
1527
|
+
|
|
1323
1528
|
.gap-0 {
|
|
1324
1529
|
gap: 0px;
|
|
1325
1530
|
}
|
|
1531
|
+
|
|
1326
1532
|
.gap-1 {
|
|
1327
1533
|
gap: 0.25rem;
|
|
1328
1534
|
}
|
|
1535
|
+
|
|
1329
1536
|
.gap-2 {
|
|
1330
1537
|
gap: 0.5rem;
|
|
1331
1538
|
}
|
|
1539
|
+
|
|
1332
1540
|
.gap-4 {
|
|
1333
1541
|
gap: 1rem;
|
|
1334
1542
|
}
|
|
1543
|
+
|
|
1335
1544
|
.gap-\[7px\] {
|
|
1336
1545
|
gap: 7px;
|
|
1337
1546
|
}
|
|
1547
|
+
|
|
1338
1548
|
.gap-x-2 {
|
|
1339
1549
|
-moz-column-gap: 0.5rem;
|
|
1340
1550
|
column-gap: 0.5rem;
|
|
1341
1551
|
}
|
|
1552
|
+
|
|
1342
1553
|
.gap-x-\[7px\] {
|
|
1343
1554
|
-moz-column-gap: 7px;
|
|
1344
1555
|
column-gap: 7px;
|
|
1345
1556
|
}
|
|
1557
|
+
|
|
1346
1558
|
.gap-y-2 {
|
|
1347
1559
|
row-gap: 0.5rem;
|
|
1348
1560
|
}
|
|
1561
|
+
|
|
1349
1562
|
.gap-y-4 {
|
|
1350
1563
|
row-gap: 1rem;
|
|
1351
1564
|
}
|
|
1565
|
+
|
|
1352
1566
|
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1353
1567
|
--tw-space-x-reverse: 0;
|
|
1354
1568
|
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1355
1569
|
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1356
1570
|
}
|
|
1571
|
+
|
|
1357
1572
|
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1358
1573
|
--tw-space-x-reverse: 0;
|
|
1359
1574
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1360
1575
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1361
1576
|
}
|
|
1577
|
+
|
|
1362
1578
|
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1363
1579
|
--tw-space-x-reverse: 0;
|
|
1364
1580
|
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
1365
1581
|
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1366
1582
|
}
|
|
1583
|
+
|
|
1367
1584
|
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1368
1585
|
--tw-space-y-reverse: 0;
|
|
1369
1586
|
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1370
1587
|
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
1371
1588
|
}
|
|
1589
|
+
|
|
1372
1590
|
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1373
1591
|
--tw-space-y-reverse: 0;
|
|
1374
1592
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1375
1593
|
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1376
1594
|
}
|
|
1595
|
+
|
|
1377
1596
|
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1378
1597
|
--tw-space-y-reverse: 0;
|
|
1379
1598
|
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1380
1599
|
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
|
1381
1600
|
}
|
|
1601
|
+
|
|
1382
1602
|
.self-start {
|
|
1383
1603
|
align-self: flex-start;
|
|
1384
1604
|
}
|
|
1605
|
+
|
|
1385
1606
|
.self-center {
|
|
1386
1607
|
align-self: center;
|
|
1387
1608
|
}
|
|
1609
|
+
|
|
1388
1610
|
.self-stretch {
|
|
1389
1611
|
align-self: stretch;
|
|
1390
1612
|
}
|
|
1613
|
+
|
|
1391
1614
|
.overflow-hidden {
|
|
1392
1615
|
overflow: hidden;
|
|
1393
1616
|
}
|
|
1617
|
+
|
|
1394
1618
|
.overflow-scroll {
|
|
1395
1619
|
overflow: scroll;
|
|
1396
1620
|
}
|
|
1621
|
+
|
|
1397
1622
|
.overflow-x-auto {
|
|
1398
1623
|
overflow-x: auto;
|
|
1399
1624
|
}
|
|
1625
|
+
|
|
1400
1626
|
.overflow-y-auto {
|
|
1401
1627
|
overflow-y: auto;
|
|
1402
1628
|
}
|
|
1629
|
+
|
|
1403
1630
|
.overflow-y-hidden {
|
|
1404
1631
|
overflow-y: hidden;
|
|
1405
1632
|
}
|
|
1633
|
+
|
|
1406
1634
|
.truncate {
|
|
1407
1635
|
overflow: hidden;
|
|
1408
1636
|
text-overflow: ellipsis;
|
|
1409
1637
|
white-space: nowrap;
|
|
1410
1638
|
}
|
|
1639
|
+
|
|
1411
1640
|
.text-ellipsis {
|
|
1412
1641
|
text-overflow: ellipsis;
|
|
1413
1642
|
}
|
|
1643
|
+
|
|
1414
1644
|
.whitespace-nowrap {
|
|
1415
1645
|
white-space: nowrap;
|
|
1416
1646
|
}
|
|
1417
|
-
|
|
1418
|
-
overflow-wrap: break-word;
|
|
1419
|
-
}
|
|
1647
|
+
|
|
1420
1648
|
.rounded {
|
|
1421
1649
|
border-radius: 0.25rem;
|
|
1422
1650
|
}
|
|
1651
|
+
|
|
1423
1652
|
.rounded-2xl {
|
|
1424
1653
|
border-radius: 1rem;
|
|
1425
1654
|
}
|
|
1655
|
+
|
|
1426
1656
|
.rounded-\[4px\] {
|
|
1427
1657
|
border-radius: 4px;
|
|
1428
1658
|
}
|
|
1659
|
+
|
|
1429
1660
|
.rounded-\[inherit\] {
|
|
1430
1661
|
border-radius: inherit;
|
|
1431
1662
|
}
|
|
1663
|
+
|
|
1432
1664
|
.rounded-full {
|
|
1433
1665
|
border-radius: 9999px;
|
|
1434
1666
|
}
|
|
1667
|
+
|
|
1435
1668
|
.rounded-md {
|
|
1436
1669
|
border-radius: calc(var(--radius) - 2px);
|
|
1437
1670
|
}
|
|
1671
|
+
|
|
1438
1672
|
.rounded-none {
|
|
1439
1673
|
border-radius: 0px;
|
|
1440
1674
|
}
|
|
1675
|
+
|
|
1441
1676
|
.rounded-sm {
|
|
1442
1677
|
border-radius: calc(var(--radius) - 4px);
|
|
1443
1678
|
}
|
|
1679
|
+
|
|
1444
1680
|
.rounded-b-lg {
|
|
1445
1681
|
border-bottom-right-radius: var(--radius);
|
|
1446
1682
|
border-bottom-left-radius: var(--radius);
|
|
1447
1683
|
}
|
|
1684
|
+
|
|
1448
1685
|
.rounded-t-2xl {
|
|
1449
1686
|
border-top-left-radius: 1rem;
|
|
1450
1687
|
border-top-right-radius: 1rem;
|
|
1451
1688
|
}
|
|
1689
|
+
|
|
1452
1690
|
.rounded-bl {
|
|
1453
1691
|
border-bottom-left-radius: 0.25rem;
|
|
1454
1692
|
}
|
|
1693
|
+
|
|
1455
1694
|
.rounded-bl-2xl {
|
|
1456
1695
|
border-bottom-left-radius: 1rem;
|
|
1457
1696
|
}
|
|
1697
|
+
|
|
1458
1698
|
.rounded-br {
|
|
1459
1699
|
border-bottom-right-radius: 0.25rem;
|
|
1460
1700
|
}
|
|
1701
|
+
|
|
1461
1702
|
.rounded-br-2xl {
|
|
1462
1703
|
border-bottom-right-radius: 1rem;
|
|
1463
1704
|
}
|
|
1705
|
+
|
|
1464
1706
|
.rounded-tl {
|
|
1465
1707
|
border-top-left-radius: 0.25rem;
|
|
1466
1708
|
}
|
|
1709
|
+
|
|
1467
1710
|
.rounded-tl-2xl {
|
|
1468
1711
|
border-top-left-radius: 1rem;
|
|
1469
1712
|
}
|
|
1713
|
+
|
|
1470
1714
|
.rounded-tr {
|
|
1471
1715
|
border-top-right-radius: 0.25rem;
|
|
1472
1716
|
}
|
|
1717
|
+
|
|
1473
1718
|
.rounded-tr-2xl {
|
|
1474
1719
|
border-top-right-radius: 1rem;
|
|
1475
1720
|
}
|
|
1721
|
+
|
|
1476
1722
|
.border {
|
|
1477
1723
|
border-width: 1px;
|
|
1478
1724
|
}
|
|
1725
|
+
|
|
1479
1726
|
.border-0 {
|
|
1480
1727
|
border-width: 0px;
|
|
1481
1728
|
}
|
|
1729
|
+
|
|
1482
1730
|
.border-2 {
|
|
1483
1731
|
border-width: 2px;
|
|
1484
1732
|
}
|
|
1733
|
+
|
|
1485
1734
|
.border-\[1px\] {
|
|
1486
1735
|
border-width: 1px;
|
|
1487
1736
|
}
|
|
1737
|
+
|
|
1488
1738
|
.border-b {
|
|
1489
1739
|
border-bottom-width: 1px;
|
|
1490
1740
|
}
|
|
1741
|
+
|
|
1491
1742
|
.border-l {
|
|
1492
1743
|
border-left-width: 1px;
|
|
1493
1744
|
}
|
|
1745
|
+
|
|
1494
1746
|
.border-t {
|
|
1495
1747
|
border-top-width: 1px;
|
|
1496
1748
|
}
|
|
1749
|
+
|
|
1497
1750
|
.border-t-\[0px\] {
|
|
1498
1751
|
border-top-width: 0px;
|
|
1499
1752
|
}
|
|
1753
|
+
|
|
1500
1754
|
.border-none {
|
|
1501
1755
|
border-style: none;
|
|
1502
1756
|
}
|
|
1757
|
+
|
|
1503
1758
|
.\!border-stateColors-error {
|
|
1504
1759
|
border-color: var(--stateColors-error) !important;
|
|
1505
1760
|
}
|
|
1761
|
+
|
|
1506
1762
|
.border-\[\#000\] {
|
|
1507
1763
|
--tw-border-opacity: 1;
|
|
1508
1764
|
border-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
1509
1765
|
}
|
|
1766
|
+
|
|
1510
1767
|
.border-\[\#E3E3E3\] {
|
|
1511
1768
|
--tw-border-opacity: 1;
|
|
1512
1769
|
border-color: rgb(227 227 227 / var(--tw-border-opacity));
|
|
1513
1770
|
}
|
|
1771
|
+
|
|
1514
1772
|
.border-black {
|
|
1515
1773
|
--tw-border-opacity: 1;
|
|
1516
1774
|
border-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
1517
1775
|
}
|
|
1776
|
+
|
|
1518
1777
|
.border-buttonColors-primaryOutlineColor {
|
|
1519
1778
|
border-color: var(--buttonColors-primaryOutlineColor);
|
|
1520
1779
|
}
|
|
1780
|
+
|
|
1521
1781
|
.border-buttonColors-secondaryOutlineColor {
|
|
1522
1782
|
border-color: var(--buttonColors-secondaryOutlineColor);
|
|
1523
1783
|
}
|
|
1784
|
+
|
|
1524
1785
|
.border-coreColors-brandColorPrimary {
|
|
1525
1786
|
border-color: var(--coreColors-brandColorPrimary);
|
|
1526
1787
|
}
|
|
1788
|
+
|
|
1527
1789
|
.border-coreColors-dividingLines {
|
|
1528
1790
|
border-color: var(--coreColors-dividingLines);
|
|
1529
1791
|
}
|
|
1792
|
+
|
|
1530
1793
|
.border-gray-300 {
|
|
1531
1794
|
--tw-border-opacity: 1;
|
|
1532
1795
|
border-color: rgb(209 213 219 / var(--tw-border-opacity));
|
|
1533
1796
|
}
|
|
1797
|
+
|
|
1534
1798
|
.border-input {
|
|
1535
1799
|
border-color: hsl(var(--input));
|
|
1536
1800
|
}
|
|
1801
|
+
|
|
1537
1802
|
.border-stateColors-error {
|
|
1538
1803
|
border-color: var(--stateColors-error);
|
|
1539
1804
|
}
|
|
1805
|
+
|
|
1540
1806
|
.border-transparent {
|
|
1541
1807
|
border-color: transparent;
|
|
1542
1808
|
}
|
|
1809
|
+
|
|
1543
1810
|
.border-l-transparent {
|
|
1544
1811
|
border-left-color: transparent;
|
|
1545
1812
|
}
|
|
1813
|
+
|
|
1546
1814
|
.border-t-transparent {
|
|
1547
1815
|
border-top-color: transparent;
|
|
1548
1816
|
}
|
|
1817
|
+
|
|
1549
1818
|
.bg-\[\#612EFF\] {
|
|
1550
1819
|
--tw-bg-opacity: 1;
|
|
1551
1820
|
background-color: rgb(97 46 255 / var(--tw-bg-opacity));
|
|
1552
1821
|
}
|
|
1822
|
+
|
|
1553
1823
|
.bg-\[\#FFFFFF\] {
|
|
1554
1824
|
--tw-bg-opacity: 1;
|
|
1555
1825
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1556
1826
|
}
|
|
1827
|
+
|
|
1557
1828
|
.bg-background {
|
|
1558
1829
|
background-color: hsl(var(--background));
|
|
1559
1830
|
}
|
|
1831
|
+
|
|
1560
1832
|
.bg-black {
|
|
1561
1833
|
--tw-bg-opacity: 1;
|
|
1562
1834
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
1563
1835
|
}
|
|
1836
|
+
|
|
1564
1837
|
.bg-black\/80 {
|
|
1565
1838
|
background-color: rgb(0 0 0 / 0.8);
|
|
1566
1839
|
}
|
|
1840
|
+
|
|
1567
1841
|
.bg-border {
|
|
1568
1842
|
background-color: hsl(var(--border));
|
|
1569
1843
|
}
|
|
1844
|
+
|
|
1570
1845
|
.bg-buttonColors-primaryFill {
|
|
1571
1846
|
background-color: var(--buttonColors-primaryFill);
|
|
1572
1847
|
}
|
|
1848
|
+
|
|
1573
1849
|
.bg-buttonColors-secondaryFill {
|
|
1574
1850
|
background-color: var(--buttonColors-secondaryFill);
|
|
1575
1851
|
}
|
|
1852
|
+
|
|
1576
1853
|
.bg-coreColors-brandColorPrimary {
|
|
1577
1854
|
background-color: var(--coreColors-brandColorPrimary);
|
|
1578
1855
|
}
|
|
1856
|
+
|
|
1579
1857
|
.bg-coreColors-dividingLines {
|
|
1580
1858
|
background-color: var(--coreColors-dividingLines);
|
|
1581
1859
|
}
|
|
1860
|
+
|
|
1582
1861
|
.bg-coreColors-inputBackground {
|
|
1583
1862
|
background-color: var(--coreColors-inputBackground);
|
|
1584
1863
|
}
|
|
1864
|
+
|
|
1585
1865
|
.bg-coreColors-modalBackground {
|
|
1586
1866
|
background-color: var(--coreColors-modalBackground);
|
|
1587
1867
|
}
|
|
1868
|
+
|
|
1588
1869
|
.bg-coreColors-pageColor {
|
|
1589
1870
|
background-color: var(--coreColors-pageColor);
|
|
1590
1871
|
}
|
|
1872
|
+
|
|
1591
1873
|
.bg-gray-300 {
|
|
1592
1874
|
--tw-bg-opacity: 1;
|
|
1593
1875
|
background-color: rgb(209 213 219 / var(--tw-bg-opacity));
|
|
1594
1876
|
}
|
|
1877
|
+
|
|
1595
1878
|
.bg-productBadging-fill {
|
|
1596
1879
|
background-color: var(--productBadging-fill);
|
|
1597
1880
|
}
|
|
1881
|
+
|
|
1598
1882
|
.bg-stateColors-disabled {
|
|
1599
1883
|
background-color: var(--stateColors-disabled);
|
|
1600
1884
|
}
|
|
1885
|
+
|
|
1601
1886
|
.bg-stateColors-error {
|
|
1602
1887
|
background-color: var(--stateColors-error);
|
|
1603
1888
|
}
|
|
1889
|
+
|
|
1604
1890
|
.bg-stateColors-skeleton {
|
|
1605
1891
|
background-color: var(--stateColors-skeleton);
|
|
1606
1892
|
}
|
|
1893
|
+
|
|
1607
1894
|
.bg-stateColors-success {
|
|
1608
1895
|
background-color: var(--stateColors-success);
|
|
1609
1896
|
}
|
|
1897
|
+
|
|
1610
1898
|
.bg-stateColors-warning {
|
|
1611
1899
|
background-color: var(--stateColors-warning);
|
|
1612
1900
|
}
|
|
1901
|
+
|
|
1613
1902
|
.bg-transparent {
|
|
1614
1903
|
background-color: transparent;
|
|
1615
1904
|
}
|
|
1905
|
+
|
|
1616
1906
|
.bg-white {
|
|
1617
1907
|
--tw-bg-opacity: 1;
|
|
1618
1908
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1619
1909
|
}
|
|
1910
|
+
|
|
1620
1911
|
.bg-fade-left {
|
|
1621
1912
|
background-image: linear-gradient(to right, var(--coreColors-pageColor) 0%, #ffffff00 100%);;
|
|
1622
1913
|
}
|
|
1914
|
+
|
|
1623
1915
|
.bg-fade-right {
|
|
1624
1916
|
background-image: linear-gradient(to left, var(--coreColors-pageColor) 0%, #ffffff00 100%);;
|
|
1625
1917
|
}
|
|
1918
|
+
|
|
1626
1919
|
.bg-contain {
|
|
1627
1920
|
background-size: contain;
|
|
1628
1921
|
}
|
|
1922
|
+
|
|
1629
1923
|
.fill-current {
|
|
1630
1924
|
fill: currentColor;
|
|
1631
1925
|
}
|
|
1926
|
+
|
|
1632
1927
|
.object-contain {
|
|
1633
1928
|
-o-object-fit: contain;
|
|
1634
1929
|
object-fit: contain;
|
|
1635
1930
|
}
|
|
1931
|
+
|
|
1636
1932
|
.object-cover {
|
|
1637
1933
|
-o-object-fit: cover;
|
|
1638
1934
|
object-fit: cover;
|
|
1639
1935
|
}
|
|
1936
|
+
|
|
1640
1937
|
.p-0 {
|
|
1641
1938
|
padding: 0px;
|
|
1642
1939
|
}
|
|
1940
|
+
|
|
1643
1941
|
.p-1 {
|
|
1644
1942
|
padding: 0.25rem;
|
|
1645
1943
|
}
|
|
1944
|
+
|
|
1646
1945
|
.p-2 {
|
|
1647
1946
|
padding: 0.5rem;
|
|
1648
1947
|
}
|
|
1948
|
+
|
|
1649
1949
|
.p-3 {
|
|
1650
1950
|
padding: 0.75rem;
|
|
1651
1951
|
}
|
|
1952
|
+
|
|
1652
1953
|
.p-4 {
|
|
1653
1954
|
padding: 1rem;
|
|
1654
1955
|
}
|
|
1956
|
+
|
|
1655
1957
|
.p-6 {
|
|
1656
1958
|
padding: 1.5rem;
|
|
1657
1959
|
}
|
|
1960
|
+
|
|
1658
1961
|
.p-\[1px\] {
|
|
1659
1962
|
padding: 1px;
|
|
1660
1963
|
}
|
|
1964
|
+
|
|
1661
1965
|
.\!px-0 {
|
|
1662
1966
|
padding-left: 0px !important;
|
|
1663
1967
|
padding-right: 0px !important;
|
|
1664
1968
|
}
|
|
1969
|
+
|
|
1665
1970
|
.px-0 {
|
|
1666
1971
|
padding-left: 0px;
|
|
1667
1972
|
padding-right: 0px;
|
|
1668
1973
|
}
|
|
1974
|
+
|
|
1669
1975
|
.px-1 {
|
|
1670
1976
|
padding-left: 0.25rem;
|
|
1671
1977
|
padding-right: 0.25rem;
|
|
1672
1978
|
}
|
|
1979
|
+
|
|
1673
1980
|
.px-2 {
|
|
1674
1981
|
padding-left: 0.5rem;
|
|
1675
1982
|
padding-right: 0.5rem;
|
|
1676
1983
|
}
|
|
1984
|
+
|
|
1677
1985
|
.px-2\.5 {
|
|
1678
1986
|
padding-left: 0.625rem;
|
|
1679
1987
|
padding-right: 0.625rem;
|
|
1680
1988
|
}
|
|
1989
|
+
|
|
1681
1990
|
.px-3 {
|
|
1682
1991
|
padding-left: 0.75rem;
|
|
1683
1992
|
padding-right: 0.75rem;
|
|
1684
1993
|
}
|
|
1994
|
+
|
|
1685
1995
|
.px-4 {
|
|
1686
1996
|
padding-left: 1rem;
|
|
1687
1997
|
padding-right: 1rem;
|
|
1688
1998
|
}
|
|
1999
|
+
|
|
1689
2000
|
.px-5 {
|
|
1690
2001
|
padding-left: 1.25rem;
|
|
1691
2002
|
padding-right: 1.25rem;
|
|
1692
2003
|
}
|
|
2004
|
+
|
|
1693
2005
|
.px-8 {
|
|
1694
2006
|
padding-left: 2rem;
|
|
1695
2007
|
padding-right: 2rem;
|
|
1696
2008
|
}
|
|
2009
|
+
|
|
1697
2010
|
.py-1 {
|
|
1698
2011
|
padding-top: 0.25rem;
|
|
1699
2012
|
padding-bottom: 0.25rem;
|
|
1700
2013
|
}
|
|
2014
|
+
|
|
1701
2015
|
.py-2 {
|
|
1702
2016
|
padding-top: 0.5rem;
|
|
1703
2017
|
padding-bottom: 0.5rem;
|
|
1704
2018
|
}
|
|
2019
|
+
|
|
1705
2020
|
.py-3 {
|
|
1706
2021
|
padding-top: 0.75rem;
|
|
1707
2022
|
padding-bottom: 0.75rem;
|
|
1708
2023
|
}
|
|
2024
|
+
|
|
1709
2025
|
.py-4 {
|
|
1710
2026
|
padding-top: 1rem;
|
|
1711
2027
|
padding-bottom: 1rem;
|
|
1712
2028
|
}
|
|
2029
|
+
|
|
1713
2030
|
.pb-1 {
|
|
1714
2031
|
padding-bottom: 0.25rem;
|
|
1715
2032
|
}
|
|
2033
|
+
|
|
1716
2034
|
.pb-2 {
|
|
1717
2035
|
padding-bottom: 0.5rem;
|
|
1718
2036
|
}
|
|
2037
|
+
|
|
1719
2038
|
.pb-4 {
|
|
1720
2039
|
padding-bottom: 1rem;
|
|
1721
2040
|
}
|
|
2041
|
+
|
|
1722
2042
|
.pb-8 {
|
|
1723
2043
|
padding-bottom: 2rem;
|
|
1724
2044
|
}
|
|
2045
|
+
|
|
1725
2046
|
.pl-0 {
|
|
1726
2047
|
padding-left: 0px;
|
|
1727
2048
|
}
|
|
2049
|
+
|
|
1728
2050
|
.pl-10 {
|
|
1729
2051
|
padding-left: 2.5rem;
|
|
1730
2052
|
}
|
|
2053
|
+
|
|
1731
2054
|
.pl-2 {
|
|
1732
2055
|
padding-left: 0.5rem;
|
|
1733
2056
|
}
|
|
2057
|
+
|
|
1734
2058
|
.pl-4 {
|
|
1735
2059
|
padding-left: 1rem;
|
|
1736
2060
|
}
|
|
2061
|
+
|
|
1737
2062
|
.pl-8 {
|
|
1738
2063
|
padding-left: 2rem;
|
|
1739
2064
|
}
|
|
2065
|
+
|
|
1740
2066
|
.pr-0 {
|
|
1741
2067
|
padding-right: 0px;
|
|
1742
2068
|
}
|
|
2069
|
+
|
|
1743
2070
|
.pr-1 {
|
|
1744
2071
|
padding-right: 0.25rem;
|
|
1745
2072
|
}
|
|
2073
|
+
|
|
1746
2074
|
.pr-2 {
|
|
1747
2075
|
padding-right: 0.5rem;
|
|
1748
2076
|
}
|
|
2077
|
+
|
|
1749
2078
|
.pr-4 {
|
|
1750
2079
|
padding-right: 1rem;
|
|
1751
2080
|
}
|
|
2081
|
+
|
|
1752
2082
|
.pr-6 {
|
|
1753
2083
|
padding-right: 1.5rem;
|
|
1754
2084
|
}
|
|
2085
|
+
|
|
1755
2086
|
.pt-0 {
|
|
1756
2087
|
padding-top: 0px;
|
|
1757
2088
|
}
|
|
2089
|
+
|
|
1758
2090
|
.pt-12 {
|
|
1759
2091
|
padding-top: 3rem;
|
|
1760
2092
|
}
|
|
2093
|
+
|
|
1761
2094
|
.pt-2 {
|
|
1762
2095
|
padding-top: 0.5rem;
|
|
1763
2096
|
}
|
|
2097
|
+
|
|
1764
2098
|
.pt-4 {
|
|
1765
2099
|
padding-top: 1rem;
|
|
1766
2100
|
}
|
|
2101
|
+
|
|
1767
2102
|
.pt-5 {
|
|
1768
2103
|
padding-top: 1.25rem;
|
|
1769
2104
|
}
|
|
2105
|
+
|
|
1770
2106
|
.pt-6 {
|
|
1771
2107
|
padding-top: 1.5rem;
|
|
1772
2108
|
}
|
|
2109
|
+
|
|
1773
2110
|
.text-left {
|
|
1774
2111
|
text-align: left;
|
|
1775
2112
|
}
|
|
2113
|
+
|
|
1776
2114
|
.text-center {
|
|
1777
2115
|
text-align: center;
|
|
1778
2116
|
}
|
|
2117
|
+
|
|
1779
2118
|
.text-right {
|
|
1780
2119
|
text-align: right;
|
|
1781
2120
|
}
|
|
2121
|
+
|
|
1782
2122
|
.text-start {
|
|
1783
2123
|
text-align: start;
|
|
1784
2124
|
}
|
|
2125
|
+
|
|
1785
2126
|
.align-top {
|
|
1786
2127
|
vertical-align: top;
|
|
1787
2128
|
}
|
|
2129
|
+
|
|
1788
2130
|
.font-fontRegular {
|
|
1789
2131
|
font-family: var(--fontRegular);
|
|
1790
2132
|
}
|
|
2133
|
+
|
|
1791
2134
|
.text-2xl {
|
|
1792
2135
|
font-size: 1.5rem;
|
|
1793
2136
|
line-height: 2rem;
|
|
1794
2137
|
}
|
|
2138
|
+
|
|
1795
2139
|
.text-5xl {
|
|
1796
2140
|
font-size: 3rem;
|
|
1797
2141
|
line-height: 1;
|
|
1798
2142
|
}
|
|
2143
|
+
|
|
1799
2144
|
.text-\[10px\] {
|
|
1800
2145
|
font-size: 10px;
|
|
1801
2146
|
}
|
|
2147
|
+
|
|
1802
2148
|
.text-\[12px\] {
|
|
1803
2149
|
font-size: 12px;
|
|
1804
2150
|
}
|
|
2151
|
+
|
|
1805
2152
|
.text-\[14px\] {
|
|
1806
2153
|
font-size: 14px;
|
|
1807
2154
|
}
|
|
2155
|
+
|
|
1808
2156
|
.text-\[15px\] {
|
|
1809
2157
|
font-size: 15px;
|
|
1810
2158
|
}
|
|
2159
|
+
|
|
1811
2160
|
.text-\[18px\] {
|
|
1812
2161
|
font-size: 18px;
|
|
1813
2162
|
}
|
|
2163
|
+
|
|
1814
2164
|
.text-\[23px\] {
|
|
1815
2165
|
font-size: 23px;
|
|
1816
2166
|
}
|
|
2167
|
+
|
|
1817
2168
|
.text-base {
|
|
1818
2169
|
font-size: 1rem;
|
|
1819
2170
|
line-height: 1.5rem;
|
|
1820
2171
|
}
|
|
2172
|
+
|
|
1821
2173
|
.text-lg {
|
|
1822
2174
|
font-size: 1.125rem;
|
|
1823
2175
|
line-height: 1.75rem;
|
|
1824
2176
|
}
|
|
2177
|
+
|
|
1825
2178
|
.text-sm {
|
|
1826
2179
|
font-size: 0.875rem;
|
|
1827
2180
|
line-height: 1.25rem;
|
|
1828
2181
|
}
|
|
2182
|
+
|
|
1829
2183
|
.text-xs {
|
|
1830
2184
|
font-size: 0.75rem;
|
|
1831
2185
|
line-height: 1rem;
|
|
1832
2186
|
}
|
|
2187
|
+
|
|
1833
2188
|
.font-medium {
|
|
1834
2189
|
font-weight: 500;
|
|
1835
2190
|
}
|
|
2191
|
+
|
|
1836
2192
|
.font-normal {
|
|
1837
2193
|
font-weight: 400;
|
|
1838
2194
|
}
|
|
2195
|
+
|
|
1839
2196
|
.font-semibold {
|
|
1840
2197
|
font-weight: 600;
|
|
1841
2198
|
}
|
|
2199
|
+
|
|
1842
2200
|
.uppercase {
|
|
1843
2201
|
text-transform: uppercase;
|
|
1844
2202
|
}
|
|
2203
|
+
|
|
1845
2204
|
.lowercase {
|
|
1846
2205
|
text-transform: lowercase;
|
|
1847
2206
|
}
|
|
2207
|
+
|
|
1848
2208
|
.capitalize {
|
|
1849
2209
|
text-transform: capitalize;
|
|
1850
2210
|
}
|
|
2211
|
+
|
|
1851
2212
|
.leading-6 {
|
|
1852
2213
|
line-height: 1.5rem;
|
|
1853
2214
|
}
|
|
2215
|
+
|
|
1854
2216
|
.leading-\[130\%\] {
|
|
1855
2217
|
line-height: 130%;
|
|
1856
2218
|
}
|
|
2219
|
+
|
|
1857
2220
|
.leading-\[13px\] {
|
|
1858
2221
|
line-height: 13px;
|
|
1859
2222
|
}
|
|
2223
|
+
|
|
1860
2224
|
.leading-\[160\%\] {
|
|
1861
2225
|
line-height: 160%;
|
|
1862
2226
|
}
|
|
2227
|
+
|
|
1863
2228
|
.leading-\[24px\] {
|
|
1864
2229
|
line-height: 24px;
|
|
1865
2230
|
}
|
|
2231
|
+
|
|
1866
2232
|
.leading-none {
|
|
1867
2233
|
line-height: 1;
|
|
1868
2234
|
}
|
|
2235
|
+
|
|
1869
2236
|
.text-\[\#727272\] {
|
|
1870
2237
|
--tw-text-opacity: 1;
|
|
1871
2238
|
color: rgb(114 114 114 / var(--tw-text-opacity));
|
|
1872
2239
|
}
|
|
2240
|
+
|
|
1873
2241
|
.text-black {
|
|
1874
2242
|
--tw-text-opacity: 1;
|
|
1875
2243
|
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
1876
2244
|
}
|
|
2245
|
+
|
|
1877
2246
|
.text-buttonColors-destructiveText {
|
|
1878
2247
|
color: var(--buttonColors-destructiveText);
|
|
1879
2248
|
}
|
|
2249
|
+
|
|
1880
2250
|
.text-buttonColors-disabled {
|
|
1881
2251
|
color: var(--buttonColors-disabled);
|
|
1882
2252
|
}
|
|
2253
|
+
|
|
1883
2254
|
.text-buttonColors-primaryFill {
|
|
1884
2255
|
color: var(--buttonColors-primaryFill);
|
|
1885
2256
|
}
|
|
2257
|
+
|
|
1886
2258
|
.text-buttonColors-primaryOutline {
|
|
1887
2259
|
color: var(--buttonColors-primaryOutline);
|
|
1888
2260
|
}
|
|
2261
|
+
|
|
1889
2262
|
.text-buttonColors-primaryOutlineColor {
|
|
1890
2263
|
color: var(--buttonColors-primaryOutlineColor);
|
|
1891
2264
|
}
|
|
2265
|
+
|
|
1892
2266
|
.text-buttonColors-primaryOutlineEnabled {
|
|
1893
2267
|
color: var(--buttonColors-primaryOutlineEnabled);
|
|
1894
2268
|
}
|
|
2269
|
+
|
|
1895
2270
|
.text-buttonColors-primaryShadow {
|
|
1896
2271
|
color: var(--buttonColors-primaryShadow);
|
|
1897
2272
|
}
|
|
2273
|
+
|
|
1898
2274
|
.text-buttonColors-primaryText {
|
|
1899
2275
|
color: var(--buttonColors-primaryText);
|
|
1900
2276
|
}
|
|
2277
|
+
|
|
1901
2278
|
.text-buttonColors-secondaryFill {
|
|
1902
2279
|
color: var(--buttonColors-secondaryFill);
|
|
1903
2280
|
}
|
|
2281
|
+
|
|
1904
2282
|
.text-buttonColors-secondaryOutline {
|
|
1905
2283
|
color: var(--buttonColors-secondaryOutline);
|
|
1906
2284
|
}
|
|
2285
|
+
|
|
1907
2286
|
.text-buttonColors-secondaryOutlineColor {
|
|
1908
2287
|
color: var(--buttonColors-secondaryOutlineColor);
|
|
1909
2288
|
}
|
|
2289
|
+
|
|
1910
2290
|
.text-buttonColors-secondaryOutlineEnabled {
|
|
1911
2291
|
color: var(--buttonColors-secondaryOutlineEnabled);
|
|
1912
2292
|
}
|
|
2293
|
+
|
|
1913
2294
|
.text-buttonColors-secondaryShadow {
|
|
1914
2295
|
color: var(--buttonColors-secondaryShadow);
|
|
1915
2296
|
}
|
|
2297
|
+
|
|
1916
2298
|
.text-buttonColors-secondaryText {
|
|
1917
2299
|
color: var(--buttonColors-secondaryText);
|
|
1918
2300
|
}
|
|
2301
|
+
|
|
1919
2302
|
.text-coreColors-brandColorPrimary {
|
|
1920
2303
|
color: var(--coreColors-brandColorPrimary);
|
|
1921
2304
|
}
|
|
2305
|
+
|
|
1922
2306
|
.text-coreColors-dividingLines {
|
|
1923
2307
|
color: var(--coreColors-dividingLines);
|
|
1924
2308
|
}
|
|
2309
|
+
|
|
1925
2310
|
.text-coreColors-headerBackground {
|
|
1926
2311
|
color: var(--coreColors-headerBackground);
|
|
1927
2312
|
}
|
|
2313
|
+
|
|
1928
2314
|
.text-coreColors-headerIcon {
|
|
1929
2315
|
color: var(--coreColors-headerIcon);
|
|
1930
2316
|
}
|
|
2317
|
+
|
|
1931
2318
|
.text-coreColors-inputBackground {
|
|
1932
2319
|
color: var(--coreColors-inputBackground);
|
|
1933
2320
|
}
|
|
2321
|
+
|
|
1934
2322
|
.text-coreColors-modalBackground {
|
|
1935
2323
|
color: var(--coreColors-modalBackground);
|
|
1936
2324
|
}
|
|
2325
|
+
|
|
1937
2326
|
.text-coreColors-pageColor {
|
|
1938
2327
|
color: var(--coreColors-pageColor);
|
|
1939
2328
|
}
|
|
2329
|
+
|
|
1940
2330
|
.text-coreColors-primaryIcon {
|
|
1941
2331
|
color: var(--coreColors-primaryIcon);
|
|
1942
2332
|
}
|
|
2333
|
+
|
|
1943
2334
|
.text-coreColors-secondaryIcon {
|
|
1944
2335
|
color: var(--coreColors-secondaryIcon);
|
|
1945
2336
|
}
|
|
2337
|
+
|
|
1946
2338
|
.text-coreColors-shadow {
|
|
1947
2339
|
color: var(--coreColors-shadow);
|
|
1948
2340
|
}
|
|
2341
|
+
|
|
1949
2342
|
.text-coreColors-shadowsEnabled {
|
|
1950
2343
|
color: var(--coreColors-shadowsEnabled);
|
|
1951
2344
|
}
|
|
2345
|
+
|
|
1952
2346
|
.text-coreColors-tabBar {
|
|
1953
2347
|
color: var(--coreColors-tabBar);
|
|
1954
2348
|
}
|
|
2349
|
+
|
|
1955
2350
|
.text-current {
|
|
1956
2351
|
color: currentColor;
|
|
1957
2352
|
}
|
|
2353
|
+
|
|
1958
2354
|
.text-foreground\/50 {
|
|
1959
2355
|
color: hsl(var(--foreground) / 0.5);
|
|
1960
2356
|
}
|
|
2357
|
+
|
|
1961
2358
|
.text-muted-foreground {
|
|
1962
2359
|
color: hsl(var(--muted-foreground));
|
|
1963
2360
|
}
|
|
2361
|
+
|
|
1964
2362
|
.text-productBadging-text {
|
|
1965
2363
|
color: var(--productBadging-text);
|
|
1966
2364
|
}
|
|
2365
|
+
|
|
1967
2366
|
.text-stateColors-disabled {
|
|
1968
2367
|
color: var(--stateColors-disabled);
|
|
1969
2368
|
}
|
|
2369
|
+
|
|
1970
2370
|
.text-stateColors-error {
|
|
1971
2371
|
color: var(--stateColors-error);
|
|
1972
2372
|
}
|
|
2373
|
+
|
|
1973
2374
|
.text-stateColors-favorites {
|
|
1974
2375
|
color: var(--stateColors-favorites);
|
|
1975
2376
|
}
|
|
2377
|
+
|
|
1976
2378
|
.text-stateColors-reviews {
|
|
1977
2379
|
color: var(--stateColors-reviews);
|
|
1978
2380
|
}
|
|
2381
|
+
|
|
1979
2382
|
.text-stateColors-skeleton {
|
|
1980
2383
|
color: var(--stateColors-skeleton);
|
|
1981
2384
|
}
|
|
2385
|
+
|
|
1982
2386
|
.text-stateColors-subscriptions {
|
|
1983
2387
|
color: var(--stateColors-subscriptions);
|
|
1984
2388
|
}
|
|
2389
|
+
|
|
1985
2390
|
.text-stateColors-success {
|
|
1986
2391
|
color: var(--stateColors-success);
|
|
1987
2392
|
}
|
|
2393
|
+
|
|
1988
2394
|
.text-stateColors-warning {
|
|
1989
2395
|
color: var(--stateColors-warning);
|
|
1990
2396
|
}
|
|
2397
|
+
|
|
1991
2398
|
.text-textColors-legalText {
|
|
1992
2399
|
color: var(--textColors-legalText);
|
|
1993
2400
|
}
|
|
2401
|
+
|
|
1994
2402
|
.text-textColors-pageTitle {
|
|
1995
2403
|
color: var(--textColors-pageTitle);
|
|
1996
2404
|
}
|
|
2405
|
+
|
|
1997
2406
|
.text-textColors-priceText {
|
|
1998
2407
|
color: var(--textColors-priceText);
|
|
1999
2408
|
}
|
|
2409
|
+
|
|
2000
2410
|
.text-textColors-primaryColor {
|
|
2001
2411
|
color: var(--textColors-primaryColor, #121212ff);
|
|
2002
2412
|
}
|
|
2413
|
+
|
|
2003
2414
|
.text-textColors-productTitle {
|
|
2004
2415
|
color: var(--textColors-productTitle);
|
|
2005
2416
|
}
|
|
2417
|
+
|
|
2006
2418
|
.text-textColors-salePriceText {
|
|
2007
2419
|
color: var(--textColors-salePriceText);
|
|
2008
2420
|
}
|
|
2421
|
+
|
|
2009
2422
|
.text-textColors-secondaryColor {
|
|
2010
2423
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
2011
2424
|
}
|
|
2425
|
+
|
|
2012
2426
|
.text-textColors-strikethroughPriceText {
|
|
2013
2427
|
color: var(--textColors-strikethroughPriceText);
|
|
2014
2428
|
}
|
|
2429
|
+
|
|
2015
2430
|
.text-white {
|
|
2016
2431
|
--tw-text-opacity: 1;
|
|
2017
2432
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2018
2433
|
}
|
|
2434
|
+
|
|
2019
2435
|
.line-through {
|
|
2020
2436
|
text-decoration-line: line-through;
|
|
2021
2437
|
}
|
|
2438
|
+
|
|
2022
2439
|
.underline-offset-4 {
|
|
2023
2440
|
text-underline-offset: 4px;
|
|
2024
2441
|
}
|
|
2442
|
+
|
|
2025
2443
|
.opacity-0 {
|
|
2026
2444
|
opacity: 0;
|
|
2027
2445
|
}
|
|
2446
|
+
|
|
2028
2447
|
.opacity-100 {
|
|
2029
2448
|
opacity: 1;
|
|
2030
2449
|
}
|
|
2450
|
+
|
|
2031
2451
|
.opacity-50 {
|
|
2032
2452
|
opacity: 0.5;
|
|
2033
2453
|
}
|
|
2454
|
+
|
|
2034
2455
|
.shadow {
|
|
2035
2456
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
2036
2457
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
2037
2458
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2038
2459
|
}
|
|
2460
|
+
|
|
2039
2461
|
.shadow-\[0_0_6px_0_rgba\(17\2c 17\2c 17\2c 0\.16\)\] {
|
|
2040
2462
|
--tw-shadow: 0 0 6px 0 rgba(17,17,17,0.16);
|
|
2041
2463
|
--tw-shadow-colored: 0 0 6px 0 var(--tw-shadow-color);
|
|
2042
2464
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2043
2465
|
}
|
|
2466
|
+
|
|
2044
2467
|
.shadow-lg {
|
|
2045
2468
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
2046
2469
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
2047
2470
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2048
2471
|
}
|
|
2472
|
+
|
|
2049
2473
|
.shadow-md {
|
|
2050
2474
|
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
2051
2475
|
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
2052
2476
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2053
2477
|
}
|
|
2478
|
+
|
|
2054
2479
|
.shadow-primary {
|
|
2055
2480
|
--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);;
|
|
2056
2481
|
--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);;
|
|
2057
2482
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2058
2483
|
}
|
|
2484
|
+
|
|
2059
2485
|
.shadow-secondary {
|
|
2060
2486
|
--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);;
|
|
2061
2487
|
--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);;
|
|
2062
2488
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2063
2489
|
}
|
|
2490
|
+
|
|
2064
2491
|
.shadow-buttonColors-primaryShadow {
|
|
2065
2492
|
--tw-shadow-color: var(--buttonColors-primaryShadow);
|
|
2066
2493
|
--tw-shadow: var(--tw-shadow-colored);
|
|
2067
2494
|
}
|
|
2495
|
+
|
|
2068
2496
|
.shadow-primary {
|
|
2069
2497
|
--tw-shadow-color: hsl(var(--primary));
|
|
2070
2498
|
--tw-shadow: var(--tw-shadow-colored);
|
|
2071
2499
|
}
|
|
2500
|
+
|
|
2072
2501
|
.shadow-secondary {
|
|
2073
2502
|
--tw-shadow-color: hsl(var(--secondary));
|
|
2074
2503
|
--tw-shadow: var(--tw-shadow-colored);
|
|
2075
2504
|
}
|
|
2505
|
+
|
|
2076
2506
|
.outline-none {
|
|
2077
2507
|
outline: 2px solid transparent;
|
|
2078
2508
|
outline-offset: 2px;
|
|
2079
2509
|
}
|
|
2510
|
+
|
|
2080
2511
|
.outline {
|
|
2081
2512
|
outline-style: solid;
|
|
2082
2513
|
}
|
|
2514
|
+
|
|
2083
2515
|
.outline-0 {
|
|
2084
2516
|
outline-width: 0px;
|
|
2085
2517
|
}
|
|
2518
|
+
|
|
2086
2519
|
.outline-1 {
|
|
2087
2520
|
outline-width: 1px;
|
|
2088
2521
|
}
|
|
2522
|
+
|
|
2089
2523
|
.outline-coreColors-brandColorPrimary {
|
|
2090
2524
|
outline-color: var(--coreColors-brandColorPrimary);
|
|
2091
2525
|
}
|
|
2526
|
+
|
|
2092
2527
|
.outline-coreColors-dividingLines {
|
|
2093
2528
|
outline-color: var(--coreColors-dividingLines);
|
|
2094
2529
|
}
|
|
2530
|
+
|
|
2095
2531
|
.outline-stateColors-error {
|
|
2096
2532
|
outline-color: var(--stateColors-error);
|
|
2097
2533
|
}
|
|
2534
|
+
|
|
2098
2535
|
.outline-stateColors-skeleton {
|
|
2099
2536
|
outline-color: var(--stateColors-skeleton);
|
|
2100
2537
|
}
|
|
2538
|
+
|
|
2101
2539
|
.outline-transparent {
|
|
2102
2540
|
outline-color: transparent;
|
|
2103
2541
|
}
|
|
2542
|
+
|
|
2104
2543
|
.ring-0 {
|
|
2105
2544
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2106
2545
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2107
2546
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2108
2547
|
}
|
|
2548
|
+
|
|
2109
2549
|
.ring-offset-background {
|
|
2110
2550
|
--tw-ring-offset-color: hsl(var(--background));
|
|
2111
2551
|
}
|
|
2552
|
+
|
|
2112
2553
|
.drop-shadow-\[0_3px_1px_0_rgba\(0\2c 0\2c 0\2c 1\)\] {
|
|
2113
2554
|
--tw-drop-shadow: drop-shadow(0 3px 1px 0 rgba(0,0,0,1));
|
|
2114
2555
|
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);
|
|
2115
2556
|
}
|
|
2557
|
+
|
|
2116
2558
|
.filter {
|
|
2117
2559
|
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);
|
|
2118
2560
|
}
|
|
2561
|
+
|
|
2119
2562
|
.transition {
|
|
2120
2563
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
2121
2564
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
@@ -2123,88 +2566,108 @@ video {
|
|
|
2123
2566
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2124
2567
|
transition-duration: 150ms;
|
|
2125
2568
|
}
|
|
2569
|
+
|
|
2126
2570
|
.transition-all {
|
|
2127
2571
|
transition-property: all;
|
|
2128
2572
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2129
2573
|
transition-duration: 150ms;
|
|
2130
2574
|
}
|
|
2575
|
+
|
|
2131
2576
|
.transition-colors {
|
|
2132
2577
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
2133
2578
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2134
2579
|
transition-duration: 150ms;
|
|
2135
2580
|
}
|
|
2581
|
+
|
|
2136
2582
|
.transition-opacity {
|
|
2137
2583
|
transition-property: opacity;
|
|
2138
2584
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2139
2585
|
transition-duration: 150ms;
|
|
2140
2586
|
}
|
|
2587
|
+
|
|
2141
2588
|
.transition-transform {
|
|
2142
2589
|
transition-property: transform;
|
|
2143
2590
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2144
2591
|
transition-duration: 150ms;
|
|
2145
2592
|
}
|
|
2593
|
+
|
|
2146
2594
|
.duration-150 {
|
|
2147
2595
|
transition-duration: 150ms;
|
|
2148
2596
|
}
|
|
2597
|
+
|
|
2149
2598
|
.duration-200 {
|
|
2150
2599
|
transition-duration: 200ms;
|
|
2151
2600
|
}
|
|
2601
|
+
|
|
2152
2602
|
.duration-300 {
|
|
2153
2603
|
transition-duration: 300ms;
|
|
2154
2604
|
}
|
|
2605
|
+
|
|
2155
2606
|
.duration-500 {
|
|
2156
2607
|
transition-duration: 500ms;
|
|
2157
2608
|
}
|
|
2609
|
+
|
|
2158
2610
|
.ease-in-out {
|
|
2159
2611
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2160
2612
|
}
|
|
2161
|
-
@keyframes enter {
|
|
2162
2613
|
|
|
2614
|
+
@keyframes enter {
|
|
2163
2615
|
from {
|
|
2164
2616
|
opacity: var(--tw-enter-opacity, 1);
|
|
2165
2617
|
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));
|
|
2166
2618
|
}
|
|
2167
2619
|
}
|
|
2168
|
-
@keyframes exit {
|
|
2169
2620
|
|
|
2621
|
+
@keyframes exit {
|
|
2170
2622
|
to {
|
|
2171
2623
|
opacity: var(--tw-exit-opacity, 1);
|
|
2172
2624
|
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));
|
|
2173
2625
|
}
|
|
2174
2626
|
}
|
|
2627
|
+
|
|
2175
2628
|
.duration-150 {
|
|
2176
2629
|
animation-duration: 150ms;
|
|
2177
2630
|
}
|
|
2631
|
+
|
|
2178
2632
|
.duration-200 {
|
|
2179
2633
|
animation-duration: 200ms;
|
|
2180
2634
|
}
|
|
2635
|
+
|
|
2181
2636
|
.duration-300 {
|
|
2182
2637
|
animation-duration: 300ms;
|
|
2183
2638
|
}
|
|
2639
|
+
|
|
2184
2640
|
.duration-500 {
|
|
2185
2641
|
animation-duration: 500ms;
|
|
2186
2642
|
}
|
|
2643
|
+
|
|
2187
2644
|
.ease-in-out {
|
|
2188
2645
|
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2189
2646
|
}
|
|
2647
|
+
|
|
2190
2648
|
.container {
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2649
|
+
padding-right: 16px;
|
|
2650
|
+
padding-left: 16px;
|
|
2651
|
+
}
|
|
2652
|
+
|
|
2194
2653
|
*:hover {
|
|
2195
|
-
|
|
2196
|
-
|
|
2654
|
+
text-decoration-line: unset !important;
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2197
2657
|
.\[-ms-overflow-style\:none\] {
|
|
2198
2658
|
-ms-overflow-style: none;
|
|
2199
2659
|
}
|
|
2660
|
+
|
|
2200
2661
|
.\[scrollbar-width\:none\] {
|
|
2201
2662
|
scrollbar-width: none;
|
|
2202
2663
|
}
|
|
2203
2664
|
|
|
2204
2665
|
body::-webkit-scrollbar {
|
|
2205
2666
|
display: none;
|
|
2206
|
-
-ms-overflow-style: none;
|
|
2207
|
-
|
|
2667
|
+
-ms-overflow-style: none;
|
|
2668
|
+
/* IE and Edge */
|
|
2669
|
+
scrollbar-width: none;
|
|
2670
|
+
/* Firefox */
|
|
2208
2671
|
}
|
|
2209
2672
|
|
|
2210
2673
|
.gradient-right::before,
|
|
@@ -2595,7 +3058,6 @@ body::-webkit-scrollbar {
|
|
|
2595
3058
|
}
|
|
2596
3059
|
|
|
2597
3060
|
@keyframes accordion-up {
|
|
2598
|
-
|
|
2599
3061
|
from {
|
|
2600
3062
|
height: var(--radix-accordion-content-height);
|
|
2601
3063
|
}
|
|
@@ -2610,7 +3072,6 @@ body::-webkit-scrollbar {
|
|
|
2610
3072
|
}
|
|
2611
3073
|
|
|
2612
3074
|
@keyframes accordion-down {
|
|
2613
|
-
|
|
2614
3075
|
from {
|
|
2615
3076
|
height: 0;
|
|
2616
3077
|
}
|
|
@@ -2751,7 +3212,6 @@ body::-webkit-scrollbar {
|
|
|
2751
3212
|
}
|
|
2752
3213
|
|
|
2753
3214
|
@media (min-width: 640px) {
|
|
2754
|
-
|
|
2755
3215
|
.sm\:mt-0 {
|
|
2756
3216
|
margin-top: 0px;
|
|
2757
3217
|
}
|