@lanrenbang/basecoat-ultra 0.1.6 → 0.2.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.
@@ -7,15 +7,12 @@
7
7
  "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
8
8
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
9
  "Courier New", monospace;
10
- --color-green-500: oklch(72.3% 0.219 149.579);
11
10
  --color-black: #000;
12
11
  --color-white: #fff;
13
12
  --spacing: 0.25rem;
14
13
  --container-xs: 20rem;
15
14
  --container-sm: 24rem;
16
- --container-md: 28rem;
17
15
  --container-lg: 32rem;
18
- --container-4xl: 56rem;
19
16
  --text-xs: 0.75rem;
20
17
  --text-xs--line-height: calc(1 / 0.75);
21
18
  --text-sm: 0.875rem;
@@ -24,24 +21,10 @@
24
21
  --text-base--line-height: calc(1.5 / 1);
25
22
  --text-lg: 1.125rem;
26
23
  --text-lg--line-height: calc(1.75 / 1.125);
27
- --text-xl: 1.25rem;
28
- --text-xl--line-height: calc(1.75 / 1.25);
29
- --text-2xl: 1.5rem;
30
- --text-2xl--line-height: calc(2 / 1.5);
31
- --text-3xl: 1.875rem;
32
- --text-3xl--line-height: calc(2.25 / 1.875);
33
- --text-4xl: 2.25rem;
34
- --text-4xl--line-height: calc(2.5 / 2.25);
35
- --text-7xl: 4.5rem;
36
- --text-7xl--line-height: 1;
37
24
  --font-weight-normal: 400;
38
25
  --font-weight-medium: 500;
39
26
  --font-weight-semibold: 600;
40
- --font-weight-bold: 700;
41
- --tracking-tighter: -0.05em;
42
27
  --tracking-tight: -0.025em;
43
- --tracking-wider: 0.05em;
44
- --leading-tight: 1.25;
45
28
  --leading-snug: 1.375;
46
29
  --leading-normal: 1.5;
47
30
  --leading-relaxed: 1.625;
@@ -50,11 +33,9 @@
50
33
  --radius-md: calc(var(--radius) - 2px);
51
34
  --radius-lg: var(--radius);
52
35
  --radius-xl: calc(var(--radius) + 4px);
36
+ --drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15);
53
37
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
54
38
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
55
- --animate-spin: spin 1s linear infinite;
56
- --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
57
- --blur-sm: 8px;
58
39
  --default-transition-duration: 150ms;
59
40
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
60
41
  --default-font-family: var(--font-sans);
@@ -77,15 +58,8 @@
77
58
  --color-border: var(--border);
78
59
  --color-input: var(--input);
79
60
  --color-ring: var(--ring);
80
- --color-chart-1: var(--chart-1);
81
- --color-chart-2: var(--chart-2);
82
- --color-chart-3: var(--chart-3);
83
- --color-chart-4: var(--chart-4);
84
- --color-chart-5: var(--chart-5);
85
61
  --color-sidebar: var(--sidebar);
86
62
  --color-sidebar-foreground: var(--sidebar-foreground);
87
- --color-sidebar-primary: var(--sidebar-primary);
88
- --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
89
63
  --color-sidebar-accent: var(--sidebar-accent);
90
64
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
91
65
  --color-sidebar-border: var(--sidebar-border);
@@ -241,204 +215,18 @@
241
215
  }
242
216
  }
243
217
  @layer utilities {
244
- .pointer-events-none {
245
- pointer-events: none;
246
- }
247
- .visible {
248
- visibility: visible;
249
- }
250
218
  .absolute {
251
219
  position: absolute;
252
220
  }
253
- .fixed {
254
- position: fixed;
255
- }
256
221
  .relative {
257
222
  position: relative;
258
223
  }
259
224
  .static {
260
225
  position: static;
261
226
  }
262
- .sticky {
263
- position: sticky;
264
- }
265
- .inset-0 {
266
- inset: calc(var(--spacing) * 0);
267
- }
268
- .inset-x-0 {
269
- inset-inline: calc(var(--spacing) * 0);
270
- }
271
- .inset-y-0 {
272
- inset-block: calc(var(--spacing) * 0);
273
- }
274
- .-top-8 {
275
- top: calc(var(--spacing) * -8);
276
- }
277
- .top-0 {
278
- top: calc(var(--spacing) * 0);
279
- }
280
- .top-1\/2 {
281
- top: calc(1/2 * 100%);
282
- }
283
- .top-2 {
284
- top: calc(var(--spacing) * 2);
285
- }
286
- .top-4 {
287
- top: calc(var(--spacing) * 4);
288
- }
289
- .top-\[50\%\] {
290
- top: 50%;
291
- }
292
- .top-auto {
293
- top: auto;
294
- }
295
- .-right-12 {
296
- right: calc(var(--spacing) * -12);
297
- }
298
- .right-0 {
299
- right: calc(var(--spacing) * 0);
300
- }
301
- .right-1 {
302
- right: calc(var(--spacing) * 1);
303
- }
304
- .right-2 {
305
- right: calc(var(--spacing) * 2);
306
- }
307
- .right-3 {
308
- right: calc(var(--spacing) * 3);
309
- }
310
- .right-4 {
311
- right: calc(var(--spacing) * 4);
312
- }
313
- .-bottom-8 {
314
- bottom: calc(var(--spacing) * -8);
315
- }
316
- .bottom-0 {
317
- bottom: calc(var(--spacing) * 0);
318
- }
319
- .-left-12 {
320
- left: calc(var(--spacing) * -12);
321
- }
322
- .left-0 {
323
- left: calc(var(--spacing) * 0);
324
- }
325
- .left-1\/2 {
326
- left: calc(1/2 * 100%);
327
- }
328
- .left-3 {
329
- left: calc(var(--spacing) * 3);
330
- }
331
- .left-4 {
332
- left: calc(var(--spacing) * 4);
333
- }
334
- .left-\[50\%\] {
335
- left: 50%;
336
- }
337
- .isolate {
338
- isolation: isolate;
339
- }
340
- .z-10 {
341
- z-index: 10;
342
- }
343
- .z-30 {
344
- z-index: 30;
345
- }
346
- .z-40 {
347
- z-index: 40;
348
- }
349
- .z-50 {
350
- z-index: 50;
351
- }
352
- .col-span-3 {
353
- grid-column: span 3 / span 3;
354
- }
355
- .container {
356
- width: 100%;
357
- @media (width >= 40rem) {
358
- max-width: 40rem;
359
- }
360
- @media (width >= 48rem) {
361
- max-width: 48rem;
362
- }
363
- @media (width >= 64rem) {
364
- max-width: 64rem;
365
- }
366
- @media (width >= 80rem) {
367
- max-width: 80rem;
368
- }
369
- @media (width >= 96rem) {
370
- max-width: 96rem;
371
- }
372
- }
373
- .-mx-6 {
374
- margin-inline: calc(var(--spacing) * -6);
375
- }
376
- .mx-2 {
377
- margin-inline: calc(var(--spacing) * 2);
378
- }
379
- .mx-auto {
380
- margin-inline: auto;
381
- }
382
- .my-1 {
383
- margin-block: calc(var(--spacing) * 1);
384
- }
385
- .-mt-1\.25 {
386
- margin-top: calc(var(--spacing) * -1.25);
387
- }
388
- .-mt-4 {
389
- margin-top: calc(var(--spacing) * -4);
390
- }
391
- .mt-1\.5 {
392
- margin-top: calc(var(--spacing) * 1.5);
393
- }
394
- .mt-2 {
395
- margin-top: calc(var(--spacing) * 2);
396
- }
397
227
  .mt-4 {
398
228
  margin-top: calc(var(--spacing) * 4);
399
229
  }
400
- .mt-6 {
401
- margin-top: calc(var(--spacing) * 6);
402
- }
403
- .mt-8 {
404
- margin-top: calc(var(--spacing) * 8);
405
- }
406
- .mt-auto {
407
- margin-top: auto;
408
- }
409
- .mr-2 {
410
- margin-right: calc(var(--spacing) * 2);
411
- }
412
- .mb-1 {
413
- margin-bottom: calc(var(--spacing) * 1);
414
- }
415
- .mb-2 {
416
- margin-bottom: calc(var(--spacing) * 2);
417
- }
418
- .mb-3 {
419
- margin-bottom: calc(var(--spacing) * 3);
420
- }
421
- .mb-4 {
422
- margin-bottom: calc(var(--spacing) * 4);
423
- }
424
- .mb-6 {
425
- margin-bottom: calc(var(--spacing) * 6);
426
- }
427
- .mb-8 {
428
- margin-bottom: calc(var(--spacing) * 8);
429
- }
430
- .mb-12 {
431
- margin-bottom: calc(var(--spacing) * 12);
432
- }
433
- .-ml-2 {
434
- margin-left: calc(var(--spacing) * -2);
435
- }
436
- .-ml-4 {
437
- margin-left: calc(var(--spacing) * -4);
438
- }
439
- .ml-auto {
440
- margin-left: auto;
441
- }
442
230
  .block {
443
231
  display: block;
444
232
  }
@@ -454,1438 +242,143 @@
454
242
  .inline {
455
243
  display: inline;
456
244
  }
457
- .inline-flex {
458
- display: inline-flex;
459
- }
460
- .table {
461
- display: table;
462
- }
463
- .aspect-square {
464
- aspect-ratio: 1 / 1;
465
- }
466
- .size-4 {
467
- width: calc(var(--spacing) * 4);
468
- height: calc(var(--spacing) * 4);
469
- }
470
245
  .size-6 {
471
246
  width: calc(var(--spacing) * 6);
472
247
  height: calc(var(--spacing) * 6);
473
248
  }
474
- .size-8 {
475
- width: calc(var(--spacing) * 8);
476
- height: calc(var(--spacing) * 8);
477
- }
478
- .size-10 {
479
- width: calc(var(--spacing) * 10);
480
- height: calc(var(--spacing) * 10);
481
- }
482
- .size-12 {
483
- width: calc(var(--spacing) * 12);
484
- height: calc(var(--spacing) * 12);
485
- }
486
- .size-24 {
487
- width: calc(var(--spacing) * 24);
488
- height: calc(var(--spacing) * 24);
489
- }
490
- .h-1\.5 {
491
- height: calc(var(--spacing) * 1.5);
492
- }
493
- .h-2 {
494
- height: calc(var(--spacing) * 2);
495
- }
496
- .h-4 {
497
- height: calc(var(--spacing) * 4);
498
- }
499
- .h-5 {
500
- height: calc(var(--spacing) * 5);
501
- }
502
249
  .h-6 {
503
250
  height: calc(var(--spacing) * 6);
504
251
  }
505
- .h-7 {
506
- height: calc(var(--spacing) * 7);
507
- }
508
- .h-8 {
509
- height: calc(var(--spacing) * 8);
510
- }
511
- .h-9 {
512
- height: calc(var(--spacing) * 9);
513
- }
514
- .h-10 {
515
- height: calc(var(--spacing) * 10);
516
- }
517
- .h-12 {
518
- height: calc(var(--spacing) * 12);
519
- }
520
- .h-14 {
521
- height: calc(var(--spacing) * 14);
522
- }
523
- .h-40 {
524
- height: calc(var(--spacing) * 40);
525
- }
526
- .h-48 {
527
- height: calc(var(--spacing) * 48);
528
- }
529
- .h-64 {
530
- height: calc(var(--spacing) * 64);
531
- }
532
- .h-\[300px\] {
533
- height: 300px;
534
- }
535
- .h-\[550px\] {
536
- height: 550px;
537
- }
538
- .h-\[calc\(100\%_-_1px\)\] {
539
- height: calc(100% - 1px);
540
- }
541
- .h-auto {
542
- height: auto;
543
- }
544
- .h-full {
545
- height: 100%;
546
- }
547
- .h-screen {
548
- height: 100vh;
549
- }
550
- .max-h-40 {
551
- max-height: calc(var(--spacing) * 40);
552
- }
553
- .max-h-\[35vh\] {
554
- max-height: 35vh;
555
- }
556
- .max-h-\[300px\] {
557
- max-height: 300px;
558
- }
559
- .min-h-screen {
560
- min-height: 100vh;
561
- }
562
- .w-1\/2 {
563
- width: calc(1/2 * 100%);
564
- }
565
- .w-3\/4 {
566
- width: calc(3/4 * 100%);
567
- }
568
- .w-4 {
569
- width: calc(var(--spacing) * 4);
570
- }
571
- .w-6 {
572
- width: calc(var(--spacing) * 6);
573
- }
574
- .w-8 {
575
- width: calc(var(--spacing) * 8);
576
- }
577
- .w-9 {
578
- width: calc(var(--spacing) * 9);
579
- }
580
- .w-10 {
581
- width: calc(var(--spacing) * 10);
582
- }
583
- .w-12 {
584
- width: calc(var(--spacing) * 12);
585
- }
586
- .w-48 {
587
- width: calc(var(--spacing) * 48);
588
- }
589
- .w-60 {
590
- width: calc(var(--spacing) * 60);
591
- }
592
- .w-64 {
593
- width: calc(var(--spacing) * 64);
594
- }
595
- .w-80 {
596
- width: calc(var(--spacing) * 80);
597
- }
598
- .w-96 {
599
- width: calc(var(--spacing) * 96);
600
- }
601
- .w-\[45\%\] {
602
- width: 45%;
603
- }
604
- .w-\[100px\] {
605
- width: 100px;
606
- }
607
- .w-fit {
608
- width: fit-content;
609
- }
610
252
  .w-full {
611
253
  width: 100%;
612
254
  }
613
- .w-px {
614
- width: 1px;
615
- }
616
- .max-w-4xl {
617
- max-width: var(--container-4xl);
618
- }
619
- .max-w-\[400px\] {
620
- max-width: 400px;
621
- }
622
- .max-w-\[calc\(100\%_-_2rem\)\] {
623
- max-width: calc(100% - 2rem);
624
- }
625
- .max-w-lg {
626
- max-width: var(--container-lg);
627
- }
628
- .max-w-md {
629
- max-width: var(--container-md);
630
- }
631
- .max-w-sm {
632
- max-width: var(--container-sm);
633
- }
634
- .max-w-xs {
635
- max-width: var(--container-xs);
636
- }
637
- .min-w-0 {
638
- min-width: calc(var(--spacing) * 0);
639
- }
640
- .min-w-5 {
641
- min-width: calc(var(--spacing) * 5);
642
- }
643
- .min-w-10 {
644
- min-width: calc(var(--spacing) * 10);
645
- }
646
255
  .flex-1 {
647
256
  flex: 1;
648
257
  }
649
- .flex-shrink-0 {
650
- flex-shrink: 0;
651
- }
652
- .shrink-0 {
653
- flex-shrink: 0;
654
- }
655
- .grow-0 {
656
- flex-grow: 0;
657
- }
658
- .basis-full {
659
- flex-basis: 100%;
660
- }
661
- .-translate-x-1\/2 {
662
- --tw-translate-x: calc(calc(1/2 * 100%) * -1);
663
- translate: var(--tw-translate-x) var(--tw-translate-y);
664
- }
665
- .-translate-y-1\/2 {
666
- --tw-translate-y: calc(calc(1/2 * 100%) * -1);
667
- translate: var(--tw-translate-x) var(--tw-translate-y);
668
- }
669
- .translate-y-0 {
670
- --tw-translate-y: calc(var(--spacing) * 0);
671
- translate: var(--tw-translate-x) var(--tw-translate-y);
672
- }
673
- .rotate-90 {
674
- rotate: 90deg;
675
- }
676
- .transform {
677
- transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
678
- }
679
- .animate-pulse {
680
- animation: var(--animate-pulse);
681
- }
682
- .animate-spin {
683
- animation: var(--animate-spin);
684
- }
685
- .cursor-default {
686
- cursor: default;
687
- }
688
- .cursor-grab {
689
- cursor: grab;
690
- }
691
- .cursor-pointer {
692
- cursor: pointer;
693
- }
694
- .snap-x {
695
- scroll-snap-type: x var(--tw-scroll-snap-strictness);
696
- }
697
- .snap-mandatory {
698
- --tw-scroll-snap-strictness: mandatory;
699
- }
700
- .scroll-pt-20 {
701
- scroll-padding-top: calc(var(--spacing) * 20);
702
- }
703
- .appearance-none {
704
- appearance: none;
705
- }
706
- .grid-cols-4 {
707
- grid-template-columns: repeat(4, minmax(0, 1fr));
258
+ .scale-110 {
259
+ --tw-scale-x: 110%;
260
+ --tw-scale-y: 110%;
261
+ --tw-scale-z: 110%;
262
+ scale: var(--tw-scale-x) var(--tw-scale-y);
708
263
  }
709
264
  .grid-cols-7 {
710
265
  grid-template-columns: repeat(7, minmax(0, 1fr));
711
266
  }
712
- .flex-col {
713
- flex-direction: column;
714
- }
715
- .flex-col-reverse {
716
- flex-direction: column-reverse;
717
- }
718
- .flex-wrap {
719
- flex-wrap: wrap;
720
- }
721
267
  .place-items-center {
722
268
  place-items: center;
723
269
  }
724
270
  .items-center {
725
271
  align-items: center;
726
272
  }
727
- .items-end {
728
- align-items: flex-end;
729
- }
730
- .items-start {
731
- align-items: flex-start;
732
- }
733
- .justify-between {
734
- justify-content: space-between;
735
- }
736
273
  .justify-center {
737
274
  justify-content: center;
738
275
  }
739
- .justify-end {
740
- justify-content: flex-end;
741
- }
742
- .justify-start {
743
- justify-content: flex-start;
744
- }
745
- .gap-1 {
746
- gap: calc(var(--spacing) * 1);
747
- }
748
- .gap-1\.5 {
749
- gap: calc(var(--spacing) * 1.5);
750
- }
751
- .gap-2 {
752
- gap: calc(var(--spacing) * 2);
753
- }
754
276
  .gap-3 {
755
277
  gap: calc(var(--spacing) * 3);
756
278
  }
757
- .gap-4 {
758
- gap: calc(var(--spacing) * 4);
759
- }
760
- .gap-6 {
761
- gap: calc(var(--spacing) * 6);
762
- }
763
- .space-y-1 {
764
- :where(& > :not(:last-child)) {
765
- --tw-space-y-reverse: 0;
766
- margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
767
- margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
768
- }
769
- }
770
- .space-y-2 {
771
- :where(& > :not(:last-child)) {
772
- --tw-space-y-reverse: 0;
773
- margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
774
- margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
775
- }
776
- }
777
- .space-y-3 {
778
- :where(& > :not(:last-child)) {
779
- --tw-space-y-reverse: 0;
780
- margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
781
- margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
782
- }
783
- }
784
- .space-y-4 {
785
- :where(& > :not(:last-child)) {
786
- --tw-space-y-reverse: 0;
787
- margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
788
- margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
789
- }
790
- }
791
- .space-y-6 {
792
- :where(& > :not(:last-child)) {
793
- --tw-space-y-reverse: 0;
794
- margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
795
- margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
796
- }
279
+ .rounded-full {
280
+ border-radius: calc(infinity * 1px);
797
281
  }
798
- .space-y-8 {
799
- :where(& > :not(:last-child)) {
800
- --tw-space-y-reverse: 0;
801
- margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));
802
- margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
803
- }
282
+ .rounded-sm {
283
+ border-radius: var(--radius-sm);
804
284
  }
805
- .space-y-10 {
806
- :where(& > :not(:last-child)) {
807
- --tw-space-y-reverse: 0;
808
- margin-block-start: calc(calc(var(--spacing) * 10) * var(--tw-space-y-reverse));
809
- margin-block-end: calc(calc(var(--spacing) * 10) * calc(1 - var(--tw-space-y-reverse)));
810
- }
285
+ .rounded-xl {
286
+ border-radius: var(--radius-xl);
811
287
  }
812
- .space-y-12 {
813
- :where(& > :not(:last-child)) {
814
- --tw-space-y-reverse: 0;
815
- margin-block-start: calc(calc(var(--spacing) * 12) * var(--tw-space-y-reverse));
816
- margin-block-end: calc(calc(var(--spacing) * 12) * calc(1 - var(--tw-space-y-reverse)));
817
- }
288
+ .border {
289
+ border-style: var(--tw-border-style);
290
+ border-width: 1px;
818
291
  }
819
- .space-y-24 {
820
- :where(& > :not(:last-child)) {
821
- --tw-space-y-reverse: 0;
822
- margin-block-start: calc(calc(var(--spacing) * 24) * var(--tw-space-y-reverse));
823
- margin-block-end: calc(calc(var(--spacing) * 24) * calc(1 - var(--tw-space-y-reverse)));
292
+ .border-border\/20 {
293
+ border-color: var(--color-border);
294
+ @supports (color: color-mix(in lab, red, red)) {
295
+ border-color: color-mix(in oklab, var(--color-border) 20%, transparent);
824
296
  }
825
297
  }
826
- .space-x-2 {
827
- :where(& > :not(:last-child)) {
828
- --tw-space-x-reverse: 0;
829
- margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
830
- margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
298
+ .border-border\/50 {
299
+ border-color: var(--color-border);
300
+ @supports (color: color-mix(in lab, red, red)) {
301
+ border-color: color-mix(in oklab, var(--color-border) 50%, transparent);
831
302
  }
832
303
  }
833
- .truncate {
834
- overflow: hidden;
835
- text-overflow: ellipsis;
836
- white-space: nowrap;
837
- }
838
- .overflow-hidden {
839
- overflow: hidden;
840
- }
841
- .overflow-x-auto {
842
- overflow-x: auto;
843
- }
844
- .overflow-x-hidden {
845
- overflow-x: hidden;
846
- }
847
- .overflow-y-auto {
848
- overflow-y: auto;
849
- }
850
- .scroll-smooth {
851
- scroll-behavior: smooth;
852
- }
853
- .rounded {
854
- border-radius: 0.25rem;
855
- }
856
- .rounded-\[inherit\] {
857
- border-radius: inherit;
858
- }
859
- .rounded-full {
860
- border-radius: calc(infinity * 1px);
861
- }
862
- .rounded-lg {
863
- border-radius: var(--radius-lg);
864
- }
865
- .rounded-md {
866
- border-radius: var(--radius-md);
867
- }
868
- .rounded-none {
869
- border-radius: 0;
870
- }
871
- .rounded-sm {
872
- border-radius: var(--radius-sm);
873
- }
874
- .rounded-xl {
875
- border-radius: var(--radius-xl);
876
- }
877
- .rounded-xs {
878
- border-radius: var(--radius-xs);
879
- }
880
- .rounded-t-\[10px\] {
881
- border-top-left-radius: 10px;
882
- border-top-right-radius: 10px;
883
- }
884
- .border {
885
- border-style: var(--tw-border-style);
886
- border-width: 1px;
887
- }
888
- .border-0 {
889
- border-style: var(--tw-border-style);
890
- border-width: 0px;
891
- }
892
- .border-t {
893
- border-top-style: var(--tw-border-style);
894
- border-top-width: 1px;
895
- }
896
- .border-t-0 {
897
- border-top-style: var(--tw-border-style);
898
- border-top-width: 0px;
899
- }
900
- .border-r {
901
- border-right-style: var(--tw-border-style);
902
- border-right-width: 1px;
903
- }
904
- .border-r-0 {
905
- border-right-style: var(--tw-border-style);
906
- border-right-width: 0px;
907
- }
908
- .border-b {
909
- border-bottom-style: var(--tw-border-style);
910
- border-bottom-width: 1px;
911
- }
912
- .border-b-0 {
913
- border-bottom-style: var(--tw-border-style);
914
- border-bottom-width: 0px;
915
- }
916
- .border-b-2 {
917
- border-bottom-style: var(--tw-border-style);
918
- border-bottom-width: 2px;
919
- }
920
- .border-l {
921
- border-left-style: var(--tw-border-style);
922
- border-left-width: 1px;
923
- }
924
- .border-l-0 {
925
- border-left-style: var(--tw-border-style);
926
- border-left-width: 0px;
927
- }
928
- .border-dashed {
929
- --tw-border-style: dashed;
930
- border-style: dashed;
931
- }
932
- .border-none {
933
- --tw-border-style: none;
934
- border-style: none;
935
- }
936
- .border-border {
937
- border-color: var(--color-border);
938
- }
939
- .border-border\/20 {
940
- border-color: var(--color-border);
941
- @supports (color: color-mix(in lab, red, red)) {
942
- border-color: color-mix(in oklab, var(--color-border) 20%, transparent);
943
- }
944
- }
945
- .border-border\/50 {
946
- border-color: var(--color-border);
947
- @supports (color: color-mix(in lab, red, red)) {
948
- border-color: color-mix(in oklab, var(--color-border) 50%, transparent);
949
- }
950
- }
951
- .border-muted {
952
- border-color: var(--color-muted);
953
- }
954
- .border-primary {
955
- border-color: var(--color-primary);
956
- }
957
- .border-transparent {
958
- border-color: transparent;
959
- }
960
- .bg-\[\#282c34\] {
961
- background-color: #282c34;
962
- }
963
- .bg-accent {
964
- background-color: var(--color-accent);
965
- }
966
- .bg-background {
967
- background-color: var(--color-background);
968
- }
969
- .bg-black\/50 {
970
- background-color: color-mix(in srgb, #000 50%, transparent);
971
- @supports (color: color-mix(in lab, red, red)) {
972
- background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
973
- }
974
- }
975
- .bg-black\/80 {
976
- background-color: color-mix(in srgb, #000 80%, transparent);
977
- @supports (color: color-mix(in lab, red, red)) {
978
- background-color: color-mix(in oklab, var(--color-black) 80%, transparent);
979
- }
980
- }
981
- .bg-border {
982
- background-color: var(--color-border);
983
- }
984
- .bg-card {
985
- background-color: var(--color-card);
986
- }
987
- .bg-destructive {
988
- background-color: var(--color-destructive);
989
- }
990
- .bg-muted {
991
- background-color: var(--color-muted);
992
- }
993
- .bg-muted\/30 {
994
- background-color: var(--color-muted);
995
- @supports (color: color-mix(in lab, red, red)) {
996
- background-color: color-mix(in oklab, var(--color-muted) 30%, transparent);
997
- }
998
- }
999
- .bg-muted\/80 {
1000
- background-color: var(--color-muted);
1001
- @supports (color: color-mix(in lab, red, red)) {
1002
- background-color: color-mix(in oklab, var(--color-muted) 80%, transparent);
1003
- }
1004
- }
1005
- .bg-primary {
1006
- background-color: var(--color-primary);
1007
- }
1008
- .bg-secondary\/50 {
1009
- background-color: var(--color-secondary);
1010
- @supports (color: color-mix(in lab, red, red)) {
1011
- background-color: color-mix(in oklab, var(--color-secondary) 50%, transparent);
1012
- }
1013
- }
1014
- .bg-transparent {
1015
- background-color: transparent;
1016
- }
1017
- .bg-\[image\:var\(--check-icon\)\] {
1018
- background-image: var(--check-icon);
1019
- }
1020
- .bg-position-\[center_right_0\.5rem\] {
1021
- background-position: center right 0.5rem;
1022
- }
1023
- .bg-no-repeat {
1024
- background-repeat: no-repeat;
1025
- }
1026
- .p-0 {
1027
- padding: calc(var(--spacing) * 0);
1028
- }
1029
- .p-1 {
1030
- padding: calc(var(--spacing) * 1);
1031
- }
1032
- .p-2 {
1033
- padding: calc(var(--spacing) * 2);
1034
- }
1035
- .p-3 {
1036
- padding: calc(var(--spacing) * 3);
1037
- }
1038
304
  .p-4 {
1039
305
  padding: calc(var(--spacing) * 4);
1040
306
  }
1041
- .p-6 {
1042
- padding: calc(var(--spacing) * 6);
1043
- }
1044
- .p-8 {
1045
- padding: calc(var(--spacing) * 8);
1046
- }
1047
- .p-10 {
1048
- padding: calc(var(--spacing) * 10);
1049
- }
1050
- .p-12 {
1051
- padding: calc(var(--spacing) * 12);
1052
- }
1053
- .px-1 {
1054
- padding-inline: calc(var(--spacing) * 1);
1055
- }
1056
- .px-2 {
1057
- padding-inline: calc(var(--spacing) * 2);
1058
- }
1059
- .px-2\.5 {
1060
- padding-inline: calc(var(--spacing) * 2.5);
1061
- }
1062
- .px-3 {
1063
- padding-inline: calc(var(--spacing) * 3);
1064
- }
1065
- .px-4 {
1066
- padding-inline: calc(var(--spacing) * 4);
1067
- }
1068
- .px-8 {
1069
- padding-inline: calc(var(--spacing) * 8);
1070
- }
1071
- .py-1 {
1072
- padding-block: calc(var(--spacing) * 1);
1073
- }
1074
- .py-1\.5 {
1075
- padding-block: calc(var(--spacing) * 1.5);
1076
- }
1077
- .py-3 {
1078
- padding-block: calc(var(--spacing) * 3);
1079
- }
1080
- .py-4 {
1081
- padding-block: calc(var(--spacing) * 4);
1082
- }
1083
- .py-6 {
1084
- padding-block: calc(var(--spacing) * 6);
1085
- }
1086
- .pt-4 {
1087
- padding-top: calc(var(--spacing) * 4);
1088
- }
1089
- .pt-6 {
1090
- padding-top: calc(var(--spacing) * 6);
1091
- }
1092
- .pr-7\.5 {
1093
- padding-right: calc(var(--spacing) * 7.5);
1094
- }
1095
- .pr-12 {
1096
- padding-right: calc(var(--spacing) * 12);
1097
- }
1098
- .pr-20 {
1099
- padding-right: calc(var(--spacing) * 20);
1100
- }
1101
- .pb-0 {
1102
- padding-bottom: calc(var(--spacing) * 0);
1103
- }
1104
- .pb-2 {
1105
- padding-bottom: calc(var(--spacing) * 2);
1106
- }
1107
- .pb-4 {
1108
- padding-bottom: calc(var(--spacing) * 4);
1109
- }
1110
- .pl-2 {
1111
- padding-left: calc(var(--spacing) * 2);
1112
- }
1113
- .pl-4 {
1114
- padding-left: calc(var(--spacing) * 4);
1115
- }
1116
- .pl-9 {
1117
- padding-left: calc(var(--spacing) * 9);
1118
- }
1119
- .text-center {
1120
- text-align: center;
1121
- }
1122
- .text-left {
1123
- text-align: left;
1124
- }
1125
- .text-right {
1126
- text-align: right;
1127
- }
1128
- .font-mono {
1129
- font-family: var(--font-mono);
1130
- }
1131
- .font-sans {
1132
- font-family: var(--font-sans);
1133
- }
1134
- .text-2xl {
1135
- font-size: var(--text-2xl);
1136
- line-height: var(--tw-leading, var(--text-2xl--line-height));
1137
- }
1138
- .text-3xl {
1139
- font-size: var(--text-3xl);
1140
- line-height: var(--tw-leading, var(--text-3xl--line-height));
1141
- }
1142
- .text-4xl {
1143
- font-size: var(--text-4xl);
1144
- line-height: var(--tw-leading, var(--text-4xl--line-height));
1145
- }
1146
- .text-7xl {
1147
- font-size: var(--text-7xl);
1148
- line-height: var(--tw-leading, var(--text-7xl--line-height));
1149
- }
1150
- .text-lg {
1151
- font-size: var(--text-lg);
1152
- line-height: var(--tw-leading, var(--text-lg--line-height));
1153
- }
1154
- .text-sm {
1155
- font-size: var(--text-sm);
1156
- line-height: var(--tw-leading, var(--text-sm--line-height));
1157
- }
1158
- .text-xl {
1159
- font-size: var(--text-xl);
1160
- line-height: var(--tw-leading, var(--text-xl--line-height));
1161
- }
1162
- .text-xs {
1163
- font-size: var(--text-xs);
1164
- line-height: var(--tw-leading, var(--text-xs--line-height));
1165
- }
1166
- .text-\[0\.70rem\] {
1167
- font-size: 0.70rem;
1168
- }
1169
- .leading-none {
1170
- --tw-leading: 1;
1171
- line-height: 1;
1172
- }
1173
- .leading-relaxed {
1174
- --tw-leading: var(--leading-relaxed);
1175
- line-height: var(--leading-relaxed);
1176
- }
1177
- .leading-tight {
1178
- --tw-leading: var(--leading-tight);
1179
- line-height: var(--leading-tight);
1180
- }
1181
- .font-bold {
1182
- --tw-font-weight: var(--font-weight-bold);
1183
- font-weight: var(--font-weight-bold);
1184
- }
1185
- .font-medium {
1186
- --tw-font-weight: var(--font-weight-medium);
1187
- font-weight: var(--font-weight-medium);
1188
- }
1189
- .font-semibold {
1190
- --tw-font-weight: var(--font-weight-semibold);
1191
- font-weight: var(--font-weight-semibold);
1192
- }
1193
- .tracking-tight {
1194
- --tw-tracking: var(--tracking-tight);
1195
- letter-spacing: var(--tracking-tight);
1196
- }
1197
- .tracking-tighter {
1198
- --tw-tracking: var(--tracking-tighter);
1199
- letter-spacing: var(--tracking-tighter);
1200
- }
1201
- .tracking-wider {
1202
- --tw-tracking: var(--tracking-wider);
1203
- letter-spacing: var(--tracking-wider);
1204
- }
1205
- .whitespace-nowrap {
1206
- white-space: nowrap;
1207
- }
1208
- .text-accent-foreground {
1209
- color: var(--color-accent-foreground);
1210
- }
1211
- .text-destructive {
1212
- color: var(--color-destructive);
1213
- }
1214
- .text-foreground {
1215
- color: var(--color-foreground);
1216
- }
1217
- .text-green-500 {
1218
- color: var(--color-green-500);
1219
- }
1220
- .text-muted-foreground {
1221
- color: var(--color-muted-foreground);
1222
- }
1223
- .text-primary {
1224
- color: var(--color-primary);
1225
- }
1226
- .text-primary-foreground {
1227
- color: var(--color-primary-foreground);
1228
- }
1229
- .text-primary\/80 {
1230
- color: var(--color-primary);
1231
- @supports (color: color-mix(in lab, red, red)) {
1232
- color: color-mix(in oklab, var(--color-primary) 80%, transparent);
1233
- }
1234
- }
1235
- .text-white {
1236
- color: var(--color-white);
1237
- }
1238
- .capitalize {
1239
- text-transform: capitalize;
1240
- }
1241
- .uppercase {
1242
- text-transform: uppercase;
1243
- }
1244
- .underline-offset-4 {
1245
- text-underline-offset: 4px;
1246
- }
1247
- .antialiased {
1248
- -webkit-font-smoothing: antialiased;
1249
- -moz-osx-font-smoothing: grayscale;
1250
- }
1251
- .opacity-0 {
1252
- opacity: 0%;
1253
- }
1254
- .opacity-25 {
1255
- opacity: 25%;
1256
- }
1257
- .opacity-50 {
1258
- opacity: 50%;
1259
- }
1260
- .opacity-70 {
1261
- opacity: 70%;
1262
- }
1263
- .opacity-75 {
1264
- opacity: 75%;
1265
- }
1266
- .opacity-100 {
1267
- opacity: 100%;
1268
- }
1269
- .shadow {
1270
- --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));
1271
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1272
- }
1273
- .shadow-inner {
1274
- --tw-shadow: inset 0 2px 4px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
1275
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1276
- }
1277
- .shadow-lg {
1278
- --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));
1279
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1280
- }
1281
- .shadow-sm {
1282
- --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));
1283
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1284
- }
1285
- .shadow-xs {
1286
- --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
1287
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1288
- }
1289
- .ring-4 {
1290
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1291
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1292
- }
1293
- .ring-ring\/20 {
1294
- --tw-ring-color: var(--color-ring);
1295
- @supports (color: color-mix(in lab, red, red)) {
1296
- --tw-ring-color: color-mix(in oklab, var(--color-ring) 20%, transparent);
1297
- }
1298
- }
1299
- .ring-ring\/50 {
1300
- --tw-ring-color: var(--color-ring);
1301
- @supports (color: color-mix(in lab, red, red)) {
1302
- --tw-ring-color: color-mix(in oklab, var(--color-ring) 50%, transparent);
1303
- }
1304
- }
1305
- .ring-offset-background {
1306
- --tw-ring-offset-color: var(--color-background);
1307
- }
1308
- .outline-hidden {
1309
- --tw-outline-style: none;
1310
- outline-style: none;
1311
- @media (forced-colors: active) {
1312
- outline: 2px solid transparent;
1313
- outline-offset: 2px;
1314
- }
1315
- }
1316
- .outline {
1317
- outline-style: var(--tw-outline-style);
1318
- outline-width: 1px;
1319
- }
1320
- .filter {
1321
- 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,);
1322
- }
1323
- .backdrop-blur-sm {
1324
- --tw-backdrop-blur: blur(var(--blur-sm));
1325
- -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
1326
- backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
1327
- }
1328
- .transition {
1329
- transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
1330
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1331
- transition-duration: var(--tw-duration, var(--default-transition-duration));
1332
- }
1333
- .transition-\[color\,box-shadow\] {
1334
- transition-property: color,box-shadow;
1335
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1336
- transition-duration: var(--tw-duration, var(--default-transition-duration));
1337
- }
1338
- .transition-all {
1339
- transition-property: all;
1340
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1341
- transition-duration: var(--tw-duration, var(--default-transition-duration));
1342
- }
1343
- .transition-colors {
1344
- transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
1345
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1346
- transition-duration: var(--tw-duration, var(--default-transition-duration));
1347
- }
1348
- .transition-opacity {
1349
- transition-property: opacity;
1350
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1351
- transition-duration: var(--tw-duration, var(--default-transition-duration));
1352
- }
1353
- .transition-transform {
1354
- transition-property: transform, translate, scale, rotate;
1355
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1356
- transition-duration: var(--tw-duration, var(--default-transition-duration));
1357
- }
1358
- .duration-100 {
1359
- --tw-duration: 100ms;
1360
- transition-duration: 100ms;
1361
- }
1362
- .duration-200 {
1363
- --tw-duration: 200ms;
1364
- transition-duration: 200ms;
1365
- }
1366
- .duration-300 {
1367
- --tw-duration: 300ms;
1368
- transition-duration: 300ms;
1369
- }
1370
- .duration-500 {
1371
- --tw-duration: 500ms;
1372
- transition-duration: 500ms;
1373
- }
1374
- .duration-700 {
1375
- --tw-duration: 700ms;
1376
- transition-duration: 700ms;
1377
- }
1378
- .ease-in-out {
1379
- --tw-ease: var(--ease-in-out);
1380
- transition-timing-function: var(--ease-in-out);
1381
- }
1382
- .ease-out {
1383
- --tw-ease: var(--ease-out);
1384
- transition-timing-function: var(--ease-out);
1385
- }
1386
- .outline-none {
1387
- --tw-outline-style: none;
1388
- outline-style: none;
1389
- }
1390
- .select-none {
1391
- -webkit-user-select: none;
1392
- user-select: none;
1393
- }
1394
- .group-open\:rotate-180 {
1395
- &:is(:where(.group):is([open], :popover-open, :open) *) {
1396
- rotate: 180deg;
1397
- }
1398
- }
1399
- .group-hover\:opacity-100 {
1400
- &:is(:where(.group):hover *) {
1401
- @media (hover: hover) {
1402
- opacity: 100%;
1403
- }
1404
- }
1405
- }
1406
- .placeholder\:text-muted-foreground {
1407
- &::placeholder {
1408
- color: var(--color-muted-foreground);
1409
- }
1410
- }
1411
- .first\:rounded-t-md {
1412
- &:first-child {
1413
- border-top-left-radius: var(--radius-md);
1414
- border-top-right-radius: var(--radius-md);
1415
- }
1416
- }
1417
- .first\:rounded-l-md {
1418
- &:first-child {
1419
- border-top-left-radius: var(--radius-md);
1420
- border-bottom-left-radius: var(--radius-md);
1421
- }
1422
- }
1423
- .first\:border-t {
1424
- &:first-child {
1425
- border-top-style: var(--tw-border-style);
1426
- border-top-width: 1px;
1427
- }
1428
- }
1429
- .first\:border-l {
1430
- &:first-child {
1431
- border-left-style: var(--tw-border-style);
1432
- border-left-width: 1px;
1433
- }
1434
- }
1435
- .last\:rounded-r-md {
1436
- &:last-child {
1437
- border-top-right-radius: var(--radius-md);
1438
- border-bottom-right-radius: var(--radius-md);
1439
- }
1440
- }
1441
- .last\:border-0 {
1442
- &:last-child {
1443
- border-style: var(--tw-border-style);
1444
- border-width: 0px;
1445
- }
1446
- }
1447
- .last\:border-r {
1448
- &:last-child {
1449
- border-right-style: var(--tw-border-style);
1450
- border-right-width: 1px;
1451
- }
1452
- }
1453
- .last\:border-b-0 {
1454
- &:last-child {
1455
- border-bottom-style: var(--tw-border-style);
1456
- border-bottom-width: 0px;
1457
- }
1458
- }
1459
- .hover\:scale-110 {
1460
- &:hover {
1461
- @media (hover: hover) {
1462
- --tw-scale-x: 110%;
1463
- --tw-scale-y: 110%;
1464
- --tw-scale-z: 110%;
1465
- scale: var(--tw-scale-x) var(--tw-scale-y);
1466
- }
1467
- }
1468
- }
1469
- .hover\:bg-accent {
1470
- &:hover {
1471
- @media (hover: hover) {
1472
- background-color: var(--color-accent);
1473
- }
1474
- }
1475
- }
1476
- .hover\:bg-destructive\/10 {
1477
- &:hover {
1478
- @media (hover: hover) {
1479
- background-color: var(--color-destructive);
1480
- @supports (color: color-mix(in lab, red, red)) {
1481
- background-color: color-mix(in oklab, var(--color-destructive) 10%, transparent);
1482
- }
1483
- }
1484
- }
1485
- }
1486
- .hover\:bg-muted {
1487
- &:hover {
1488
- @media (hover: hover) {
1489
- background-color: var(--color-muted);
1490
- }
1491
- }
1492
- }
1493
- .hover\:text-accent-foreground {
1494
- &:hover {
1495
- @media (hover: hover) {
1496
- color: var(--color-accent-foreground);
1497
- }
1498
- }
1499
- }
1500
- .hover\:text-destructive {
1501
- &:hover {
1502
- @media (hover: hover) {
1503
- color: var(--color-destructive);
1504
- }
1505
- }
1506
- }
1507
- .hover\:text-foreground {
1508
- &:hover {
1509
- @media (hover: hover) {
1510
- color: var(--color-foreground);
1511
- }
1512
- }
1513
- }
1514
- .hover\:text-muted-foreground {
1515
- &:hover {
1516
- @media (hover: hover) {
1517
- color: var(--color-muted-foreground);
1518
- }
1519
- }
1520
- }
1521
- .hover\:text-primary {
1522
- &:hover {
1523
- @media (hover: hover) {
1524
- color: var(--color-primary);
1525
- }
1526
- }
1527
- }
1528
- .hover\:underline {
1529
- &:hover {
1530
- @media (hover: hover) {
1531
- text-decoration-line: underline;
1532
- }
1533
- }
1534
- }
1535
- .hover\:opacity-100 {
1536
- &:hover {
1537
- @media (hover: hover) {
1538
- opacity: 100%;
1539
- }
1540
- }
1541
- }
1542
- .focus\:z-10 {
1543
- &:focus {
1544
- z-index: 10;
1545
- }
1546
- }
1547
- .focus\:opacity-100 {
1548
- &:focus {
1549
- opacity: 100%;
1550
- }
1551
- }
1552
- .focus\:ring-0 {
1553
- &:focus {
1554
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1555
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1556
- }
1557
- }
1558
- .focus\:ring-2 {
1559
- &:focus {
1560
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1561
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1562
- }
1563
- }
1564
- .focus\:ring-ring {
1565
- &:focus {
1566
- --tw-ring-color: var(--color-ring);
1567
- }
1568
- }
1569
- .focus\:ring-offset-2 {
1570
- &:focus {
1571
- --tw-ring-offset-width: 2px;
1572
- --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1573
- }
1574
- }
1575
- .focus\:outline-hidden {
1576
- &:focus {
1577
- --tw-outline-style: none;
1578
- outline-style: none;
1579
- @media (forced-colors: active) {
1580
- outline: 2px solid transparent;
1581
- outline-offset: 2px;
1582
- }
1583
- }
1584
- }
1585
- .focus\:outline-none {
1586
- &:focus {
1587
- --tw-outline-style: none;
1588
- outline-style: none;
1589
- }
1590
- }
1591
- .focus-visible\:border-ring {
1592
- &:focus-visible {
1593
- border-color: var(--color-ring);
1594
- }
1595
- }
1596
- .focus-visible\:bg-accent {
1597
- &:focus-visible {
1598
- background-color: var(--color-accent);
1599
- }
1600
- }
1601
- .focus-visible\:ring-2 {
1602
- &:focus-visible {
1603
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1604
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1605
- }
1606
- }
1607
- .focus-visible\:ring-\[3px\] {
1608
- &:focus-visible {
1609
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1610
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1611
- }
1612
- }
1613
- .focus-visible\:ring-destructive\/20 {
1614
- &:focus-visible {
1615
- --tw-ring-color: var(--color-destructive);
1616
- @supports (color: color-mix(in lab, red, red)) {
1617
- --tw-ring-color: color-mix(in oklab, var(--color-destructive) 20%, transparent);
1618
- }
1619
- }
1620
- }
1621
- .focus-visible\:ring-ring {
1622
- &:focus-visible {
1623
- --tw-ring-color: var(--color-ring);
1624
- }
1625
- }
1626
- .focus-visible\:ring-ring\/50 {
1627
- &:focus-visible {
1628
- --tw-ring-color: var(--color-ring);
1629
- @supports (color: color-mix(in lab, red, red)) {
1630
- --tw-ring-color: color-mix(in oklab, var(--color-ring) 50%, transparent);
1631
- }
1632
- }
1633
- }
1634
- .focus-visible\:ring-offset-2 {
1635
- &:focus-visible {
1636
- --tw-ring-offset-width: 2px;
1637
- --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1638
- }
1639
- }
1640
- .focus-visible\:outline-1 {
1641
- &:focus-visible {
1642
- outline-style: var(--tw-outline-style);
1643
- outline-width: 1px;
1644
- }
1645
- }
1646
- .focus-visible\:outline-ring {
1647
- &:focus-visible {
1648
- outline-color: var(--color-ring);
1649
- }
1650
- }
1651
- .focus-visible\:outline-none {
1652
- &:focus-visible {
1653
- --tw-outline-style: none;
1654
- outline-style: none;
1655
- }
1656
- }
1657
- .active\:cursor-grabbing {
1658
- &:active {
1659
- cursor: grabbing;
1660
- }
1661
- }
1662
- .disabled\:pointer-events-none {
1663
- &:disabled {
1664
- pointer-events: none;
1665
- }
1666
- }
1667
- .disabled\:cursor-not-allowed {
1668
- &:disabled {
1669
- cursor: not-allowed;
1670
- }
1671
- }
1672
- .disabled\:opacity-50 {
1673
- &:disabled {
1674
- opacity: 50%;
1675
- }
1676
- }
1677
- .aria-disabled\:pointer-events-none {
1678
- &[aria-disabled="true"] {
1679
- pointer-events: none;
1680
- }
1681
- }
1682
- .aria-disabled\:opacity-50 {
1683
- &[aria-disabled="true"] {
1684
- opacity: 50%;
1685
- }
1686
- }
1687
- .aria-hidden\:hidden {
1688
- &[aria-hidden="true"] {
1689
- display: none;
1690
- }
1691
- }
1692
- .aria-invalid\:border-destructive {
1693
- &[aria-invalid="true"] {
1694
- border-color: var(--color-destructive);
1695
- }
1696
- }
1697
- .aria-invalid\:ring-destructive\/20 {
1698
- &[aria-invalid="true"] {
1699
- --tw-ring-color: var(--color-destructive);
1700
- @supports (color: color-mix(in lab, red, red)) {
1701
- --tw-ring-color: color-mix(in oklab, var(--color-destructive) 20%, transparent);
1702
- }
1703
- }
1704
- }
1705
- .data-\[state\=closed\]\:-translate-x-full {
1706
- &[data-state="closed"] {
1707
- --tw-translate-x: -100%;
1708
- translate: var(--tw-translate-x) var(--tw-translate-y);
1709
- }
1710
- }
1711
- .data-\[state\=closed\]\:translate-x-full {
1712
- &[data-state="closed"] {
1713
- --tw-translate-x: 100%;
1714
- translate: var(--tw-translate-x) var(--tw-translate-y);
1715
- }
1716
- }
1717
- .data-\[state\=closed\]\:-translate-y-full {
1718
- &[data-state="closed"] {
1719
- --tw-translate-y: -100%;
1720
- translate: var(--tw-translate-x) var(--tw-translate-y);
1721
- }
1722
- }
1723
- .data-\[state\=closed\]\:translate-y-full {
1724
- &[data-state="closed"] {
1725
- --tw-translate-y: 100%;
1726
- translate: var(--tw-translate-x) var(--tw-translate-y);
1727
- }
1728
- }
1729
- .data-\[state\=on\]\:bg-accent {
1730
- &[data-state="on"] {
1731
- background-color: var(--color-accent);
1732
- }
1733
- }
1734
- .data-\[state\=on\]\:text-accent-foreground {
1735
- &[data-state="on"] {
1736
- color: var(--color-accent-foreground);
1737
- }
1738
- }
1739
- .data-\[state\=open\]\:bg-accent {
1740
- &[data-state="open"] {
1741
- background-color: var(--color-accent);
1742
- }
1743
- }
1744
- .data-\[state\=open\]\:text-muted-foreground {
1745
- &[data-state="open"] {
1746
- color: var(--color-muted-foreground);
1747
- }
1748
- }
1749
- .sm\:max-w-lg {
1750
- @media (width >= 40rem) {
1751
- max-width: var(--container-lg);
1752
- }
1753
- }
1754
- .sm\:max-w-sm {
1755
- @media (width >= 40rem) {
1756
- max-width: var(--container-sm);
1757
- }
1758
- }
1759
- .sm\:flex-row {
1760
- @media (width >= 40rem) {
1761
- flex-direction: row;
1762
- }
1763
- }
1764
- .sm\:items-center {
1765
- @media (width >= 40rem) {
1766
- align-items: center;
1767
- }
1768
- }
1769
- .sm\:rounded-lg {
1770
- @media (width >= 40rem) {
1771
- border-radius: var(--radius-lg);
1772
- }
1773
- }
1774
- .sm\:text-left {
1775
- @media (width >= 40rem) {
1776
- text-align: left;
1777
- }
1778
- }
1779
- .lg\:p-12 {
1780
- @media (width >= 64rem) {
1781
- padding: calc(var(--spacing) * 12);
1782
- }
307
+ .px-2\.5 {
308
+ padding-inline: calc(var(--spacing) * 2.5);
1783
309
  }
1784
- .dark\:border-input {
1785
- &:is(.dark *) {
1786
- border-color: var(--color-input);
1787
- }
310
+ .text-xs {
311
+ font-size: var(--text-xs);
312
+ line-height: var(--tw-leading, var(--text-xs--line-height));
1788
313
  }
1789
- .dark\:bg-input\/30 {
1790
- &:is(.dark *) {
1791
- background-color: var(--color-input);
1792
- @supports (color: color-mix(in lab, red, red)) {
1793
- background-color: color-mix(in oklab, var(--color-input) 30%, transparent);
1794
- }
1795
- }
314
+ .text-white {
315
+ color: var(--color-white);
1796
316
  }
1797
- .dark\:bg-transparent {
1798
- &:is(.dark *) {
1799
- background-color: transparent;
1800
- }
317
+ .capitalize {
318
+ text-transform: capitalize;
1801
319
  }
1802
- .dark\:text-foreground {
1803
- &:is(.dark *) {
1804
- color: var(--color-foreground);
1805
- }
320
+ .shadow-sm {
321
+ --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));
322
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1806
323
  }
1807
- .dark\:text-muted-foreground {
1808
- &:is(.dark *) {
1809
- color: var(--color-muted-foreground);
1810
- }
324
+ .ring-2 {
325
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
326
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1811
327
  }
1812
- .dark\:focus-visible\:ring-destructive\/40 {
1813
- &:is(.dark *) {
1814
- &:focus-visible {
1815
- --tw-ring-color: var(--color-destructive);
1816
- @supports (color: color-mix(in lab, red, red)) {
1817
- --tw-ring-color: color-mix(in oklab, var(--color-destructive) 40%, transparent);
1818
- }
1819
- }
1820
- }
328
+ .ring-white {
329
+ --tw-ring-color: var(--color-white);
1821
330
  }
1822
- .dark\:aria-invalid\:ring-destructive\/40 {
1823
- &:is(.dark *) {
1824
- &[aria-invalid="true"] {
1825
- --tw-ring-color: var(--color-destructive);
1826
- @supports (color: color-mix(in lab, red, red)) {
1827
- --tw-ring-color: color-mix(in oklab, var(--color-destructive) 40%, transparent);
1828
- }
1829
- }
1830
- }
331
+ .ring-offset-2 {
332
+ --tw-ring-offset-width: 2px;
333
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1831
334
  }
1832
- .\[\&_svg\]\:pointer-events-none {
1833
- & svg {
1834
- pointer-events: none;
1835
- }
335
+ .drop-shadow-sm {
336
+ --tw-drop-shadow-size: drop-shadow(0 1px 2px var(--tw-drop-shadow-color, rgb(0 0 0 / 0.15)));
337
+ --tw-drop-shadow: drop-shadow(var(--drop-shadow-sm));
338
+ 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,);
1836
339
  }
1837
- .\[\&_svg\]\:size-4 {
1838
- & svg {
1839
- width: calc(var(--spacing) * 4);
1840
- height: calc(var(--spacing) * 4);
1841
- }
340
+ .filter {
341
+ 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,);
1842
342
  }
1843
- .\[\&_svg\]\:shrink-0 {
1844
- & svg {
1845
- flex-shrink: 0;
1846
- }
343
+ .transition-colors {
344
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
345
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
346
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1847
347
  }
1848
- .\[\&_svg\]\:text-muted-foreground {
1849
- & svg {
1850
- color: var(--color-muted-foreground);
1851
- }
348
+ .transition-transform {
349
+ transition-property: transform, translate, scale, rotate;
350
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
351
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1852
352
  }
1853
- .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 {
1854
- & svg:not([class*='size-']) {
1855
- width: calc(var(--spacing) * 4);
1856
- height: calc(var(--spacing) * 4);
1857
- }
353
+ .duration-300 {
354
+ --tw-duration: 300ms;
355
+ transition-duration: 300ms;
1858
356
  }
1859
- .\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground {
1860
- & svg:not([class*='text-']) {
1861
- color: var(--color-muted-foreground);
357
+ .hover\:scale-110 {
358
+ &:hover {
359
+ @media (hover: hover) {
360
+ --tw-scale-x: 110%;
361
+ --tw-scale-y: 110%;
362
+ --tw-scale-z: 110%;
363
+ scale: var(--tw-scale-x) var(--tw-scale-y);
364
+ }
1862
365
  }
1863
366
  }
1864
- .\[\&\>svg\]\:size-4 {
1865
- &>svg {
1866
- width: calc(var(--spacing) * 4);
1867
- height: calc(var(--spacing) * 4);
367
+ .focus\:ring-2 {
368
+ &:focus {
369
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
370
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1868
371
  }
1869
372
  }
1870
- .\[a\&\]\:hover\:bg-accent {
1871
- a& {
1872
- &:hover {
1873
- @media (hover: hover) {
1874
- background-color: var(--color-accent);
1875
- }
1876
- }
373
+ .focus\:ring-ring {
374
+ &:focus {
375
+ --tw-ring-color: var(--color-ring);
1877
376
  }
1878
377
  }
1879
- .\[a\&\]\:hover\:bg-destructive\/90 {
1880
- a& {
1881
- &:hover {
1882
- @media (hover: hover) {
1883
- background-color: var(--color-destructive);
1884
- @supports (color: color-mix(in lab, red, red)) {
1885
- background-color: color-mix(in oklab, var(--color-destructive) 90%, transparent);
1886
- }
1887
- }
1888
- }
378
+ .focus\:outline-none {
379
+ &:focus {
380
+ --tw-outline-style: none;
381
+ outline-style: none;
1889
382
  }
1890
383
  }
1891
384
  }
@@ -2229,6 +722,7 @@
2229
722
  }
2230
723
  @layer components {
2231
724
  .btn, .btn-primary, .btn-secondary, .btn-outline, .btn-ghost, .btn-link, .btn-destructive, .btn-sm, .btn-sm-primary, .btn-sm-secondary, .btn-sm-outline, .btn-sm-ghost, .btn-sm-link, .btn-sm-destructive, .btn-lg, .btn-lg-primary, .btn-lg-secondary, .btn-lg-outline, .btn-lg-ghost, .btn-lg-link, .btn-lg-destructive, .btn-icon, .btn-icon-primary, .btn-icon-secondary, .btn-icon-outline, .btn-icon-ghost, .btn-icon-link, .btn-icon-destructive, .btn-sm-icon, .btn-sm-icon-primary, .btn-sm-icon-secondary, .btn-sm-icon-outline, .btn-sm-icon-ghost, .btn-sm-icon-link, .btn-sm-icon-destructive, .btn-lg-icon, .btn-lg-icon-primary, .btn-lg-icon-secondary, .btn-lg-icon-outline, .btn-lg-icon-ghost, .btn-lg-icon-link, .btn-lg-icon-destructive {
725
+ position: relative;
2232
726
  display: inline-flex;
2233
727
  flex-shrink: 0;
2234
728
  cursor: pointer;
@@ -2992,15 +1486,15 @@
2992
1486
  @keyframes dialog-spring-in {
2993
1487
  0% {
2994
1488
  opacity: 0;
2995
- transform: scale(0.9);
1489
+ transform: translateY(20px);
2996
1490
  }
2997
- 50% {
2998
- opacity: 1;
2999
- transform: scale(1.05);
1491
+ 70% {
1492
+ opacity: 0.9;
1493
+ transform: translateY(-4px);
3000
1494
  }
3001
1495
  100% {
3002
1496
  opacity: 1;
3003
- transform: scale(1);
1497
+ transform: translateY(0);
3004
1498
  }
3005
1499
  }
3006
1500
  @keyframes backdrop-in {
@@ -3037,7 +1531,8 @@
3037
1531
  &[open] {
3038
1532
  visibility: visible;
3039
1533
  opacity: 100%;
3040
- animation: dialog-spring-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
1534
+ animation: dialog-spring-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
1535
+ animation-fill-mode: forwards;
3041
1536
  }
3042
1537
  &::backdrop {
3043
1538
  position: fixed;
@@ -3085,7 +1580,7 @@
3085
1580
  justify-content: flex-end;
3086
1581
  }
3087
1582
  }
3088
- > button.close, > form[method='dialog'] > button.close {
1583
+ > button.close {
3089
1584
  position: absolute;
3090
1585
  top: calc(var(--spacing) * 4);
3091
1586
  right: calc(var(--spacing) * 4);
@@ -3279,8 +1774,8 @@
3279
1774
  font-weight: var(--font-weight-medium);
3280
1775
  }
3281
1776
  [role="alert"] {
3282
- font-size: var(--text-sm);
3283
- line-height: var(--tw-leading, var(--text-sm--line-height));
1777
+ font-size: var(--text-xs);
1778
+ line-height: var(--tw-leading, var(--text-xs--line-height));
3284
1779
  --tw-font-weight: var(--font-weight-normal);
3285
1780
  font-weight: var(--font-weight-normal);
3286
1781
  color: var(--color-destructive);
@@ -3320,8 +1815,8 @@
3320
1815
  }
3321
1816
  }
3322
1817
  .fieldset legend + p, .field > p, .field section > p {
3323
- font-size: var(--text-sm);
3324
- line-height: var(--tw-leading, var(--text-sm--line-height));
1818
+ font-size: var(--text-xs);
1819
+ line-height: var(--tw-leading, var(--text-xs--line-height));
3325
1820
  --tw-leading: var(--leading-normal);
3326
1821
  line-height: var(--leading-normal);
3327
1822
  --tw-font-weight: var(--font-weight-normal);
@@ -3607,7 +2102,7 @@
3607
2102
  }
3608
2103
  .popover {
3609
2104
  position: relative;
3610
- display: inline-flex;
2105
+ display: inline-block;
3611
2106
  [data-popover] {
3612
2107
  padding: calc(var(--spacing) * 4);
3613
2108
  }
@@ -4538,6 +3033,10 @@
4538
3033
  font-size: var(--text-sm);
4539
3034
  line-height: var(--tw-leading, var(--text-sm--line-height));
4540
3035
  thead {
3036
+ background-color: var(--color-muted);
3037
+ @supports (color: color-mix(in lab, red, red)) {
3038
+ background-color: color-mix(in oklab, var(--color-muted) 30%, transparent);
3039
+ }
4541
3040
  & tr {
4542
3041
  border-bottom-style: var(--tw-border-style);
4543
3042
  border-bottom-width: 1px;
@@ -5173,7 +3672,6 @@
5173
3672
  --tw-translate-x: calc(calc(1/2 * 100%) * -1);
5174
3673
  --tw-translate-y: calc(var(--spacing) * 0);
5175
3674
  translate: var(--tw-translate-x) var(--tw-translate-y);
5176
- rotate: 90deg;
5177
3675
  top: -2rem !important;
5178
3676
  }
5179
3677
  .carousel-next {
@@ -5183,7 +3681,6 @@
5183
3681
  --tw-translate-x: calc(calc(1/2 * 100%) * -1);
5184
3682
  --tw-translate-y: calc(var(--spacing) * 0);
5185
3683
  translate: var(--tw-translate-x) var(--tw-translate-y);
5186
- rotate: 90deg;
5187
3684
  bottom: -2rem !important;
5188
3685
  top: auto !important;
5189
3686
  }
@@ -5651,6 +4148,9 @@
5651
4148
  justify-content: center;
5652
4149
  border-radius: calc(infinity * 1px);
5653
4150
  }
4151
+ .effect-shine, .btn:not(.btn-link):not(:disabled):not(.no-shine), .neu-btn:not(:disabled):not(.no-shine), .toggle:not(:disabled):not(.no-shine), [role="tab"]:not([aria-selected="true"]):not(:disabled):not(.no-shine) {
4152
+ position: relative;
4153
+ }
5654
4154
  .effect-shine, .btn:not(.btn-link):not(:disabled):not(.no-shine), .neu-btn:not(:disabled):not(.no-shine), .toggle:not(:disabled):not(.no-shine), [role="tab"]:not([aria-selected="true"]):not(:disabled):not(.no-shine), .carousel-previous:not(:disabled):not(.no-shine), .carousel-next:not(:disabled):not(.no-shine) {
5655
4155
  &::after {
5656
4156
  content: '';
@@ -5772,73 +4272,26 @@
5772
4272
  }
5773
4273
  }
5774
4274
  }
5775
- @property --tw-translate-x {
5776
- syntax: "*";
5777
- inherits: false;
5778
- initial-value: 0;
5779
- }
5780
- @property --tw-translate-y {
5781
- syntax: "*";
5782
- inherits: false;
5783
- initial-value: 0;
5784
- }
5785
- @property --tw-translate-z {
5786
- syntax: "*";
5787
- inherits: false;
5788
- initial-value: 0;
5789
- }
5790
- @property --tw-rotate-x {
5791
- syntax: "*";
5792
- inherits: false;
5793
- }
5794
- @property --tw-rotate-y {
5795
- syntax: "*";
5796
- inherits: false;
5797
- }
5798
- @property --tw-rotate-z {
5799
- syntax: "*";
5800
- inherits: false;
5801
- }
5802
- @property --tw-skew-x {
5803
- syntax: "*";
5804
- inherits: false;
5805
- }
5806
- @property --tw-skew-y {
5807
- syntax: "*";
5808
- inherits: false;
5809
- }
5810
- @property --tw-scroll-snap-strictness {
4275
+ @property --tw-scale-x {
5811
4276
  syntax: "*";
5812
4277
  inherits: false;
5813
- initial-value: proximity;
4278
+ initial-value: 1;
5814
4279
  }
5815
- @property --tw-space-y-reverse {
4280
+ @property --tw-scale-y {
5816
4281
  syntax: "*";
5817
4282
  inherits: false;
5818
- initial-value: 0;
4283
+ initial-value: 1;
5819
4284
  }
5820
- @property --tw-space-x-reverse {
4285
+ @property --tw-scale-z {
5821
4286
  syntax: "*";
5822
4287
  inherits: false;
5823
- initial-value: 0;
4288
+ initial-value: 1;
5824
4289
  }
5825
4290
  @property --tw-border-style {
5826
4291
  syntax: "*";
5827
4292
  inherits: false;
5828
4293
  initial-value: solid;
5829
4294
  }
5830
- @property --tw-leading {
5831
- syntax: "*";
5832
- inherits: false;
5833
- }
5834
- @property --tw-font-weight {
5835
- syntax: "*";
5836
- inherits: false;
5837
- }
5838
- @property --tw-tracking {
5839
- syntax: "*";
5840
- inherits: false;
5841
- }
5842
4295
  @property --tw-shadow {
5843
4296
  syntax: "*";
5844
4297
  inherits: false;
@@ -5904,11 +4357,6 @@
5904
4357
  inherits: false;
5905
4358
  initial-value: 0 0 #0000;
5906
4359
  }
5907
- @property --tw-outline-style {
5908
- syntax: "*";
5909
- inherits: false;
5910
- initial-value: solid;
5911
- }
5912
4360
  @property --tw-blur {
5913
4361
  syntax: "*";
5914
4362
  inherits: false;
@@ -5962,98 +4410,63 @@
5962
4410
  syntax: "*";
5963
4411
  inherits: false;
5964
4412
  }
5965
- @property --tw-backdrop-blur {
5966
- syntax: "*";
5967
- inherits: false;
5968
- }
5969
- @property --tw-backdrop-brightness {
5970
- syntax: "*";
5971
- inherits: false;
5972
- }
5973
- @property --tw-backdrop-contrast {
4413
+ @property --tw-duration {
5974
4414
  syntax: "*";
5975
4415
  inherits: false;
5976
4416
  }
5977
- @property --tw-backdrop-grayscale {
4417
+ @property --tw-translate-x {
5978
4418
  syntax: "*";
5979
4419
  inherits: false;
4420
+ initial-value: 0;
5980
4421
  }
5981
- @property --tw-backdrop-hue-rotate {
4422
+ @property --tw-translate-y {
5982
4423
  syntax: "*";
5983
4424
  inherits: false;
4425
+ initial-value: 0;
5984
4426
  }
5985
- @property --tw-backdrop-invert {
4427
+ @property --tw-translate-z {
5986
4428
  syntax: "*";
5987
4429
  inherits: false;
4430
+ initial-value: 0;
5988
4431
  }
5989
- @property --tw-backdrop-opacity {
4432
+ @property --tw-font-weight {
5990
4433
  syntax: "*";
5991
4434
  inherits: false;
5992
4435
  }
5993
- @property --tw-backdrop-saturate {
4436
+ @property --tw-tracking {
5994
4437
  syntax: "*";
5995
4438
  inherits: false;
5996
4439
  }
5997
- @property --tw-backdrop-sepia {
4440
+ @property --tw-leading {
5998
4441
  syntax: "*";
5999
4442
  inherits: false;
6000
4443
  }
6001
- @property --tw-duration {
4444
+ @property --tw-content {
6002
4445
  syntax: "*";
6003
4446
  inherits: false;
4447
+ initial-value: "";
6004
4448
  }
6005
4449
  @property --tw-ease {
6006
4450
  syntax: "*";
6007
4451
  inherits: false;
6008
4452
  }
6009
- @property --tw-scale-x {
6010
- syntax: "*";
6011
- inherits: false;
6012
- initial-value: 1;
6013
- }
6014
- @property --tw-scale-y {
6015
- syntax: "*";
6016
- inherits: false;
6017
- initial-value: 1;
6018
- }
6019
- @property --tw-scale-z {
4453
+ @property --tw-outline-style {
6020
4454
  syntax: "*";
6021
4455
  inherits: false;
6022
- initial-value: 1;
4456
+ initial-value: solid;
6023
4457
  }
6024
- @property --tw-content {
4458
+ @property --tw-scroll-snap-strictness {
6025
4459
  syntax: "*";
6026
4460
  inherits: false;
6027
- initial-value: "";
6028
- }
6029
- @keyframes spin {
6030
- to {
6031
- transform: rotate(360deg);
6032
- }
6033
- }
6034
- @keyframes pulse {
6035
- 50% {
6036
- opacity: 0.5;
6037
- }
4461
+ initial-value: proximity;
6038
4462
  }
6039
4463
  @layer properties {
6040
4464
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
6041
4465
  *, ::before, ::after, ::backdrop {
6042
- --tw-translate-x: 0;
6043
- --tw-translate-y: 0;
6044
- --tw-translate-z: 0;
6045
- --tw-rotate-x: initial;
6046
- --tw-rotate-y: initial;
6047
- --tw-rotate-z: initial;
6048
- --tw-skew-x: initial;
6049
- --tw-skew-y: initial;
6050
- --tw-scroll-snap-strictness: proximity;
6051
- --tw-space-y-reverse: 0;
6052
- --tw-space-x-reverse: 0;
4466
+ --tw-scale-x: 1;
4467
+ --tw-scale-y: 1;
4468
+ --tw-scale-z: 1;
6053
4469
  --tw-border-style: solid;
6054
- --tw-leading: initial;
6055
- --tw-font-weight: initial;
6056
- --tw-tracking: initial;
6057
4470
  --tw-shadow: 0 0 #0000;
6058
4471
  --tw-shadow-color: initial;
6059
4472
  --tw-shadow-alpha: 100%;
@@ -6068,7 +4481,6 @@
6068
4481
  --tw-ring-offset-width: 0px;
6069
4482
  --tw-ring-offset-color: #fff;
6070
4483
  --tw-ring-offset-shadow: 0 0 #0000;
6071
- --tw-outline-style: solid;
6072
4484
  --tw-blur: initial;
6073
4485
  --tw-brightness: initial;
6074
4486
  --tw-contrast: initial;
@@ -6082,21 +4494,17 @@
6082
4494
  --tw-drop-shadow-color: initial;
6083
4495
  --tw-drop-shadow-alpha: 100%;
6084
4496
  --tw-drop-shadow-size: initial;
6085
- --tw-backdrop-blur: initial;
6086
- --tw-backdrop-brightness: initial;
6087
- --tw-backdrop-contrast: initial;
6088
- --tw-backdrop-grayscale: initial;
6089
- --tw-backdrop-hue-rotate: initial;
6090
- --tw-backdrop-invert: initial;
6091
- --tw-backdrop-opacity: initial;
6092
- --tw-backdrop-saturate: initial;
6093
- --tw-backdrop-sepia: initial;
6094
4497
  --tw-duration: initial;
6095
- --tw-ease: initial;
6096
- --tw-scale-x: 1;
6097
- --tw-scale-y: 1;
6098
- --tw-scale-z: 1;
4498
+ --tw-translate-x: 0;
4499
+ --tw-translate-y: 0;
4500
+ --tw-translate-z: 0;
4501
+ --tw-font-weight: initial;
4502
+ --tw-tracking: initial;
4503
+ --tw-leading: initial;
6099
4504
  --tw-content: "";
4505
+ --tw-ease: initial;
4506
+ --tw-outline-style: solid;
4507
+ --tw-scroll-snap-strictness: proximity;
6100
4508
  }
6101
4509
  }
6102
4510
  }