jett.admin.npmpackage 1.0.100 → 2.0.1

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.
Files changed (4) hide show
  1. package/dist/index.css +1434 -1434
  2. package/dist/index.js +1430 -1424
  3. package/dist/index.mjs +1395 -1389
  4. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -1,1434 +1,1434 @@
1
- /* dist/index.css */
2
- @layer properties;
3
- @layer theme, base, components, utilities;
4
- @layer theme {
5
- :root,
6
- :host {
7
- --font-sans:
8
- ui-sans-serif,
9
- system-ui,
10
- sans-serif,
11
- "Apple Color Emoji",
12
- "Segoe UI Emoji",
13
- "Segoe UI Symbol",
14
- "Noto Color Emoji";
15
- --font-mono:
16
- ui-monospace,
17
- SFMono-Regular,
18
- Menlo,
19
- Monaco,
20
- Consolas,
21
- "Liberation Mono",
22
- "Courier New",
23
- monospace;
24
- --color-red-50: oklch(97.1% 0.013 17.38);
25
- --color-red-100: oklch(93.6% 0.032 17.717);
26
- --color-red-500: oklch(63.7% 0.237 25.331);
27
- --color-red-800: oklch(44.4% 0.177 26.899);
28
- --color-red-900: oklch(39.6% 0.141 25.723);
29
- --color-yellow-100: oklch(97.3% 0.071 103.193);
30
- --color-yellow-800: oklch(47.6% 0.114 61.907);
31
- --color-yellow-900: oklch(42.1% 0.095 57.708);
32
- --color-green-100: oklch(96.2% 0.044 156.743);
33
- --color-green-800: oklch(44.8% 0.119 151.328);
34
- --color-green-900: oklch(39.3% 0.095 152.535);
35
- --color-blue-600: oklch(54.6% 0.245 262.881);
36
- --color-gray-50: oklch(98.5% 0.002 247.839);
37
- --color-gray-100: oklch(96.7% 0.003 264.542);
38
- --color-gray-200: oklch(92.8% 0.006 264.531);
39
- --color-gray-300: oklch(87.2% 0.01 258.338);
40
- --color-gray-400: oklch(70.7% 0.022 261.325);
41
- --color-gray-500: oklch(55.1% 0.027 264.364);
42
- --color-gray-600: oklch(44.6% 0.03 256.802);
43
- --color-gray-700: oklch(37.3% 0.034 259.733);
44
- --color-gray-800: oklch(27.8% 0.033 256.848);
45
- --color-black: #000;
46
- --color-white: #fff;
47
- --spacing: 0.25rem;
48
- --text-xs: 0.75rem;
49
- --text-xs--line-height: calc(1 / 0.75);
50
- --text-sm: 0.875rem;
51
- --text-sm--line-height: calc(1.25 / 0.875);
52
- --text-base: 1rem;
53
- --text-base--line-height: calc(1.5 / 1);
54
- --text-lg: 1.125rem;
55
- --text-lg--line-height: calc(1.75 / 1.125);
56
- --font-weight-normal: 400;
57
- --font-weight-medium: 500;
58
- --font-weight-semibold: 600;
59
- --radius-sm: 0.25rem;
60
- --radius-md: 0.375rem;
61
- --radius-lg: 0.5rem;
62
- --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
63
- --default-transition-duration: 150ms;
64
- --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
65
- --default-font-family: var(--font-sans);
66
- --default-mono-font-family: var(--font-mono);
67
- --color-primary: rgb(63, 63, 70);
68
- }
69
- }
70
- @layer base {
71
- *,
72
- ::after,
73
- ::before,
74
- ::backdrop,
75
- ::file-selector-button {
76
- box-sizing: border-box;
77
- margin: 0;
78
- padding: 0;
79
- border: 0 solid;
80
- }
81
- html,
82
- :host {
83
- line-height: 1.5;
84
- -webkit-text-size-adjust: 100%;
85
- tab-size: 4;
86
- font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
87
- font-feature-settings: var(--default-font-feature-settings, normal);
88
- font-variation-settings: var(--default-font-variation-settings, normal);
89
- -webkit-tap-highlight-color: transparent;
90
- }
91
- hr {
92
- height: 0;
93
- color: inherit;
94
- border-top-width: 1px;
95
- }
96
- abbr:where([title]) {
97
- -webkit-text-decoration: underline dotted;
98
- text-decoration: underline dotted;
99
- }
100
- h1,
101
- h2,
102
- h3,
103
- h4,
104
- h5,
105
- h6 {
106
- font-size: inherit;
107
- font-weight: inherit;
108
- }
109
- a {
110
- color: inherit;
111
- -webkit-text-decoration: inherit;
112
- text-decoration: inherit;
113
- }
114
- b,
115
- strong {
116
- font-weight: bolder;
117
- }
118
- code,
119
- kbd,
120
- samp,
121
- pre {
122
- font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
123
- font-feature-settings: var(--default-mono-font-feature-settings, normal);
124
- font-variation-settings: var(--default-mono-font-variation-settings, normal);
125
- font-size: 1em;
126
- }
127
- small {
128
- font-size: 80%;
129
- }
130
- sub,
131
- sup {
132
- font-size: 75%;
133
- line-height: 0;
134
- position: relative;
135
- vertical-align: baseline;
136
- }
137
- sub {
138
- bottom: -0.25em;
139
- }
140
- sup {
141
- top: -0.5em;
142
- }
143
- table {
144
- text-indent: 0;
145
- border-color: inherit;
146
- border-collapse: collapse;
147
- }
148
- :-moz-focusring {
149
- outline: auto;
150
- }
151
- progress {
152
- vertical-align: baseline;
153
- }
154
- summary {
155
- display: list-item;
156
- }
157
- ol,
158
- ul,
159
- menu {
160
- list-style: none;
161
- }
162
- img,
163
- svg,
164
- video,
165
- canvas,
166
- audio,
167
- iframe,
168
- embed,
169
- object {
170
- display: block;
171
- vertical-align: middle;
172
- }
173
- img,
174
- video {
175
- max-width: 100%;
176
- height: auto;
177
- }
178
- button,
179
- input,
180
- select,
181
- optgroup,
182
- textarea,
183
- ::file-selector-button {
184
- font: inherit;
185
- font-feature-settings: inherit;
186
- font-variation-settings: inherit;
187
- letter-spacing: inherit;
188
- color: inherit;
189
- border-radius: 0;
190
- background-color: transparent;
191
- opacity: 1;
192
- }
193
- :where(select:is([multiple], [size])) optgroup {
194
- font-weight: bolder;
195
- }
196
- :where(select:is([multiple], [size])) optgroup option {
197
- padding-inline-start: 20px;
198
- }
199
- ::file-selector-button {
200
- margin-inline-end: 4px;
201
- }
202
- ::placeholder {
203
- opacity: 1;
204
- }
205
- @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
206
- ::placeholder {
207
- color: currentcolor;
208
- @supports (color: color-mix(in lab, red, red)) {
209
- color: color-mix(in oklab, currentcolor 50%, transparent);
210
- }
211
- }
212
- }
213
- textarea {
214
- resize: vertical;
215
- }
216
- ::-webkit-search-decoration {
217
- -webkit-appearance: none;
218
- }
219
- ::-webkit-date-and-time-value {
220
- min-height: 1lh;
221
- text-align: inherit;
222
- }
223
- ::-webkit-datetime-edit {
224
- display: inline-flex;
225
- }
226
- ::-webkit-datetime-edit-fields-wrapper {
227
- padding: 0;
228
- }
229
- ::-webkit-datetime-edit,
230
- ::-webkit-datetime-edit-year-field,
231
- ::-webkit-datetime-edit-month-field,
232
- ::-webkit-datetime-edit-day-field,
233
- ::-webkit-datetime-edit-hour-field,
234
- ::-webkit-datetime-edit-minute-field,
235
- ::-webkit-datetime-edit-second-field,
236
- ::-webkit-datetime-edit-millisecond-field,
237
- ::-webkit-datetime-edit-meridiem-field {
238
- padding-block: 0;
239
- }
240
- ::-webkit-calendar-picker-indicator {
241
- line-height: 1;
242
- }
243
- :-moz-ui-invalid {
244
- box-shadow: none;
245
- }
246
- button,
247
- input:where([type=button], [type=reset], [type=submit]),
248
- ::file-selector-button {
249
- appearance: button;
250
- }
251
- ::-webkit-inner-spin-button,
252
- ::-webkit-outer-spin-button {
253
- height: auto;
254
- }
255
- [hidden]:where(:not([hidden=until-found])) {
256
- display: none !important;
257
- }
258
- }
259
- @layer utilities {
260
- .visible {
261
- visibility: visible;
262
- }
263
- .sr-only {
264
- position: absolute;
265
- width: 1px;
266
- height: 1px;
267
- padding: 0;
268
- margin: -1px;
269
- overflow: hidden;
270
- clip-path: inset(50%);
271
- white-space: nowrap;
272
- border-width: 0;
273
- }
274
- .absolute {
275
- position: absolute;
276
- }
277
- .fixed {
278
- position: fixed;
279
- }
280
- .relative {
281
- position: relative;
282
- }
283
- .sticky {
284
- position: sticky;
285
- }
286
- .inset-0 {
287
- inset: calc(var(--spacing) * 0);
288
- }
289
- .top-0 {
290
- top: calc(var(--spacing) * 0);
291
- }
292
- .top-full {
293
- top: 100%;
294
- }
295
- .right-0 {
296
- right: calc(var(--spacing) * 0);
297
- }
298
- .bottom-0 {
299
- bottom: calc(var(--spacing) * 0);
300
- }
301
- .left-0 {
302
- left: calc(var(--spacing) * 0);
303
- }
304
- .z-10 {
305
- z-index: 10;
306
- }
307
- .z-40 {
308
- z-index: 40;
309
- }
310
- .z-50 {
311
- z-index: 50;
312
- }
313
- .mt-1 {
314
- margin-top: calc(var(--spacing) * 1);
315
- }
316
- .mt-2 {
317
- margin-top: calc(var(--spacing) * 2);
318
- }
319
- .mt-auto {
320
- margin-top: auto;
321
- }
322
- .mr-2 {
323
- margin-right: calc(var(--spacing) * 2);
324
- }
325
- .mr-\[8px\] {
326
- margin-right: 8px;
327
- }
328
- .mb-1 {
329
- margin-bottom: calc(var(--spacing) * 1);
330
- }
331
- .mb-2 {
332
- margin-bottom: calc(var(--spacing) * 2);
333
- }
334
- .mb-4 {
335
- margin-bottom: calc(var(--spacing) * 4);
336
- }
337
- .mb-6 {
338
- margin-bottom: calc(var(--spacing) * 6);
339
- }
340
- .ml-2 {
341
- margin-left: calc(var(--spacing) * 2);
342
- }
343
- .ml-4 {
344
- margin-left: calc(var(--spacing) * 4);
345
- }
346
- .ml-8 {
347
- margin-left: calc(var(--spacing) * 8);
348
- }
349
- .ml-\[2px\] {
350
- margin-left: 2px;
351
- }
352
- .ml-\[16px\] {
353
- margin-left: 16px;
354
- }
355
- .ml-\[20px\] {
356
- margin-left: 20px;
357
- }
358
- .ml-auto {
359
- margin-left: auto;
360
- }
361
- .flex {
362
- display: flex;
363
- }
364
- .hidden {
365
- display: none;
366
- }
367
- .inline-block {
368
- display: inline-block;
369
- }
370
- .inline-flex {
371
- display: inline-flex;
372
- }
373
- .table {
374
- display: table;
375
- }
376
- .h-2 {
377
- height: calc(var(--spacing) * 2);
378
- }
379
- .h-4 {
380
- height: calc(var(--spacing) * 4);
381
- }
382
- .h-6 {
383
- height: calc(var(--spacing) * 6);
384
- }
385
- .h-7 {
386
- height: calc(var(--spacing) * 7);
387
- }
388
- .h-8 {
389
- height: calc(var(--spacing) * 8);
390
- }
391
- .h-9 {
392
- height: calc(var(--spacing) * 9);
393
- }
394
- .h-10 {
395
- height: calc(var(--spacing) * 10);
396
- }
397
- .h-\[60px\] {
398
- height: 60px;
399
- }
400
- .h-\[90px\] {
401
- height: 90px;
402
- }
403
- .h-auto {
404
- height: auto;
405
- }
406
- .h-full {
407
- height: 100%;
408
- }
409
- .max-h-0 {
410
- max-height: calc(var(--spacing) * 0);
411
- }
412
- .max-h-60 {
413
- max-height: calc(var(--spacing) * 60);
414
- }
415
- .max-h-\[100vh\] {
416
- max-height: 100vh;
417
- }
418
- .max-h-\[1000px\] {
419
- max-height: 1000px;
420
- }
421
- .min-h-10 {
422
- min-height: calc(var(--spacing) * 10);
423
- }
424
- .min-h-\[50px\] {
425
- min-height: 50px;
426
- }
427
- .min-h-full {
428
- min-height: 100%;
429
- }
430
- .w-4 {
431
- width: calc(var(--spacing) * 4);
432
- }
433
- .w-6 {
434
- width: calc(var(--spacing) * 6);
435
- }
436
- .w-7 {
437
- width: calc(var(--spacing) * 7);
438
- }
439
- .w-9 {
440
- width: calc(var(--spacing) * 9);
441
- }
442
- .w-10 {
443
- width: calc(var(--spacing) * 10);
444
- }
445
- .w-11 {
446
- width: calc(var(--spacing) * 11);
447
- }
448
- .w-16 {
449
- width: calc(var(--spacing) * 16);
450
- }
451
- .w-20 {
452
- width: calc(var(--spacing) * 20);
453
- }
454
- .w-\[50px\] {
455
- width: 50px;
456
- }
457
- .w-\[320px\] {
458
- width: 320px;
459
- }
460
- .w-full {
461
- width: 100%;
462
- }
463
- .min-w-9 {
464
- min-width: calc(var(--spacing) * 9);
465
- }
466
- .min-w-\[100\%\] {
467
- min-width: 100%;
468
- }
469
- .flex-1 {
470
- flex: 1;
471
- }
472
- .shrink-0 {
473
- flex-shrink: 0;
474
- }
475
- .table-fixed {
476
- table-layout: fixed;
477
- }
478
- .caption-bottom {
479
- caption-side: bottom;
480
- }
481
- .border-collapse {
482
- border-collapse: collapse;
483
- }
484
- .-translate-x-full {
485
- --tw-translate-x: -100%;
486
- translate: var(--tw-translate-x) var(--tw-translate-y);
487
- }
488
- .translate-x-0 {
489
- --tw-translate-x: calc(var(--spacing) * 0);
490
- translate: var(--tw-translate-x) var(--tw-translate-y);
491
- }
492
- .translate-x-1 {
493
- --tw-translate-x: calc(var(--spacing) * 1);
494
- translate: var(--tw-translate-x) var(--tw-translate-y);
495
- }
496
- .translate-x-6 {
497
- --tw-translate-x: calc(var(--spacing) * 6);
498
- translate: var(--tw-translate-x) var(--tw-translate-y);
499
- }
500
- .translate-x-8 {
501
- --tw-translate-x: calc(var(--spacing) * 8);
502
- translate: var(--tw-translate-x) var(--tw-translate-y);
503
- }
504
- .translate-x-\[100\%\] {
505
- --tw-translate-x: 100%;
506
- translate: var(--tw-translate-x) var(--tw-translate-y);
507
- }
508
- .rotate-180 {
509
- rotate: 180deg;
510
- }
511
- .transform {
512
- transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
513
- }
514
- .cursor-not-allowed {
515
- cursor: not-allowed;
516
- }
517
- .cursor-pointer {
518
- cursor: pointer;
519
- }
520
- .cursor-text {
521
- cursor: text;
522
- }
523
- .flex-col {
524
- flex-direction: column;
525
- }
526
- .flex-col-reverse {
527
- flex-direction: column-reverse;
528
- }
529
- .flex-wrap {
530
- flex-wrap: wrap;
531
- }
532
- .items-center {
533
- align-items: center;
534
- }
535
- .justify-between {
536
- justify-content: space-between;
537
- }
538
- .justify-center {
539
- justify-content: center;
540
- }
541
- .justify-end {
542
- justify-content: flex-end;
543
- }
544
- .gap-1 {
545
- gap: calc(var(--spacing) * 1);
546
- }
547
- .gap-2 {
548
- gap: calc(var(--spacing) * 2);
549
- }
550
- .gap-3 {
551
- gap: calc(var(--spacing) * 3);
552
- }
553
- .gap-4 {
554
- gap: calc(var(--spacing) * 4);
555
- }
556
- .truncate {
557
- overflow: hidden;
558
- text-overflow: ellipsis;
559
- white-space: nowrap;
560
- }
561
- .overflow-auto {
562
- overflow: auto;
563
- }
564
- .overflow-hidden {
565
- overflow: hidden;
566
- }
567
- .overflow-x-auto {
568
- overflow-x: auto;
569
- }
570
- .overflow-x-hidden {
571
- overflow-x: hidden;
572
- }
573
- .overflow-y-auto {
574
- overflow-y: auto;
575
- }
576
- .rounded {
577
- border-radius: 0.25rem;
578
- }
579
- .rounded-\[6px\] {
580
- border-radius: 6px;
581
- }
582
- .rounded-full {
583
- border-radius: calc(infinity * 1px);
584
- }
585
- .rounded-lg {
586
- border-radius: var(--radius-lg);
587
- }
588
- .rounded-md {
589
- border-radius: var(--radius-md);
590
- }
591
- .rounded-sm {
592
- border-radius: var(--radius-sm);
593
- }
594
- .border {
595
- border-style: var(--tw-border-style);
596
- border-width: 1px;
597
- }
598
- .border-2 {
599
- border-style: var(--tw-border-style);
600
- border-width: 2px;
601
- }
602
- .border-t {
603
- border-top-style: var(--tw-border-style);
604
- border-top-width: 1px;
605
- }
606
- .border-r {
607
- border-right-style: var(--tw-border-style);
608
- border-right-width: 1px;
609
- }
610
- .border-b {
611
- border-bottom-style: var(--tw-border-style);
612
- border-bottom-width: 1px;
613
- }
614
- .border-dashed {
615
- --tw-border-style: dashed;
616
- border-style: dashed;
617
- }
618
- .border-\[\#e5e5e5\] {
619
- border-color: #e5e5e5;
620
- }
621
- .border-\[\#e6e6e6\] {
622
- border-color: #e6e6e6;
623
- }
624
- .border-\[hsl\(0_0\%_89\.8\%\)\] {
625
- border-color: hsl(0 0% 89.8%);
626
- }
627
- .border-blue-600 {
628
- border-color: var(--color-blue-600);
629
- }
630
- .border-gray-200 {
631
- border-color: var(--color-gray-200);
632
- }
633
- .border-gray-300 {
634
- border-color: var(--color-gray-300);
635
- }
636
- .border-gray-400 {
637
- border-color: var(--color-gray-400);
638
- }
639
- .border-primary {
640
- border-color: var(--color-primary);
641
- }
642
- .border-red-500 {
643
- border-color: var(--color-red-500);
644
- }
645
- .bg-\[\#F7FAFC\] {
646
- background-color: #F7FAFC;
647
- }
648
- .bg-\[\#ef4444\] {
649
- background-color: #ef4444;
650
- }
651
- .bg-\[\#f4f4f5\] {
652
- background-color: #f4f4f5;
653
- }
654
- .bg-\[\#fafafa\] {
655
- background-color: #fafafa;
656
- }
657
- .bg-\[\#fff\] {
658
- background-color: #fff;
659
- }
660
- .bg-black {
661
- background-color: var(--color-black);
662
- }
663
- .bg-black\/80 {
664
- background-color: color-mix(in srgb, #000 80%, transparent);
665
- @supports (color: color-mix(in lab, red, red)) {
666
- background-color: color-mix(in oklab, var(--color-black) 80%, transparent);
667
- }
668
- }
669
- .bg-blue-600 {
670
- background-color: var(--color-blue-600);
671
- }
672
- .bg-gray-50 {
673
- background-color: var(--color-gray-50);
674
- }
675
- .bg-gray-100 {
676
- background-color: var(--color-gray-100);
677
- }
678
- .bg-gray-200 {
679
- background-color: var(--color-gray-200);
680
- }
681
- .bg-gray-300 {
682
- background-color: var(--color-gray-300);
683
- }
684
- .bg-green-100 {
685
- background-color: var(--color-green-100);
686
- }
687
- .bg-primary {
688
- background-color: var(--color-primary);
689
- }
690
- .bg-red-50 {
691
- background-color: var(--color-red-50);
692
- }
693
- .bg-red-100 {
694
- background-color: var(--color-red-100);
695
- }
696
- .bg-transparent {
697
- background-color: transparent;
698
- }
699
- .bg-white {
700
- background-color: var(--color-white);
701
- }
702
- .bg-yellow-100 {
703
- background-color: var(--color-yellow-100);
704
- }
705
- .object-contain {
706
- object-fit: contain;
707
- }
708
- .p-2 {
709
- padding: calc(var(--spacing) * 2);
710
- }
711
- .p-2\.5 {
712
- padding: calc(var(--spacing) * 2.5);
713
- }
714
- .p-4 {
715
- padding: calc(var(--spacing) * 4);
716
- }
717
- .p-6 {
718
- padding: calc(var(--spacing) * 6);
719
- }
720
- .px-2 {
721
- padding-inline: calc(var(--spacing) * 2);
722
- }
723
- .px-3 {
724
- padding-inline: calc(var(--spacing) * 3);
725
- }
726
- .px-4 {
727
- padding-inline: calc(var(--spacing) * 4);
728
- }
729
- .py-0\.5 {
730
- padding-block: calc(var(--spacing) * 0.5);
731
- }
732
- .py-1 {
733
- padding-block: calc(var(--spacing) * 1);
734
- }
735
- .py-1\.5 {
736
- padding-block: calc(var(--spacing) * 1.5);
737
- }
738
- .py-2 {
739
- padding-block: calc(var(--spacing) * 2);
740
- }
741
- .py-3 {
742
- padding-block: calc(var(--spacing) * 3);
743
- }
744
- .pt-5 {
745
- padding-top: calc(var(--spacing) * 5);
746
- }
747
- .pt-20 {
748
- padding-top: calc(var(--spacing) * 20);
749
- }
750
- .pb-4 {
751
- padding-bottom: calc(var(--spacing) * 4);
752
- }
753
- .pl-4 {
754
- padding-left: calc(var(--spacing) * 4);
755
- }
756
- .text-center {
757
- text-align: center;
758
- }
759
- .text-left {
760
- text-align: left;
761
- }
762
- .text-right {
763
- text-align: right;
764
- }
765
- .text-base {
766
- font-size: var(--text-base);
767
- line-height: var(--tw-leading, var(--text-base--line-height));
768
- }
769
- .text-lg {
770
- font-size: var(--text-lg);
771
- line-height: var(--tw-leading, var(--text-lg--line-height));
772
- }
773
- .text-sm {
774
- font-size: var(--text-sm);
775
- line-height: var(--tw-leading, var(--text-sm--line-height));
776
- }
777
- .text-xs {
778
- font-size: var(--text-xs);
779
- line-height: var(--tw-leading, var(--text-xs--line-height));
780
- }
781
- .\!text-\[14px\] {
782
- font-size: 14px !important;
783
- }
784
- .\!text-\[15px\] {
785
- font-size: 15px !important;
786
- }
787
- .\!text-\[16px\] {
788
- font-size: 16px !important;
789
- }
790
- .text-\[12px\] {
791
- font-size: 12px;
792
- }
793
- .text-\[14px\] {
794
- font-size: 14px;
795
- }
796
- .text-\[16px\] {
797
- font-size: 16px;
798
- }
799
- .leading-5 {
800
- --tw-leading: calc(var(--spacing) * 5);
801
- line-height: calc(var(--spacing) * 5);
802
- }
803
- .leading-6 {
804
- --tw-leading: calc(var(--spacing) * 6);
805
- line-height: calc(var(--spacing) * 6);
806
- }
807
- .\!font-medium {
808
- --tw-font-weight: var(--font-weight-medium) !important;
809
- font-weight: var(--font-weight-medium) !important;
810
- }
811
- .\!font-normal {
812
- --tw-font-weight: var(--font-weight-normal) !important;
813
- font-weight: var(--font-weight-normal) !important;
814
- }
815
- .\!font-semibold {
816
- --tw-font-weight: var(--font-weight-semibold) !important;
817
- font-weight: var(--font-weight-semibold) !important;
818
- }
819
- .font-\[500\] {
820
- --tw-font-weight: 500;
821
- font-weight: 500;
822
- }
823
- .font-\[600\] {
824
- --tw-font-weight: 600;
825
- font-weight: 600;
826
- }
827
- .font-medium {
828
- --tw-font-weight: var(--font-weight-medium);
829
- font-weight: var(--font-weight-medium);
830
- }
831
- .font-semibold {
832
- --tw-font-weight: var(--font-weight-semibold);
833
- font-weight: var(--font-weight-semibold);
834
- }
835
- .\!text-\[\#000\] {
836
- color: #000 !important;
837
- }
838
- .\!text-\[\#3f3f46cc\] {
839
- color: #3f3f46cc !important;
840
- }
841
- .text-\[\#3f3f46cc\] {
842
- color: #3f3f46cc;
843
- }
844
- .text-\[\#737373\] {
845
- color: #737373;
846
- }
847
- .text-black {
848
- color: var(--color-black);
849
- }
850
- .text-gray-400 {
851
- color: var(--color-gray-400);
852
- }
853
- .text-gray-500 {
854
- color: var(--color-gray-500);
855
- }
856
- .text-gray-600 {
857
- color: var(--color-gray-600);
858
- }
859
- .text-gray-700 {
860
- color: var(--color-gray-700);
861
- }
862
- .text-green-800 {
863
- color: var(--color-green-800);
864
- }
865
- .text-primary {
866
- color: var(--color-primary);
867
- }
868
- .text-red-500 {
869
- color: var(--color-red-500);
870
- }
871
- .text-red-800 {
872
- color: var(--color-red-800);
873
- }
874
- .text-white {
875
- color: var(--color-white);
876
- }
877
- .text-yellow-800 {
878
- color: var(--color-yellow-800);
879
- }
880
- .shadow {
881
- --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
882
- box-shadow:
883
- var(--tw-inset-shadow),
884
- var(--tw-inset-ring-shadow),
885
- var(--tw-ring-offset-shadow),
886
- var(--tw-ring-shadow),
887
- var(--tw-shadow);
888
- }
889
- .shadow-inner {
890
- --tw-shadow: inset 0 2px 4px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
891
- box-shadow:
892
- var(--tw-inset-shadow),
893
- var(--tw-inset-ring-shadow),
894
- var(--tw-ring-offset-shadow),
895
- var(--tw-ring-shadow),
896
- var(--tw-shadow);
897
- }
898
- .shadow-lg {
899
- --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
900
- box-shadow:
901
- var(--tw-inset-shadow),
902
- var(--tw-inset-ring-shadow),
903
- var(--tw-ring-offset-shadow),
904
- var(--tw-ring-shadow),
905
- var(--tw-shadow);
906
- }
907
- .outline-offset-2 {
908
- outline-offset: 2px;
909
- }
910
- .outline-black {
911
- outline-color: var(--color-black);
912
- }
913
- .transition {
914
- transition-property:
915
- color,
916
- background-color,
917
- border-color,
918
- outline-color,
919
- text-decoration-color,
920
- fill,
921
- stroke,
922
- --tw-gradient-from,
923
- --tw-gradient-via,
924
- --tw-gradient-to,
925
- opacity,
926
- box-shadow,
927
- transform,
928
- translate,
929
- scale,
930
- rotate,
931
- filter,
932
- -webkit-backdrop-filter,
933
- backdrop-filter,
934
- display,
935
- content-visibility,
936
- overlay,
937
- pointer-events;
938
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
939
- transition-duration: var(--tw-duration, var(--default-transition-duration));
940
- }
941
- .transition-all {
942
- transition-property: all;
943
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
944
- transition-duration: var(--tw-duration, var(--default-transition-duration));
945
- }
946
- .transition-colors {
947
- transition-property:
948
- color,
949
- background-color,
950
- border-color,
951
- outline-color,
952
- text-decoration-color,
953
- fill,
954
- stroke,
955
- --tw-gradient-from,
956
- --tw-gradient-via,
957
- --tw-gradient-to;
958
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
959
- transition-duration: var(--tw-duration, var(--default-transition-duration));
960
- }
961
- .transition-transform {
962
- transition-property:
963
- transform,
964
- translate,
965
- scale,
966
- rotate;
967
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
968
- transition-duration: var(--tw-duration, var(--default-transition-duration));
969
- }
970
- .delay-75 {
971
- transition-delay: 75ms;
972
- }
973
- .delay-100 {
974
- transition-delay: 100ms;
975
- }
976
- .duration-200 {
977
- --tw-duration: 200ms;
978
- transition-duration: 200ms;
979
- }
980
- .duration-300 {
981
- --tw-duration: 300ms;
982
- transition-duration: 300ms;
983
- }
984
- .ease-in-out {
985
- --tw-ease: var(--ease-in-out);
986
- transition-timing-function: var(--ease-in-out);
987
- }
988
- .select-none {
989
- -webkit-user-select: none;
990
- user-select: none;
991
- }
992
- .peer-checked\:border-primary {
993
- &:is(:where(.peer):checked ~ *) {
994
- border-color: var(--color-primary);
995
- }
996
- }
997
- .peer-checked\:bg-primary {
998
- &:is(:where(.peer):checked ~ *) {
999
- background-color: var(--color-primary);
1000
- }
1001
- }
1002
- .focus-within\:outline-2 {
1003
- &:focus-within {
1004
- outline-style: var(--tw-outline-style);
1005
- outline-width: 2px;
1006
- }
1007
- }
1008
- .focus-within\:outline-offset-2 {
1009
- &:focus-within {
1010
- outline-offset: 2px;
1011
- }
1012
- }
1013
- .focus-within\:outline-black {
1014
- &:focus-within {
1015
- outline-color: var(--color-black);
1016
- }
1017
- }
1018
- .hover\:border-gray-400 {
1019
- &:hover {
1020
- @media (hover: hover) {
1021
- border-color: var(--color-gray-400);
1022
- }
1023
- }
1024
- }
1025
- .hover\:bg-\[\#F7FAFC\] {
1026
- &:hover {
1027
- @media (hover: hover) {
1028
- background-color: #F7FAFC;
1029
- }
1030
- }
1031
- }
1032
- .hover\:bg-\[\#f4f4f5\] {
1033
- &:hover {
1034
- @media (hover: hover) {
1035
- background-color: #f4f4f5;
1036
- }
1037
- }
1038
- }
1039
- .hover\:bg-gray-50 {
1040
- &:hover {
1041
- @media (hover: hover) {
1042
- background-color: var(--color-gray-50);
1043
- }
1044
- }
1045
- }
1046
- .hover\:bg-gray-100 {
1047
- &:hover {
1048
- @media (hover: hover) {
1049
- background-color: var(--color-gray-100);
1050
- }
1051
- }
1052
- }
1053
- .hover\:text-gray-700 {
1054
- &:hover {
1055
- @media (hover: hover) {
1056
- color: var(--color-gray-700);
1057
- }
1058
- }
1059
- }
1060
- .focus\:border-black {
1061
- &:focus {
1062
- border-color: var(--color-black);
1063
- }
1064
- }
1065
- .focus\:shadow-none {
1066
- &:focus {
1067
- --tw-shadow: 0 0 #0000;
1068
- box-shadow:
1069
- var(--tw-inset-shadow),
1070
- var(--tw-inset-ring-shadow),
1071
- var(--tw-ring-offset-shadow),
1072
- var(--tw-ring-shadow),
1073
- var(--tw-shadow);
1074
- }
1075
- }
1076
- .focus\:ring-0 {
1077
- &:focus {
1078
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1079
- box-shadow:
1080
- var(--tw-inset-shadow),
1081
- var(--tw-inset-ring-shadow),
1082
- var(--tw-ring-offset-shadow),
1083
- var(--tw-ring-shadow),
1084
- var(--tw-shadow);
1085
- }
1086
- }
1087
- .focus\:outline-2 {
1088
- &:focus {
1089
- outline-style: var(--tw-outline-style);
1090
- outline-width: 2px;
1091
- }
1092
- }
1093
- .focus\:outline-offset-2 {
1094
- &:focus {
1095
- outline-offset: 2px;
1096
- }
1097
- }
1098
- .focus\:outline-black {
1099
- &:focus {
1100
- outline-color: var(--color-black);
1101
- }
1102
- }
1103
- .focus\:outline-none {
1104
- &:focus {
1105
- --tw-outline-style: none;
1106
- outline-style: none;
1107
- }
1108
- }
1109
- .xs\:max-md\:z-40 {
1110
- @media (width >= 360px) {
1111
- @media (width < 48rem) {
1112
- z-index: 40;
1113
- }
1114
- }
1115
- }
1116
- .sm\:flex-row {
1117
- @media (width >= 40rem) {
1118
- flex-direction: row;
1119
- }
1120
- }
1121
- .sm\:justify-end {
1122
- @media (width >= 40rem) {
1123
- justify-content: flex-end;
1124
- }
1125
- }
1126
- .sm\:space-x-2 {
1127
- @media (width >= 40rem) {
1128
- :where(& > :not(:last-child)) {
1129
- --tw-space-x-reverse: 0;
1130
- margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
1131
- margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
1132
- }
1133
- }
1134
- }
1135
- .md\:relative {
1136
- @media (width >= 48rem) {
1137
- position: relative;
1138
- }
1139
- }
1140
- .md\:block {
1141
- @media (width >= 48rem) {
1142
- display: block;
1143
- }
1144
- }
1145
- .md\:hidden {
1146
- @media (width >= 48rem) {
1147
- display: none;
1148
- }
1149
- }
1150
- .md\:min-w-\[576px\] {
1151
- @media (width >= 48rem) {
1152
- min-width: 576px;
1153
- }
1154
- }
1155
- .md\:translate-x-0 {
1156
- @media (width >= 48rem) {
1157
- --tw-translate-x: calc(var(--spacing) * 0);
1158
- translate: var(--tw-translate-x) var(--tw-translate-y);
1159
- }
1160
- }
1161
- .md\:pt-4 {
1162
- @media (width >= 48rem) {
1163
- padding-top: calc(var(--spacing) * 4);
1164
- }
1165
- }
1166
- .md\:max-lg\:w-\[280px\] {
1167
- @media (width >= 48rem) {
1168
- @media (width < 64rem) {
1169
- width: 280px;
1170
- }
1171
- }
1172
- }
1173
- .dark\:border-\[\#303036\] {
1174
- &:where(.dark, .dark *) {
1175
- border-color: #303036;
1176
- }
1177
- }
1178
- .dark\:bg-\[\#1d1d20\] {
1179
- &:where(.dark, .dark *) {
1180
- background-color: #1d1d20;
1181
- }
1182
- }
1183
- .dark\:bg-\[\#4B5563\] {
1184
- &:where(.dark, .dark *) {
1185
- background-color: #4B5563;
1186
- }
1187
- }
1188
- .dark\:bg-\[\#18181b\] {
1189
- &:where(.dark, .dark *) {
1190
- background-color: #18181b;
1191
- }
1192
- }
1193
- .dark\:bg-\[\#27272a\] {
1194
- &:where(.dark, .dark *) {
1195
- background-color: #27272a;
1196
- }
1197
- }
1198
- .dark\:bg-\[\#303036\] {
1199
- &:where(.dark, .dark *) {
1200
- background-color: #303036;
1201
- }
1202
- }
1203
- .dark\:bg-gray-800 {
1204
- &:where(.dark, .dark *) {
1205
- background-color: var(--color-gray-800);
1206
- }
1207
- }
1208
- .dark\:bg-green-900 {
1209
- &:where(.dark, .dark *) {
1210
- background-color: var(--color-green-900);
1211
- }
1212
- }
1213
- .dark\:bg-primary {
1214
- &:where(.dark, .dark *) {
1215
- background-color: var(--color-primary);
1216
- }
1217
- }
1218
- .dark\:bg-red-900 {
1219
- &:where(.dark, .dark *) {
1220
- background-color: var(--color-red-900);
1221
- }
1222
- }
1223
- .dark\:bg-transparent {
1224
- &:where(.dark, .dark *) {
1225
- background-color: transparent;
1226
- }
1227
- }
1228
- .dark\:bg-yellow-900 {
1229
- &:where(.dark, .dark *) {
1230
- background-color: var(--color-yellow-900);
1231
- }
1232
- }
1233
- .dark\:text-\[\#71717a\] {
1234
- &:where(.dark, .dark *) {
1235
- color: #71717a;
1236
- }
1237
- }
1238
- .dark\:text-\[\#a1a1aa\] {
1239
- &:where(.dark, .dark *) {
1240
- color: #a1a1aa;
1241
- }
1242
- }
1243
- .dark\:text-\[\#f4f4f5cc\] {
1244
- &:where(.dark, .dark *) {
1245
- color: #f4f4f5cc;
1246
- }
1247
- }
1248
- .dark\:text-gray-400 {
1249
- &:where(.dark, .dark *) {
1250
- color: var(--color-gray-400);
1251
- }
1252
- }
1253
- .dark\:text-gray-500 {
1254
- &:where(.dark, .dark *) {
1255
- color: var(--color-gray-500);
1256
- }
1257
- }
1258
- .dark\:text-gray-600 {
1259
- &:where(.dark, .dark *) {
1260
- color: var(--color-gray-600);
1261
- }
1262
- }
1263
- .dark\:text-green-100 {
1264
- &:where(.dark, .dark *) {
1265
- color: var(--color-green-100);
1266
- }
1267
- }
1268
- .dark\:text-red-100 {
1269
- &:where(.dark, .dark *) {
1270
- color: var(--color-red-100);
1271
- }
1272
- }
1273
- .dark\:text-white {
1274
- &:where(.dark, .dark *) {
1275
- color: var(--color-white);
1276
- }
1277
- }
1278
- .dark\:text-yellow-100 {
1279
- &:where(.dark, .dark *) {
1280
- color: var(--color-yellow-100);
1281
- }
1282
- }
1283
- .dark\:outline-white {
1284
- &:where(.dark, .dark *) {
1285
- outline-color: var(--color-white);
1286
- }
1287
- }
1288
- .dark\:hover\:bg-\[\#27272a\] {
1289
- &:where(.dark, .dark *) {
1290
- &:hover {
1291
- @media (hover: hover) {
1292
- background-color: #27272a;
1293
- }
1294
- }
1295
- }
1296
- }
1297
- .dark\:hover\:bg-\[\#303036\] {
1298
- &:where(.dark, .dark *) {
1299
- &:hover {
1300
- @media (hover: hover) {
1301
- background-color: #303036;
1302
- }
1303
- }
1304
- }
1305
- }
1306
- .dark\:hover\:text-white {
1307
- &:where(.dark, .dark *) {
1308
- &:hover {
1309
- @media (hover: hover) {
1310
- color: var(--color-white);
1311
- }
1312
- }
1313
- }
1314
- }
1315
- }
1316
- body {
1317
- font-family: "Inter", sans-serif;
1318
- }
1319
- @layer utilities {
1320
- .scrollbar-hide {
1321
- scrollbar-width: none;
1322
- -ms-overflow-style: none;
1323
- }
1324
- .scrollbar-hide::-webkit-scrollbar {
1325
- display: none;
1326
- }
1327
- }
1328
- @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1329
- @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1330
- @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
1331
- @property --tw-rotate-x { syntax: "*"; inherits: false; }
1332
- @property --tw-rotate-y { syntax: "*"; inherits: false; }
1333
- @property --tw-rotate-z { syntax: "*"; inherits: false; }
1334
- @property --tw-skew-x { syntax: "*"; inherits: false; }
1335
- @property --tw-skew-y { syntax: "*"; inherits: false; }
1336
- @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
1337
- @property --tw-leading { syntax: "*"; inherits: false; }
1338
- @property --tw-font-weight { syntax: "*"; inherits: false; }
1339
- @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1340
- @property --tw-shadow-color { syntax: "*"; inherits: false; }
1341
- @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1342
- @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1343
- @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
1344
- @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1345
- @property --tw-ring-color { syntax: "*"; inherits: false; }
1346
- @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1347
- @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
1348
- @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1349
- @property --tw-ring-inset { syntax: "*"; inherits: false; }
1350
- @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
1351
- @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
1352
- @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1353
- @property --tw-duration { syntax: "*"; inherits: false; }
1354
- @property --tw-ease { syntax: "*"; inherits: false; }
1355
- @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
1356
- @property --tw-space-x-reverse { syntax: "*"; inherits: false; initial-value: 0; }
1357
- @layer properties {
1358
- @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1359
- *,
1360
- ::before,
1361
- ::after,
1362
- ::backdrop {
1363
- --tw-translate-x: 0;
1364
- --tw-translate-y: 0;
1365
- --tw-translate-z: 0;
1366
- --tw-rotate-x: initial;
1367
- --tw-rotate-y: initial;
1368
- --tw-rotate-z: initial;
1369
- --tw-skew-x: initial;
1370
- --tw-skew-y: initial;
1371
- --tw-border-style: solid;
1372
- --tw-leading: initial;
1373
- --tw-font-weight: initial;
1374
- --tw-shadow: 0 0 #0000;
1375
- --tw-shadow-color: initial;
1376
- --tw-shadow-alpha: 100%;
1377
- --tw-inset-shadow: 0 0 #0000;
1378
- --tw-inset-shadow-color: initial;
1379
- --tw-inset-shadow-alpha: 100%;
1380
- --tw-ring-color: initial;
1381
- --tw-ring-shadow: 0 0 #0000;
1382
- --tw-inset-ring-color: initial;
1383
- --tw-inset-ring-shadow: 0 0 #0000;
1384
- --tw-ring-inset: initial;
1385
- --tw-ring-offset-width: 0px;
1386
- --tw-ring-offset-color: #fff;
1387
- --tw-ring-offset-shadow: 0 0 #0000;
1388
- --tw-duration: initial;
1389
- --tw-ease: initial;
1390
- --tw-outline-style: solid;
1391
- --tw-space-x-reverse: 0;
1392
- }
1393
- }
1394
- }
1395
-
1396
- /* src/RightSheet/RightSheet.css */
1397
- .sheetPopIn {
1398
- animation: popIn 50ms ease-in-out forwards;
1399
- }
1400
- .sheetRightSlide {
1401
- animation: rightSlide 350ms ease-in-out forwards;
1402
- }
1403
- .sheetLeftSlide {
1404
- animation: sheetLeftSlide 350ms ease-in-out forwards;
1405
- }
1406
- @keyframes sheetLeftSlide {
1407
- 0% {
1408
- transform: translateX(-100%);
1409
- opacity: 0;
1410
- }
1411
- 100% {
1412
- transform: translateX(0);
1413
- opacity: 1;
1414
- }
1415
- }
1416
- @keyframes rightSlide {
1417
- 0% {
1418
- transform: translateX(100%);
1419
- opacity: 0;
1420
- }
1421
- 100% {
1422
- transform: translateX(0);
1423
- opacity: 1;
1424
- }
1425
- }
1426
- @keyframes popIn {
1427
- 0% {
1428
- opacity: 0;
1429
- }
1430
- 100% {
1431
- opacity: 1;
1432
- }
1433
- }
1434
- /*! tailwindcss v4.1.13 | MIT License | https://tailwindcss.com */
1
+ /* dist/index.css */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root,
6
+ :host {
7
+ --font-sans:
8
+ ui-sans-serif,
9
+ system-ui,
10
+ sans-serif,
11
+ "Apple Color Emoji",
12
+ "Segoe UI Emoji",
13
+ "Segoe UI Symbol",
14
+ "Noto Color Emoji";
15
+ --font-mono:
16
+ ui-monospace,
17
+ SFMono-Regular,
18
+ Menlo,
19
+ Monaco,
20
+ Consolas,
21
+ "Liberation Mono",
22
+ "Courier New",
23
+ monospace;
24
+ --color-red-50: oklch(97.1% 0.013 17.38);
25
+ --color-red-100: oklch(93.6% 0.032 17.717);
26
+ --color-red-500: oklch(63.7% 0.237 25.331);
27
+ --color-red-800: oklch(44.4% 0.177 26.899);
28
+ --color-red-900: oklch(39.6% 0.141 25.723);
29
+ --color-yellow-100: oklch(97.3% 0.071 103.193);
30
+ --color-yellow-800: oklch(47.6% 0.114 61.907);
31
+ --color-yellow-900: oklch(42.1% 0.095 57.708);
32
+ --color-green-100: oklch(96.2% 0.044 156.743);
33
+ --color-green-800: oklch(44.8% 0.119 151.328);
34
+ --color-green-900: oklch(39.3% 0.095 152.535);
35
+ --color-blue-600: oklch(54.6% 0.245 262.881);
36
+ --color-gray-50: oklch(98.5% 0.002 247.839);
37
+ --color-gray-100: oklch(96.7% 0.003 264.542);
38
+ --color-gray-200: oklch(92.8% 0.006 264.531);
39
+ --color-gray-300: oklch(87.2% 0.01 258.338);
40
+ --color-gray-400: oklch(70.7% 0.022 261.325);
41
+ --color-gray-500: oklch(55.1% 0.027 264.364);
42
+ --color-gray-600: oklch(44.6% 0.03 256.802);
43
+ --color-gray-700: oklch(37.3% 0.034 259.733);
44
+ --color-gray-800: oklch(27.8% 0.033 256.848);
45
+ --color-black: #000;
46
+ --color-white: #fff;
47
+ --spacing: 0.25rem;
48
+ --text-xs: 0.75rem;
49
+ --text-xs--line-height: calc(1 / 0.75);
50
+ --text-sm: 0.875rem;
51
+ --text-sm--line-height: calc(1.25 / 0.875);
52
+ --text-base: 1rem;
53
+ --text-base--line-height: calc(1.5 / 1);
54
+ --text-lg: 1.125rem;
55
+ --text-lg--line-height: calc(1.75 / 1.125);
56
+ --font-weight-normal: 400;
57
+ --font-weight-medium: 500;
58
+ --font-weight-semibold: 600;
59
+ --radius-sm: 0.25rem;
60
+ --radius-md: 0.375rem;
61
+ --radius-lg: 0.5rem;
62
+ --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
63
+ --default-transition-duration: 150ms;
64
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
65
+ --default-font-family: var(--font-sans);
66
+ --default-mono-font-family: var(--font-mono);
67
+ --color-primary: rgb(63, 63, 70);
68
+ }
69
+ }
70
+ @layer base {
71
+ *,
72
+ ::after,
73
+ ::before,
74
+ ::backdrop,
75
+ ::file-selector-button {
76
+ box-sizing: border-box;
77
+ margin: 0;
78
+ padding: 0;
79
+ border: 0 solid;
80
+ }
81
+ html,
82
+ :host {
83
+ line-height: 1.5;
84
+ -webkit-text-size-adjust: 100%;
85
+ tab-size: 4;
86
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
87
+ font-feature-settings: var(--default-font-feature-settings, normal);
88
+ font-variation-settings: var(--default-font-variation-settings, normal);
89
+ -webkit-tap-highlight-color: transparent;
90
+ }
91
+ hr {
92
+ height: 0;
93
+ color: inherit;
94
+ border-top-width: 1px;
95
+ }
96
+ abbr:where([title]) {
97
+ -webkit-text-decoration: underline dotted;
98
+ text-decoration: underline dotted;
99
+ }
100
+ h1,
101
+ h2,
102
+ h3,
103
+ h4,
104
+ h5,
105
+ h6 {
106
+ font-size: inherit;
107
+ font-weight: inherit;
108
+ }
109
+ a {
110
+ color: inherit;
111
+ -webkit-text-decoration: inherit;
112
+ text-decoration: inherit;
113
+ }
114
+ b,
115
+ strong {
116
+ font-weight: bolder;
117
+ }
118
+ code,
119
+ kbd,
120
+ samp,
121
+ pre {
122
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
123
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
124
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
125
+ font-size: 1em;
126
+ }
127
+ small {
128
+ font-size: 80%;
129
+ }
130
+ sub,
131
+ sup {
132
+ font-size: 75%;
133
+ line-height: 0;
134
+ position: relative;
135
+ vertical-align: baseline;
136
+ }
137
+ sub {
138
+ bottom: -0.25em;
139
+ }
140
+ sup {
141
+ top: -0.5em;
142
+ }
143
+ table {
144
+ text-indent: 0;
145
+ border-color: inherit;
146
+ border-collapse: collapse;
147
+ }
148
+ :-moz-focusring {
149
+ outline: auto;
150
+ }
151
+ progress {
152
+ vertical-align: baseline;
153
+ }
154
+ summary {
155
+ display: list-item;
156
+ }
157
+ ol,
158
+ ul,
159
+ menu {
160
+ list-style: none;
161
+ }
162
+ img,
163
+ svg,
164
+ video,
165
+ canvas,
166
+ audio,
167
+ iframe,
168
+ embed,
169
+ object {
170
+ display: block;
171
+ vertical-align: middle;
172
+ }
173
+ img,
174
+ video {
175
+ max-width: 100%;
176
+ height: auto;
177
+ }
178
+ button,
179
+ input,
180
+ select,
181
+ optgroup,
182
+ textarea,
183
+ ::file-selector-button {
184
+ font: inherit;
185
+ font-feature-settings: inherit;
186
+ font-variation-settings: inherit;
187
+ letter-spacing: inherit;
188
+ color: inherit;
189
+ border-radius: 0;
190
+ background-color: transparent;
191
+ opacity: 1;
192
+ }
193
+ :where(select:is([multiple], [size])) optgroup {
194
+ font-weight: bolder;
195
+ }
196
+ :where(select:is([multiple], [size])) optgroup option {
197
+ padding-inline-start: 20px;
198
+ }
199
+ ::file-selector-button {
200
+ margin-inline-end: 4px;
201
+ }
202
+ ::placeholder {
203
+ opacity: 1;
204
+ }
205
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
206
+ ::placeholder {
207
+ color: currentcolor;
208
+ @supports (color: color-mix(in lab, red, red)) {
209
+ color: color-mix(in oklab, currentcolor 50%, transparent);
210
+ }
211
+ }
212
+ }
213
+ textarea {
214
+ resize: vertical;
215
+ }
216
+ ::-webkit-search-decoration {
217
+ -webkit-appearance: none;
218
+ }
219
+ ::-webkit-date-and-time-value {
220
+ min-height: 1lh;
221
+ text-align: inherit;
222
+ }
223
+ ::-webkit-datetime-edit {
224
+ display: inline-flex;
225
+ }
226
+ ::-webkit-datetime-edit-fields-wrapper {
227
+ padding: 0;
228
+ }
229
+ ::-webkit-datetime-edit,
230
+ ::-webkit-datetime-edit-year-field,
231
+ ::-webkit-datetime-edit-month-field,
232
+ ::-webkit-datetime-edit-day-field,
233
+ ::-webkit-datetime-edit-hour-field,
234
+ ::-webkit-datetime-edit-minute-field,
235
+ ::-webkit-datetime-edit-second-field,
236
+ ::-webkit-datetime-edit-millisecond-field,
237
+ ::-webkit-datetime-edit-meridiem-field {
238
+ padding-block: 0;
239
+ }
240
+ ::-webkit-calendar-picker-indicator {
241
+ line-height: 1;
242
+ }
243
+ :-moz-ui-invalid {
244
+ box-shadow: none;
245
+ }
246
+ button,
247
+ input:where([type=button], [type=reset], [type=submit]),
248
+ ::file-selector-button {
249
+ appearance: button;
250
+ }
251
+ ::-webkit-inner-spin-button,
252
+ ::-webkit-outer-spin-button {
253
+ height: auto;
254
+ }
255
+ [hidden]:where(:not([hidden=until-found])) {
256
+ display: none !important;
257
+ }
258
+ }
259
+ @layer utilities {
260
+ .visible {
261
+ visibility: visible;
262
+ }
263
+ .sr-only {
264
+ position: absolute;
265
+ width: 1px;
266
+ height: 1px;
267
+ padding: 0;
268
+ margin: -1px;
269
+ overflow: hidden;
270
+ clip-path: inset(50%);
271
+ white-space: nowrap;
272
+ border-width: 0;
273
+ }
274
+ .absolute {
275
+ position: absolute;
276
+ }
277
+ .fixed {
278
+ position: fixed;
279
+ }
280
+ .relative {
281
+ position: relative;
282
+ }
283
+ .sticky {
284
+ position: sticky;
285
+ }
286
+ .inset-0 {
287
+ inset: calc(var(--spacing) * 0);
288
+ }
289
+ .top-0 {
290
+ top: calc(var(--spacing) * 0);
291
+ }
292
+ .top-full {
293
+ top: 100%;
294
+ }
295
+ .right-0 {
296
+ right: calc(var(--spacing) * 0);
297
+ }
298
+ .bottom-0 {
299
+ bottom: calc(var(--spacing) * 0);
300
+ }
301
+ .left-0 {
302
+ left: calc(var(--spacing) * 0);
303
+ }
304
+ .z-10 {
305
+ z-index: 10;
306
+ }
307
+ .z-40 {
308
+ z-index: 40;
309
+ }
310
+ .z-50 {
311
+ z-index: 50;
312
+ }
313
+ .mt-1 {
314
+ margin-top: calc(var(--spacing) * 1);
315
+ }
316
+ .mt-2 {
317
+ margin-top: calc(var(--spacing) * 2);
318
+ }
319
+ .mt-auto {
320
+ margin-top: auto;
321
+ }
322
+ .mr-2 {
323
+ margin-right: calc(var(--spacing) * 2);
324
+ }
325
+ .mr-\[8px\] {
326
+ margin-right: 8px;
327
+ }
328
+ .mb-1 {
329
+ margin-bottom: calc(var(--spacing) * 1);
330
+ }
331
+ .mb-2 {
332
+ margin-bottom: calc(var(--spacing) * 2);
333
+ }
334
+ .mb-4 {
335
+ margin-bottom: calc(var(--spacing) * 4);
336
+ }
337
+ .mb-6 {
338
+ margin-bottom: calc(var(--spacing) * 6);
339
+ }
340
+ .ml-2 {
341
+ margin-left: calc(var(--spacing) * 2);
342
+ }
343
+ .ml-4 {
344
+ margin-left: calc(var(--spacing) * 4);
345
+ }
346
+ .ml-8 {
347
+ margin-left: calc(var(--spacing) * 8);
348
+ }
349
+ .ml-\[2px\] {
350
+ margin-left: 2px;
351
+ }
352
+ .ml-\[16px\] {
353
+ margin-left: 16px;
354
+ }
355
+ .ml-\[20px\] {
356
+ margin-left: 20px;
357
+ }
358
+ .ml-auto {
359
+ margin-left: auto;
360
+ }
361
+ .flex {
362
+ display: flex;
363
+ }
364
+ .hidden {
365
+ display: none;
366
+ }
367
+ .inline-block {
368
+ display: inline-block;
369
+ }
370
+ .inline-flex {
371
+ display: inline-flex;
372
+ }
373
+ .table {
374
+ display: table;
375
+ }
376
+ .h-2 {
377
+ height: calc(var(--spacing) * 2);
378
+ }
379
+ .h-4 {
380
+ height: calc(var(--spacing) * 4);
381
+ }
382
+ .h-6 {
383
+ height: calc(var(--spacing) * 6);
384
+ }
385
+ .h-7 {
386
+ height: calc(var(--spacing) * 7);
387
+ }
388
+ .h-8 {
389
+ height: calc(var(--spacing) * 8);
390
+ }
391
+ .h-9 {
392
+ height: calc(var(--spacing) * 9);
393
+ }
394
+ .h-10 {
395
+ height: calc(var(--spacing) * 10);
396
+ }
397
+ .h-\[60px\] {
398
+ height: 60px;
399
+ }
400
+ .h-\[90px\] {
401
+ height: 90px;
402
+ }
403
+ .h-auto {
404
+ height: auto;
405
+ }
406
+ .h-full {
407
+ height: 100%;
408
+ }
409
+ .max-h-0 {
410
+ max-height: calc(var(--spacing) * 0);
411
+ }
412
+ .max-h-60 {
413
+ max-height: calc(var(--spacing) * 60);
414
+ }
415
+ .max-h-\[100vh\] {
416
+ max-height: 100vh;
417
+ }
418
+ .max-h-\[1000px\] {
419
+ max-height: 1000px;
420
+ }
421
+ .min-h-10 {
422
+ min-height: calc(var(--spacing) * 10);
423
+ }
424
+ .min-h-\[50px\] {
425
+ min-height: 50px;
426
+ }
427
+ .min-h-full {
428
+ min-height: 100%;
429
+ }
430
+ .w-4 {
431
+ width: calc(var(--spacing) * 4);
432
+ }
433
+ .w-6 {
434
+ width: calc(var(--spacing) * 6);
435
+ }
436
+ .w-7 {
437
+ width: calc(var(--spacing) * 7);
438
+ }
439
+ .w-9 {
440
+ width: calc(var(--spacing) * 9);
441
+ }
442
+ .w-10 {
443
+ width: calc(var(--spacing) * 10);
444
+ }
445
+ .w-11 {
446
+ width: calc(var(--spacing) * 11);
447
+ }
448
+ .w-16 {
449
+ width: calc(var(--spacing) * 16);
450
+ }
451
+ .w-20 {
452
+ width: calc(var(--spacing) * 20);
453
+ }
454
+ .w-\[50px\] {
455
+ width: 50px;
456
+ }
457
+ .w-\[320px\] {
458
+ width: 320px;
459
+ }
460
+ .w-full {
461
+ width: 100%;
462
+ }
463
+ .min-w-9 {
464
+ min-width: calc(var(--spacing) * 9);
465
+ }
466
+ .min-w-\[100\%\] {
467
+ min-width: 100%;
468
+ }
469
+ .flex-1 {
470
+ flex: 1;
471
+ }
472
+ .shrink-0 {
473
+ flex-shrink: 0;
474
+ }
475
+ .table-fixed {
476
+ table-layout: fixed;
477
+ }
478
+ .caption-bottom {
479
+ caption-side: bottom;
480
+ }
481
+ .border-collapse {
482
+ border-collapse: collapse;
483
+ }
484
+ .-translate-x-full {
485
+ --tw-translate-x: -100%;
486
+ translate: var(--tw-translate-x) var(--tw-translate-y);
487
+ }
488
+ .translate-x-0 {
489
+ --tw-translate-x: calc(var(--spacing) * 0);
490
+ translate: var(--tw-translate-x) var(--tw-translate-y);
491
+ }
492
+ .translate-x-1 {
493
+ --tw-translate-x: calc(var(--spacing) * 1);
494
+ translate: var(--tw-translate-x) var(--tw-translate-y);
495
+ }
496
+ .translate-x-6 {
497
+ --tw-translate-x: calc(var(--spacing) * 6);
498
+ translate: var(--tw-translate-x) var(--tw-translate-y);
499
+ }
500
+ .translate-x-8 {
501
+ --tw-translate-x: calc(var(--spacing) * 8);
502
+ translate: var(--tw-translate-x) var(--tw-translate-y);
503
+ }
504
+ .translate-x-\[100\%\] {
505
+ --tw-translate-x: 100%;
506
+ translate: var(--tw-translate-x) var(--tw-translate-y);
507
+ }
508
+ .rotate-180 {
509
+ rotate: 180deg;
510
+ }
511
+ .transform {
512
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
513
+ }
514
+ .cursor-not-allowed {
515
+ cursor: not-allowed;
516
+ }
517
+ .cursor-pointer {
518
+ cursor: pointer;
519
+ }
520
+ .cursor-text {
521
+ cursor: text;
522
+ }
523
+ .flex-col {
524
+ flex-direction: column;
525
+ }
526
+ .flex-col-reverse {
527
+ flex-direction: column-reverse;
528
+ }
529
+ .flex-wrap {
530
+ flex-wrap: wrap;
531
+ }
532
+ .items-center {
533
+ align-items: center;
534
+ }
535
+ .justify-between {
536
+ justify-content: space-between;
537
+ }
538
+ .justify-center {
539
+ justify-content: center;
540
+ }
541
+ .justify-end {
542
+ justify-content: flex-end;
543
+ }
544
+ .gap-1 {
545
+ gap: calc(var(--spacing) * 1);
546
+ }
547
+ .gap-2 {
548
+ gap: calc(var(--spacing) * 2);
549
+ }
550
+ .gap-3 {
551
+ gap: calc(var(--spacing) * 3);
552
+ }
553
+ .gap-4 {
554
+ gap: calc(var(--spacing) * 4);
555
+ }
556
+ .truncate {
557
+ overflow: hidden;
558
+ text-overflow: ellipsis;
559
+ white-space: nowrap;
560
+ }
561
+ .overflow-auto {
562
+ overflow: auto;
563
+ }
564
+ .overflow-hidden {
565
+ overflow: hidden;
566
+ }
567
+ .overflow-x-auto {
568
+ overflow-x: auto;
569
+ }
570
+ .overflow-x-hidden {
571
+ overflow-x: hidden;
572
+ }
573
+ .overflow-y-auto {
574
+ overflow-y: auto;
575
+ }
576
+ .rounded {
577
+ border-radius: 0.25rem;
578
+ }
579
+ .rounded-\[6px\] {
580
+ border-radius: 6px;
581
+ }
582
+ .rounded-full {
583
+ border-radius: calc(infinity * 1px);
584
+ }
585
+ .rounded-lg {
586
+ border-radius: var(--radius-lg);
587
+ }
588
+ .rounded-md {
589
+ border-radius: var(--radius-md);
590
+ }
591
+ .rounded-sm {
592
+ border-radius: var(--radius-sm);
593
+ }
594
+ .border {
595
+ border-style: var(--tw-border-style);
596
+ border-width: 1px;
597
+ }
598
+ .border-2 {
599
+ border-style: var(--tw-border-style);
600
+ border-width: 2px;
601
+ }
602
+ .border-t {
603
+ border-top-style: var(--tw-border-style);
604
+ border-top-width: 1px;
605
+ }
606
+ .border-r {
607
+ border-right-style: var(--tw-border-style);
608
+ border-right-width: 1px;
609
+ }
610
+ .border-b {
611
+ border-bottom-style: var(--tw-border-style);
612
+ border-bottom-width: 1px;
613
+ }
614
+ .border-dashed {
615
+ --tw-border-style: dashed;
616
+ border-style: dashed;
617
+ }
618
+ .border-\[\#e5e5e5\] {
619
+ border-color: #e5e5e5;
620
+ }
621
+ .border-\[\#e6e6e6\] {
622
+ border-color: #e6e6e6;
623
+ }
624
+ .border-\[hsl\(0_0\%_89\.8\%\)\] {
625
+ border-color: hsl(0 0% 89.8%);
626
+ }
627
+ .border-blue-600 {
628
+ border-color: var(--color-blue-600);
629
+ }
630
+ .border-gray-200 {
631
+ border-color: var(--color-gray-200);
632
+ }
633
+ .border-gray-300 {
634
+ border-color: var(--color-gray-300);
635
+ }
636
+ .border-gray-400 {
637
+ border-color: var(--color-gray-400);
638
+ }
639
+ .border-primary {
640
+ border-color: var(--color-primary);
641
+ }
642
+ .border-red-500 {
643
+ border-color: var(--color-red-500);
644
+ }
645
+ .bg-\[\#F7FAFC\] {
646
+ background-color: #F7FAFC;
647
+ }
648
+ .bg-\[\#ef4444\] {
649
+ background-color: #ef4444;
650
+ }
651
+ .bg-\[\#f4f4f5\] {
652
+ background-color: #f4f4f5;
653
+ }
654
+ .bg-\[\#fafafa\] {
655
+ background-color: #fafafa;
656
+ }
657
+ .bg-\[\#fff\] {
658
+ background-color: #fff;
659
+ }
660
+ .bg-black {
661
+ background-color: var(--color-black);
662
+ }
663
+ .bg-black\/80 {
664
+ background-color: color-mix(in srgb, #000 80%, transparent);
665
+ @supports (color: color-mix(in lab, red, red)) {
666
+ background-color: color-mix(in oklab, var(--color-black) 80%, transparent);
667
+ }
668
+ }
669
+ .bg-blue-600 {
670
+ background-color: var(--color-blue-600);
671
+ }
672
+ .bg-gray-50 {
673
+ background-color: var(--color-gray-50);
674
+ }
675
+ .bg-gray-100 {
676
+ background-color: var(--color-gray-100);
677
+ }
678
+ .bg-gray-200 {
679
+ background-color: var(--color-gray-200);
680
+ }
681
+ .bg-gray-300 {
682
+ background-color: var(--color-gray-300);
683
+ }
684
+ .bg-green-100 {
685
+ background-color: var(--color-green-100);
686
+ }
687
+ .bg-primary {
688
+ background-color: var(--color-primary);
689
+ }
690
+ .bg-red-50 {
691
+ background-color: var(--color-red-50);
692
+ }
693
+ .bg-red-100 {
694
+ background-color: var(--color-red-100);
695
+ }
696
+ .bg-transparent {
697
+ background-color: transparent;
698
+ }
699
+ .bg-white {
700
+ background-color: var(--color-white);
701
+ }
702
+ .bg-yellow-100 {
703
+ background-color: var(--color-yellow-100);
704
+ }
705
+ .object-contain {
706
+ object-fit: contain;
707
+ }
708
+ .p-2 {
709
+ padding: calc(var(--spacing) * 2);
710
+ }
711
+ .p-2\.5 {
712
+ padding: calc(var(--spacing) * 2.5);
713
+ }
714
+ .p-4 {
715
+ padding: calc(var(--spacing) * 4);
716
+ }
717
+ .p-6 {
718
+ padding: calc(var(--spacing) * 6);
719
+ }
720
+ .px-2 {
721
+ padding-inline: calc(var(--spacing) * 2);
722
+ }
723
+ .px-3 {
724
+ padding-inline: calc(var(--spacing) * 3);
725
+ }
726
+ .px-4 {
727
+ padding-inline: calc(var(--spacing) * 4);
728
+ }
729
+ .py-0\.5 {
730
+ padding-block: calc(var(--spacing) * 0.5);
731
+ }
732
+ .py-1 {
733
+ padding-block: calc(var(--spacing) * 1);
734
+ }
735
+ .py-1\.5 {
736
+ padding-block: calc(var(--spacing) * 1.5);
737
+ }
738
+ .py-2 {
739
+ padding-block: calc(var(--spacing) * 2);
740
+ }
741
+ .py-3 {
742
+ padding-block: calc(var(--spacing) * 3);
743
+ }
744
+ .pt-5 {
745
+ padding-top: calc(var(--spacing) * 5);
746
+ }
747
+ .pt-20 {
748
+ padding-top: calc(var(--spacing) * 20);
749
+ }
750
+ .pb-4 {
751
+ padding-bottom: calc(var(--spacing) * 4);
752
+ }
753
+ .pl-4 {
754
+ padding-left: calc(var(--spacing) * 4);
755
+ }
756
+ .text-center {
757
+ text-align: center;
758
+ }
759
+ .text-left {
760
+ text-align: left;
761
+ }
762
+ .text-right {
763
+ text-align: right;
764
+ }
765
+ .text-base {
766
+ font-size: var(--text-base);
767
+ line-height: var(--tw-leading, var(--text-base--line-height));
768
+ }
769
+ .text-lg {
770
+ font-size: var(--text-lg);
771
+ line-height: var(--tw-leading, var(--text-lg--line-height));
772
+ }
773
+ .text-sm {
774
+ font-size: var(--text-sm);
775
+ line-height: var(--tw-leading, var(--text-sm--line-height));
776
+ }
777
+ .text-xs {
778
+ font-size: var(--text-xs);
779
+ line-height: var(--tw-leading, var(--text-xs--line-height));
780
+ }
781
+ .\!text-\[14px\] {
782
+ font-size: 14px !important;
783
+ }
784
+ .\!text-\[15px\] {
785
+ font-size: 15px !important;
786
+ }
787
+ .\!text-\[16px\] {
788
+ font-size: 16px !important;
789
+ }
790
+ .text-\[12px\] {
791
+ font-size: 12px;
792
+ }
793
+ .text-\[14px\] {
794
+ font-size: 14px;
795
+ }
796
+ .text-\[16px\] {
797
+ font-size: 16px;
798
+ }
799
+ .leading-5 {
800
+ --tw-leading: calc(var(--spacing) * 5);
801
+ line-height: calc(var(--spacing) * 5);
802
+ }
803
+ .leading-6 {
804
+ --tw-leading: calc(var(--spacing) * 6);
805
+ line-height: calc(var(--spacing) * 6);
806
+ }
807
+ .\!font-medium {
808
+ --tw-font-weight: var(--font-weight-medium) !important;
809
+ font-weight: var(--font-weight-medium) !important;
810
+ }
811
+ .\!font-normal {
812
+ --tw-font-weight: var(--font-weight-normal) !important;
813
+ font-weight: var(--font-weight-normal) !important;
814
+ }
815
+ .\!font-semibold {
816
+ --tw-font-weight: var(--font-weight-semibold) !important;
817
+ font-weight: var(--font-weight-semibold) !important;
818
+ }
819
+ .font-\[500\] {
820
+ --tw-font-weight: 500;
821
+ font-weight: 500;
822
+ }
823
+ .font-\[600\] {
824
+ --tw-font-weight: 600;
825
+ font-weight: 600;
826
+ }
827
+ .font-medium {
828
+ --tw-font-weight: var(--font-weight-medium);
829
+ font-weight: var(--font-weight-medium);
830
+ }
831
+ .font-semibold {
832
+ --tw-font-weight: var(--font-weight-semibold);
833
+ font-weight: var(--font-weight-semibold);
834
+ }
835
+ .\!text-\[\#000\] {
836
+ color: #000 !important;
837
+ }
838
+ .\!text-\[\#3f3f46cc\] {
839
+ color: #3f3f46cc !important;
840
+ }
841
+ .text-\[\#3f3f46cc\] {
842
+ color: #3f3f46cc;
843
+ }
844
+ .text-\[\#737373\] {
845
+ color: #737373;
846
+ }
847
+ .text-black {
848
+ color: var(--color-black);
849
+ }
850
+ .text-gray-400 {
851
+ color: var(--color-gray-400);
852
+ }
853
+ .text-gray-500 {
854
+ color: var(--color-gray-500);
855
+ }
856
+ .text-gray-600 {
857
+ color: var(--color-gray-600);
858
+ }
859
+ .text-gray-700 {
860
+ color: var(--color-gray-700);
861
+ }
862
+ .text-green-800 {
863
+ color: var(--color-green-800);
864
+ }
865
+ .text-primary {
866
+ color: var(--color-primary);
867
+ }
868
+ .text-red-500 {
869
+ color: var(--color-red-500);
870
+ }
871
+ .text-red-800 {
872
+ color: var(--color-red-800);
873
+ }
874
+ .text-white {
875
+ color: var(--color-white);
876
+ }
877
+ .text-yellow-800 {
878
+ color: var(--color-yellow-800);
879
+ }
880
+ .shadow {
881
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
882
+ box-shadow:
883
+ var(--tw-inset-shadow),
884
+ var(--tw-inset-ring-shadow),
885
+ var(--tw-ring-offset-shadow),
886
+ var(--tw-ring-shadow),
887
+ var(--tw-shadow);
888
+ }
889
+ .shadow-inner {
890
+ --tw-shadow: inset 0 2px 4px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
891
+ box-shadow:
892
+ var(--tw-inset-shadow),
893
+ var(--tw-inset-ring-shadow),
894
+ var(--tw-ring-offset-shadow),
895
+ var(--tw-ring-shadow),
896
+ var(--tw-shadow);
897
+ }
898
+ .shadow-lg {
899
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
900
+ box-shadow:
901
+ var(--tw-inset-shadow),
902
+ var(--tw-inset-ring-shadow),
903
+ var(--tw-ring-offset-shadow),
904
+ var(--tw-ring-shadow),
905
+ var(--tw-shadow);
906
+ }
907
+ .outline-offset-2 {
908
+ outline-offset: 2px;
909
+ }
910
+ .outline-black {
911
+ outline-color: var(--color-black);
912
+ }
913
+ .transition {
914
+ transition-property:
915
+ color,
916
+ background-color,
917
+ border-color,
918
+ outline-color,
919
+ text-decoration-color,
920
+ fill,
921
+ stroke,
922
+ --tw-gradient-from,
923
+ --tw-gradient-via,
924
+ --tw-gradient-to,
925
+ opacity,
926
+ box-shadow,
927
+ transform,
928
+ translate,
929
+ scale,
930
+ rotate,
931
+ filter,
932
+ -webkit-backdrop-filter,
933
+ backdrop-filter,
934
+ display,
935
+ content-visibility,
936
+ overlay,
937
+ pointer-events;
938
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
939
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
940
+ }
941
+ .transition-all {
942
+ transition-property: all;
943
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
944
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
945
+ }
946
+ .transition-colors {
947
+ transition-property:
948
+ color,
949
+ background-color,
950
+ border-color,
951
+ outline-color,
952
+ text-decoration-color,
953
+ fill,
954
+ stroke,
955
+ --tw-gradient-from,
956
+ --tw-gradient-via,
957
+ --tw-gradient-to;
958
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
959
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
960
+ }
961
+ .transition-transform {
962
+ transition-property:
963
+ transform,
964
+ translate,
965
+ scale,
966
+ rotate;
967
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
968
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
969
+ }
970
+ .delay-75 {
971
+ transition-delay: 75ms;
972
+ }
973
+ .delay-100 {
974
+ transition-delay: 100ms;
975
+ }
976
+ .duration-200 {
977
+ --tw-duration: 200ms;
978
+ transition-duration: 200ms;
979
+ }
980
+ .duration-300 {
981
+ --tw-duration: 300ms;
982
+ transition-duration: 300ms;
983
+ }
984
+ .ease-in-out {
985
+ --tw-ease: var(--ease-in-out);
986
+ transition-timing-function: var(--ease-in-out);
987
+ }
988
+ .select-none {
989
+ -webkit-user-select: none;
990
+ user-select: none;
991
+ }
992
+ .peer-checked\:border-primary {
993
+ &:is(:where(.peer):checked ~ *) {
994
+ border-color: var(--color-primary);
995
+ }
996
+ }
997
+ .peer-checked\:bg-primary {
998
+ &:is(:where(.peer):checked ~ *) {
999
+ background-color: var(--color-primary);
1000
+ }
1001
+ }
1002
+ .focus-within\:outline-2 {
1003
+ &:focus-within {
1004
+ outline-style: var(--tw-outline-style);
1005
+ outline-width: 2px;
1006
+ }
1007
+ }
1008
+ .focus-within\:outline-offset-2 {
1009
+ &:focus-within {
1010
+ outline-offset: 2px;
1011
+ }
1012
+ }
1013
+ .focus-within\:outline-black {
1014
+ &:focus-within {
1015
+ outline-color: var(--color-black);
1016
+ }
1017
+ }
1018
+ .hover\:border-gray-400 {
1019
+ &:hover {
1020
+ @media (hover: hover) {
1021
+ border-color: var(--color-gray-400);
1022
+ }
1023
+ }
1024
+ }
1025
+ .hover\:bg-\[\#F7FAFC\] {
1026
+ &:hover {
1027
+ @media (hover: hover) {
1028
+ background-color: #F7FAFC;
1029
+ }
1030
+ }
1031
+ }
1032
+ .hover\:bg-\[\#f4f4f5\] {
1033
+ &:hover {
1034
+ @media (hover: hover) {
1035
+ background-color: #f4f4f5;
1036
+ }
1037
+ }
1038
+ }
1039
+ .hover\:bg-gray-50 {
1040
+ &:hover {
1041
+ @media (hover: hover) {
1042
+ background-color: var(--color-gray-50);
1043
+ }
1044
+ }
1045
+ }
1046
+ .hover\:bg-gray-100 {
1047
+ &:hover {
1048
+ @media (hover: hover) {
1049
+ background-color: var(--color-gray-100);
1050
+ }
1051
+ }
1052
+ }
1053
+ .hover\:text-gray-700 {
1054
+ &:hover {
1055
+ @media (hover: hover) {
1056
+ color: var(--color-gray-700);
1057
+ }
1058
+ }
1059
+ }
1060
+ .focus\:border-black {
1061
+ &:focus {
1062
+ border-color: var(--color-black);
1063
+ }
1064
+ }
1065
+ .focus\:shadow-none {
1066
+ &:focus {
1067
+ --tw-shadow: 0 0 #0000;
1068
+ box-shadow:
1069
+ var(--tw-inset-shadow),
1070
+ var(--tw-inset-ring-shadow),
1071
+ var(--tw-ring-offset-shadow),
1072
+ var(--tw-ring-shadow),
1073
+ var(--tw-shadow);
1074
+ }
1075
+ }
1076
+ .focus\:ring-0 {
1077
+ &:focus {
1078
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1079
+ box-shadow:
1080
+ var(--tw-inset-shadow),
1081
+ var(--tw-inset-ring-shadow),
1082
+ var(--tw-ring-offset-shadow),
1083
+ var(--tw-ring-shadow),
1084
+ var(--tw-shadow);
1085
+ }
1086
+ }
1087
+ .focus\:outline-2 {
1088
+ &:focus {
1089
+ outline-style: var(--tw-outline-style);
1090
+ outline-width: 2px;
1091
+ }
1092
+ }
1093
+ .focus\:outline-offset-2 {
1094
+ &:focus {
1095
+ outline-offset: 2px;
1096
+ }
1097
+ }
1098
+ .focus\:outline-black {
1099
+ &:focus {
1100
+ outline-color: var(--color-black);
1101
+ }
1102
+ }
1103
+ .focus\:outline-none {
1104
+ &:focus {
1105
+ --tw-outline-style: none;
1106
+ outline-style: none;
1107
+ }
1108
+ }
1109
+ .xs\:max-md\:z-40 {
1110
+ @media (width >= 360px) {
1111
+ @media (width < 48rem) {
1112
+ z-index: 40;
1113
+ }
1114
+ }
1115
+ }
1116
+ .sm\:flex-row {
1117
+ @media (width >= 40rem) {
1118
+ flex-direction: row;
1119
+ }
1120
+ }
1121
+ .sm\:justify-end {
1122
+ @media (width >= 40rem) {
1123
+ justify-content: flex-end;
1124
+ }
1125
+ }
1126
+ .sm\:space-x-2 {
1127
+ @media (width >= 40rem) {
1128
+ :where(& > :not(:last-child)) {
1129
+ --tw-space-x-reverse: 0;
1130
+ margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
1131
+ margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
1132
+ }
1133
+ }
1134
+ }
1135
+ .md\:relative {
1136
+ @media (width >= 48rem) {
1137
+ position: relative;
1138
+ }
1139
+ }
1140
+ .md\:block {
1141
+ @media (width >= 48rem) {
1142
+ display: block;
1143
+ }
1144
+ }
1145
+ .md\:hidden {
1146
+ @media (width >= 48rem) {
1147
+ display: none;
1148
+ }
1149
+ }
1150
+ .md\:min-w-\[576px\] {
1151
+ @media (width >= 48rem) {
1152
+ min-width: 576px;
1153
+ }
1154
+ }
1155
+ .md\:translate-x-0 {
1156
+ @media (width >= 48rem) {
1157
+ --tw-translate-x: calc(var(--spacing) * 0);
1158
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1159
+ }
1160
+ }
1161
+ .md\:pt-4 {
1162
+ @media (width >= 48rem) {
1163
+ padding-top: calc(var(--spacing) * 4);
1164
+ }
1165
+ }
1166
+ .md\:max-lg\:w-\[280px\] {
1167
+ @media (width >= 48rem) {
1168
+ @media (width < 64rem) {
1169
+ width: 280px;
1170
+ }
1171
+ }
1172
+ }
1173
+ .dark\:border-\[\#303036\] {
1174
+ &:where(.dark, .dark *) {
1175
+ border-color: #303036;
1176
+ }
1177
+ }
1178
+ .dark\:bg-\[\#1d1d20\] {
1179
+ &:where(.dark, .dark *) {
1180
+ background-color: #1d1d20;
1181
+ }
1182
+ }
1183
+ .dark\:bg-\[\#4B5563\] {
1184
+ &:where(.dark, .dark *) {
1185
+ background-color: #4B5563;
1186
+ }
1187
+ }
1188
+ .dark\:bg-\[\#18181b\] {
1189
+ &:where(.dark, .dark *) {
1190
+ background-color: #18181b;
1191
+ }
1192
+ }
1193
+ .dark\:bg-\[\#27272a\] {
1194
+ &:where(.dark, .dark *) {
1195
+ background-color: #27272a;
1196
+ }
1197
+ }
1198
+ .dark\:bg-\[\#303036\] {
1199
+ &:where(.dark, .dark *) {
1200
+ background-color: #303036;
1201
+ }
1202
+ }
1203
+ .dark\:bg-gray-800 {
1204
+ &:where(.dark, .dark *) {
1205
+ background-color: var(--color-gray-800);
1206
+ }
1207
+ }
1208
+ .dark\:bg-green-900 {
1209
+ &:where(.dark, .dark *) {
1210
+ background-color: var(--color-green-900);
1211
+ }
1212
+ }
1213
+ .dark\:bg-primary {
1214
+ &:where(.dark, .dark *) {
1215
+ background-color: var(--color-primary);
1216
+ }
1217
+ }
1218
+ .dark\:bg-red-900 {
1219
+ &:where(.dark, .dark *) {
1220
+ background-color: var(--color-red-900);
1221
+ }
1222
+ }
1223
+ .dark\:bg-transparent {
1224
+ &:where(.dark, .dark *) {
1225
+ background-color: transparent;
1226
+ }
1227
+ }
1228
+ .dark\:bg-yellow-900 {
1229
+ &:where(.dark, .dark *) {
1230
+ background-color: var(--color-yellow-900);
1231
+ }
1232
+ }
1233
+ .dark\:text-\[\#71717a\] {
1234
+ &:where(.dark, .dark *) {
1235
+ color: #71717a;
1236
+ }
1237
+ }
1238
+ .dark\:text-\[\#a1a1aa\] {
1239
+ &:where(.dark, .dark *) {
1240
+ color: #a1a1aa;
1241
+ }
1242
+ }
1243
+ .dark\:text-\[\#f4f4f5cc\] {
1244
+ &:where(.dark, .dark *) {
1245
+ color: #f4f4f5cc;
1246
+ }
1247
+ }
1248
+ .dark\:text-gray-400 {
1249
+ &:where(.dark, .dark *) {
1250
+ color: var(--color-gray-400);
1251
+ }
1252
+ }
1253
+ .dark\:text-gray-500 {
1254
+ &:where(.dark, .dark *) {
1255
+ color: var(--color-gray-500);
1256
+ }
1257
+ }
1258
+ .dark\:text-gray-600 {
1259
+ &:where(.dark, .dark *) {
1260
+ color: var(--color-gray-600);
1261
+ }
1262
+ }
1263
+ .dark\:text-green-100 {
1264
+ &:where(.dark, .dark *) {
1265
+ color: var(--color-green-100);
1266
+ }
1267
+ }
1268
+ .dark\:text-red-100 {
1269
+ &:where(.dark, .dark *) {
1270
+ color: var(--color-red-100);
1271
+ }
1272
+ }
1273
+ .dark\:text-white {
1274
+ &:where(.dark, .dark *) {
1275
+ color: var(--color-white);
1276
+ }
1277
+ }
1278
+ .dark\:text-yellow-100 {
1279
+ &:where(.dark, .dark *) {
1280
+ color: var(--color-yellow-100);
1281
+ }
1282
+ }
1283
+ .dark\:outline-white {
1284
+ &:where(.dark, .dark *) {
1285
+ outline-color: var(--color-white);
1286
+ }
1287
+ }
1288
+ .dark\:hover\:bg-\[\#27272a\] {
1289
+ &:where(.dark, .dark *) {
1290
+ &:hover {
1291
+ @media (hover: hover) {
1292
+ background-color: #27272a;
1293
+ }
1294
+ }
1295
+ }
1296
+ }
1297
+ .dark\:hover\:bg-\[\#303036\] {
1298
+ &:where(.dark, .dark *) {
1299
+ &:hover {
1300
+ @media (hover: hover) {
1301
+ background-color: #303036;
1302
+ }
1303
+ }
1304
+ }
1305
+ }
1306
+ .dark\:hover\:text-white {
1307
+ &:where(.dark, .dark *) {
1308
+ &:hover {
1309
+ @media (hover: hover) {
1310
+ color: var(--color-white);
1311
+ }
1312
+ }
1313
+ }
1314
+ }
1315
+ }
1316
+ body {
1317
+ font-family: "Inter", sans-serif;
1318
+ }
1319
+ @layer utilities {
1320
+ .scrollbar-hide {
1321
+ scrollbar-width: none;
1322
+ -ms-overflow-style: none;
1323
+ }
1324
+ .scrollbar-hide::-webkit-scrollbar {
1325
+ display: none;
1326
+ }
1327
+ }
1328
+ @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1329
+ @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1330
+ @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
1331
+ @property --tw-rotate-x { syntax: "*"; inherits: false; }
1332
+ @property --tw-rotate-y { syntax: "*"; inherits: false; }
1333
+ @property --tw-rotate-z { syntax: "*"; inherits: false; }
1334
+ @property --tw-skew-x { syntax: "*"; inherits: false; }
1335
+ @property --tw-skew-y { syntax: "*"; inherits: false; }
1336
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
1337
+ @property --tw-leading { syntax: "*"; inherits: false; }
1338
+ @property --tw-font-weight { syntax: "*"; inherits: false; }
1339
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1340
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
1341
+ @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1342
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1343
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
1344
+ @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1345
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
1346
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1347
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
1348
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1349
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
1350
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
1351
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
1352
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1353
+ @property --tw-duration { syntax: "*"; inherits: false; }
1354
+ @property --tw-ease { syntax: "*"; inherits: false; }
1355
+ @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
1356
+ @property --tw-space-x-reverse { syntax: "*"; inherits: false; initial-value: 0; }
1357
+ @layer properties {
1358
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1359
+ *,
1360
+ ::before,
1361
+ ::after,
1362
+ ::backdrop {
1363
+ --tw-translate-x: 0;
1364
+ --tw-translate-y: 0;
1365
+ --tw-translate-z: 0;
1366
+ --tw-rotate-x: initial;
1367
+ --tw-rotate-y: initial;
1368
+ --tw-rotate-z: initial;
1369
+ --tw-skew-x: initial;
1370
+ --tw-skew-y: initial;
1371
+ --tw-border-style: solid;
1372
+ --tw-leading: initial;
1373
+ --tw-font-weight: initial;
1374
+ --tw-shadow: 0 0 #0000;
1375
+ --tw-shadow-color: initial;
1376
+ --tw-shadow-alpha: 100%;
1377
+ --tw-inset-shadow: 0 0 #0000;
1378
+ --tw-inset-shadow-color: initial;
1379
+ --tw-inset-shadow-alpha: 100%;
1380
+ --tw-ring-color: initial;
1381
+ --tw-ring-shadow: 0 0 #0000;
1382
+ --tw-inset-ring-color: initial;
1383
+ --tw-inset-ring-shadow: 0 0 #0000;
1384
+ --tw-ring-inset: initial;
1385
+ --tw-ring-offset-width: 0px;
1386
+ --tw-ring-offset-color: #fff;
1387
+ --tw-ring-offset-shadow: 0 0 #0000;
1388
+ --tw-duration: initial;
1389
+ --tw-ease: initial;
1390
+ --tw-outline-style: solid;
1391
+ --tw-space-x-reverse: 0;
1392
+ }
1393
+ }
1394
+ }
1395
+
1396
+ /* src/RightSheet/RightSheet.css */
1397
+ .sheetPopIn {
1398
+ animation: popIn 50ms ease-in-out forwards;
1399
+ }
1400
+ .sheetRightSlide {
1401
+ animation: rightSlide 350ms ease-in-out forwards;
1402
+ }
1403
+ .sheetLeftSlide {
1404
+ animation: sheetLeftSlide 350ms ease-in-out forwards;
1405
+ }
1406
+ @keyframes sheetLeftSlide {
1407
+ 0% {
1408
+ transform: translateX(-100%);
1409
+ opacity: 0;
1410
+ }
1411
+ 100% {
1412
+ transform: translateX(0);
1413
+ opacity: 1;
1414
+ }
1415
+ }
1416
+ @keyframes rightSlide {
1417
+ 0% {
1418
+ transform: translateX(100%);
1419
+ opacity: 0;
1420
+ }
1421
+ 100% {
1422
+ transform: translateX(0);
1423
+ opacity: 1;
1424
+ }
1425
+ }
1426
+ @keyframes popIn {
1427
+ 0% {
1428
+ opacity: 0;
1429
+ }
1430
+ 100% {
1431
+ opacity: 1;
1432
+ }
1433
+ }
1434
+ /*! tailwindcss v4.1.13 | MIT License | https://tailwindcss.com */