@algorithm-shift/design-system 1.2.3 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -21,16 +21,29 @@
21
21
  "Liberation Mono",
22
22
  "Courier New",
23
23
  monospace;
24
- --color-red-200: oklch(88.5% 0.062 18.334);
25
- --color-red-400: oklch(70.4% 0.191 22.216);
26
24
  --color-red-500: oklch(63.7% 0.237 25.331);
27
- --color-red-600: oklch(57.7% 0.245 27.325);
28
- --color-red-700: oklch(50.5% 0.213 27.518);
25
+ --color-blue-500: oklch(62.3% 0.214 259.815);
26
+ --color-gray-50: oklch(98.5% 0.002 247.839);
27
+ --color-gray-100: oklch(96.7% 0.003 264.542);
28
+ --color-gray-200: oklch(92.8% 0.006 264.531);
29
+ --color-gray-300: oklch(87.2% 0.01 258.338);
30
+ --color-gray-400: oklch(70.7% 0.022 261.325);
31
+ --color-gray-500: oklch(55.1% 0.027 264.364);
32
+ --color-gray-600: oklch(44.6% 0.03 256.802);
33
+ --color-gray-700: oklch(37.3% 0.034 259.733);
34
+ --color-gray-800: oklch(27.8% 0.033 256.848);
29
35
  --color-white: #fff;
30
36
  --spacing: 0.25rem;
37
+ --text-xs: 0.75rem;
38
+ --text-xs--line-height: calc(1 / 0.75);
31
39
  --text-sm: 0.875rem;
32
40
  --text-sm--line-height: calc(1.25 / 0.875);
41
+ --text-base: 1rem;
42
+ --text-base--line-height: calc(1.5 / 1);
43
+ --font-weight-normal: 400;
33
44
  --font-weight-medium: 500;
45
+ --font-weight-semibold: 600;
46
+ --tracking-widest: 0.1em;
34
47
  --default-transition-duration: 150ms;
35
48
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
36
49
  --default-font-family: var(--font-sans);
@@ -227,25 +240,165 @@
227
240
  }
228
241
  }
229
242
  @layer utilities {
243
+ .pointer-events-auto {
244
+ pointer-events: auto;
245
+ }
246
+ .pointer-events-none {
247
+ pointer-events: none;
248
+ }
249
+ .invisible {
250
+ visibility: hidden;
251
+ }
252
+ .visible {
253
+ visibility: visible;
254
+ }
255
+ .absolute {
256
+ position: absolute;
257
+ }
258
+ .relative {
259
+ position: relative;
260
+ }
230
261
  .static {
231
262
  position: static;
232
263
  }
264
+ .inset-0 {
265
+ inset: calc(var(--spacing) * 0);
266
+ }
267
+ .inset-x-0 {
268
+ inset-inline: calc(var(--spacing) * 0);
269
+ }
270
+ .top-0 {
271
+ top: calc(var(--spacing) * 0);
272
+ }
273
+ .top-1\/2 {
274
+ top: calc(1/2 * 100%);
275
+ }
276
+ .right-0 {
277
+ right: calc(var(--spacing) * 0);
278
+ }
279
+ .right-2 {
280
+ right: calc(var(--spacing) * 2);
281
+ }
282
+ .left-1\/2 {
283
+ left: calc(1/2 * 100%);
284
+ }
285
+ .left-2 {
286
+ left: calc(var(--spacing) * 2);
287
+ }
288
+ .left-3 {
289
+ left: calc(var(--spacing) * 3);
290
+ }
291
+ .z-50 {
292
+ z-index: 50;
293
+ }
294
+ .col-span-12 {
295
+ grid-column: span 12 / span 12;
296
+ }
297
+ .col-start-1 {
298
+ grid-column-start: 1;
299
+ }
300
+ .-mx-1 {
301
+ margin-inline: calc(var(--spacing) * -1);
302
+ }
303
+ .my-1 {
304
+ margin-block: calc(var(--spacing) * 1);
305
+ }
306
+ .mt-1 {
307
+ margin-top: calc(var(--spacing) * 1);
308
+ }
309
+ .mt-2 {
310
+ margin-top: calc(var(--spacing) * 2);
311
+ }
312
+ .mt-4 {
313
+ margin-top: calc(var(--spacing) * 4);
314
+ }
315
+ .mt-\[20px\] {
316
+ margin-top: 20px;
317
+ }
318
+ .mb-0 {
319
+ margin-bottom: calc(var(--spacing) * 0);
320
+ }
321
+ .mb-2 {
322
+ margin-bottom: calc(var(--spacing) * 2);
323
+ }
324
+ .mb-\[20px\] {
325
+ margin-bottom: 20px;
326
+ }
327
+ .ml-auto {
328
+ margin-left: auto;
329
+ }
330
+ .block {
331
+ display: block;
332
+ }
233
333
  .contents {
234
334
  display: contents;
235
335
  }
236
336
  .flex {
237
337
  display: flex;
238
338
  }
339
+ .grid {
340
+ display: grid;
341
+ }
342
+ .hidden {
343
+ display: none;
344
+ }
239
345
  .inline-block {
240
346
  display: inline-block;
241
347
  }
242
348
  .inline-flex {
243
349
  display: inline-flex;
244
350
  }
351
+ .table {
352
+ display: table;
353
+ }
354
+ .table-caption {
355
+ display: table-caption;
356
+ }
357
+ .table-cell {
358
+ display: table-cell;
359
+ }
360
+ .table-row {
361
+ display: table-row;
362
+ }
363
+ .field-sizing-content {
364
+ field-sizing: content;
365
+ }
366
+ .aspect-square {
367
+ aspect-ratio: 1 / 1;
368
+ }
369
+ .size-\(--cell-size\) {
370
+ width: var(--cell-size);
371
+ height: var(--cell-size);
372
+ }
373
+ .size-2 {
374
+ width: calc(var(--spacing) * 2);
375
+ height: calc(var(--spacing) * 2);
376
+ }
377
+ .size-3\.5 {
378
+ width: calc(var(--spacing) * 3.5);
379
+ height: calc(var(--spacing) * 3.5);
380
+ }
381
+ .size-4 {
382
+ width: calc(var(--spacing) * 4);
383
+ height: calc(var(--spacing) * 4);
384
+ }
245
385
  .size-9 {
246
386
  width: calc(var(--spacing) * 9);
247
387
  height: calc(var(--spacing) * 9);
248
388
  }
389
+ .size-auto {
390
+ width: auto;
391
+ height: auto;
392
+ }
393
+ .h-\(--cell-size\) {
394
+ height: var(--cell-size);
395
+ }
396
+ .h-4 {
397
+ height: calc(var(--spacing) * 4);
398
+ }
399
+ .h-6 {
400
+ height: calc(var(--spacing) * 6);
401
+ }
249
402
  .h-8 {
250
403
  height: calc(var(--spacing) * 8);
251
404
  }
@@ -255,49 +408,375 @@
255
408
  .h-10 {
256
409
  height: calc(var(--spacing) * 10);
257
410
  }
411
+ .h-12 {
412
+ height: calc(var(--spacing) * 12);
413
+ }
414
+ .h-24 {
415
+ height: calc(var(--spacing) * 24);
416
+ }
417
+ .h-50 {
418
+ height: calc(var(--spacing) * 50);
419
+ }
420
+ .h-\[1\.15rem\] {
421
+ height: 1.15rem;
422
+ }
423
+ .h-\[10px\] {
424
+ height: 10px;
425
+ }
426
+ .h-\[20px\] {
427
+ height: 20px;
428
+ }
429
+ .h-\[34px\] {
430
+ height: 34px;
431
+ }
432
+ .h-\[200px\] {
433
+ height: 200px;
434
+ }
435
+ .h-\[var\(--radix-select-trigger-height\)\] {
436
+ height: var(--radix-select-trigger-height);
437
+ }
438
+ .h-full {
439
+ height: 100%;
440
+ }
441
+ .h-px {
442
+ height: 1px;
443
+ }
444
+ .max-h-\(--radix-dropdown-menu-content-available-height\) {
445
+ max-height: var(--radix-dropdown-menu-content-available-height);
446
+ }
447
+ .max-h-\(--radix-select-content-available-height\) {
448
+ max-height: var(--radix-select-content-available-height);
449
+ }
450
+ .min-h-16 {
451
+ min-height: calc(var(--spacing) * 16);
452
+ }
453
+ .w-\(--cell-size\) {
454
+ width: var(--cell-size);
455
+ }
456
+ .w-3 {
457
+ width: calc(var(--spacing) * 3);
458
+ }
459
+ .w-4 {
460
+ width: calc(var(--spacing) * 4);
461
+ }
462
+ .w-6 {
463
+ width: calc(var(--spacing) * 6);
464
+ }
465
+ .w-8 {
466
+ width: calc(var(--spacing) * 8);
467
+ }
468
+ .w-10 {
469
+ width: calc(var(--spacing) * 10);
470
+ }
471
+ .w-30 {
472
+ width: calc(var(--spacing) * 30);
473
+ }
474
+ .w-72 {
475
+ width: calc(var(--spacing) * 72);
476
+ }
477
+ .w-\[10px\] {
478
+ width: 10px;
479
+ }
480
+ .w-\[20px\] {
481
+ width: 20px;
482
+ }
483
+ .w-\[34px\] {
484
+ width: 34px;
485
+ }
486
+ .w-\[200px\] {
487
+ width: 200px;
488
+ }
489
+ .w-\[300px\] {
490
+ width: 300px;
491
+ }
492
+ .w-auto {
493
+ width: auto;
494
+ }
495
+ .w-fit {
496
+ width: fit-content;
497
+ }
498
+ .w-full {
499
+ width: 100%;
500
+ }
501
+ .min-w-\(--cell-size\) {
502
+ min-width: var(--cell-size);
503
+ }
504
+ .min-w-0 {
505
+ min-width: calc(var(--spacing) * 0);
506
+ }
507
+ .min-w-\[8rem\] {
508
+ min-width: 8rem;
509
+ }
510
+ .min-w-\[100px\] {
511
+ min-width: 100px;
512
+ }
513
+ .min-w-\[120px\] {
514
+ min-width: 120px;
515
+ }
516
+ .min-w-\[160px\] {
517
+ min-width: 160px;
518
+ }
519
+ .min-w-\[var\(--radix-select-trigger-width\)\] {
520
+ min-width: var(--radix-select-trigger-width);
521
+ }
522
+ .flex-1 {
523
+ flex: 1;
524
+ }
525
+ .flex-shrink-0 {
526
+ flex-shrink: 0;
527
+ }
258
528
  .shrink-0 {
259
529
  flex-shrink: 0;
260
530
  }
531
+ .border-collapse {
532
+ border-collapse: collapse;
533
+ }
534
+ .origin-\(--radix-dropdown-menu-content-transform-origin\) {
535
+ transform-origin: var(--radix-dropdown-menu-content-transform-origin);
536
+ }
537
+ .origin-\(--radix-popover-content-transform-origin\) {
538
+ transform-origin: var(--radix-popover-content-transform-origin);
539
+ }
540
+ .origin-\(--radix-select-content-transform-origin\) {
541
+ transform-origin: var(--radix-select-content-transform-origin);
542
+ }
543
+ .-translate-x-1\/2 {
544
+ --tw-translate-x: calc(calc(1/2 * 100%) * -1);
545
+ translate: var(--tw-translate-x) var(--tw-translate-y);
546
+ }
547
+ .translate-x-1\/2 {
548
+ --tw-translate-x: calc(1/2 * 100%);
549
+ translate: var(--tw-translate-x) var(--tw-translate-y);
550
+ }
551
+ .-translate-y-1\/2 {
552
+ --tw-translate-y: calc(calc(1/2 * 100%) * -1);
553
+ translate: var(--tw-translate-x) var(--tw-translate-y);
554
+ }
261
555
  .transform {
262
556
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
263
557
  }
558
+ .cursor-default {
559
+ cursor: default;
560
+ }
561
+ .cursor-pointer {
562
+ cursor: pointer;
563
+ }
564
+ .scroll-my-1 {
565
+ scroll-margin-block: calc(var(--spacing) * 1);
566
+ }
567
+ .grid-cols-12 {
568
+ grid-template-columns: repeat(12, minmax(0, 1fr));
569
+ }
570
+ .flex-col {
571
+ flex-direction: column;
572
+ }
264
573
  .items-center {
265
574
  align-items: center;
266
575
  }
576
+ .justify-between {
577
+ justify-content: space-between;
578
+ }
267
579
  .justify-center {
268
580
  justify-content: center;
269
581
  }
582
+ .justify-start {
583
+ justify-content: flex-start;
584
+ }
585
+ .gap-1 {
586
+ gap: calc(var(--spacing) * 1);
587
+ }
270
588
  .gap-1\.5 {
271
589
  gap: calc(var(--spacing) * 1.5);
272
590
  }
273
591
  .gap-2 {
274
592
  gap: calc(var(--spacing) * 2);
275
593
  }
594
+ .gap-3 {
595
+ gap: calc(var(--spacing) * 3);
596
+ }
597
+ .gap-4 {
598
+ gap: calc(var(--spacing) * 4);
599
+ }
600
+ .space-x-2 {
601
+ :where(& > :not(:last-child)) {
602
+ --tw-space-x-reverse: 0;
603
+ margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
604
+ margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
605
+ }
606
+ }
607
+ .overflow-hidden {
608
+ overflow: hidden;
609
+ }
610
+ .overflow-x-auto {
611
+ overflow-x: auto;
612
+ }
613
+ .overflow-x-hidden {
614
+ overflow-x: hidden;
615
+ }
616
+ .overflow-y-auto {
617
+ overflow-y: auto;
618
+ }
276
619
  .rounded {
277
620
  border-radius: 0.25rem;
278
621
  }
622
+ .rounded-\[4px\] {
623
+ border-radius: 4px;
624
+ }
625
+ .rounded-full {
626
+ border-radius: calc(infinity * 1px);
627
+ }
628
+ .rounded-lg {
629
+ border-radius: var(--radius);
630
+ }
279
631
  .rounded-md {
280
632
  border-radius: calc(var(--radius) - 2px);
281
633
  }
634
+ .rounded-none {
635
+ border-radius: 0;
636
+ }
637
+ .rounded-sm {
638
+ border-radius: calc(var(--radius) - 4px);
639
+ }
640
+ .rounded-l-md {
641
+ border-top-left-radius: calc(var(--radius) - 2px);
642
+ border-bottom-left-radius: calc(var(--radius) - 2px);
643
+ }
644
+ .rounded-r-md {
645
+ border-top-right-radius: calc(var(--radius) - 2px);
646
+ border-bottom-right-radius: calc(var(--radius) - 2px);
647
+ }
282
648
  .border {
283
649
  border-style: var(--tw-border-style);
284
650
  border-width: 1px;
285
651
  }
652
+ .border-1 {
653
+ border-style: var(--tw-border-style);
654
+ border-width: 1px;
655
+ }
656
+ .border-2 {
657
+ border-style: var(--tw-border-style);
658
+ border-width: 2px;
659
+ }
660
+ .border-\[1px\] {
661
+ border-style: var(--tw-border-style);
662
+ border-width: 1px;
663
+ }
664
+ .border-t {
665
+ border-top-style: var(--tw-border-style);
666
+ border-top-width: 1px;
667
+ }
668
+ .border-b {
669
+ border-bottom-style: var(--tw-border-style);
670
+ border-bottom-width: 1px;
671
+ }
672
+ .border-dashed {
673
+ --tw-border-style: dashed;
674
+ border-style: dashed;
675
+ }
676
+ .border-none {
677
+ --tw-border-style: none;
678
+ border-style: none;
679
+ }
680
+ .border-solid {
681
+ --tw-border-style: solid;
682
+ border-style: solid;
683
+ }
684
+ .border-\[\#E0E0E0\] {
685
+ border-color: #E0E0E0;
686
+ }
687
+ .border-gray-200 {
688
+ border-color: var(--color-gray-200);
689
+ }
690
+ .border-gray-400 {
691
+ border-color: var(--color-gray-400);
692
+ }
693
+ .border-input {
694
+ border-color: var(--input);
695
+ }
696
+ .border-transparent {
697
+ border-color: transparent;
698
+ }
699
+ .bg-\[\#12715b\] {
700
+ background-color: #12715b;
701
+ }
702
+ .bg-\[\#034486\] {
703
+ background-color: #034486;
704
+ }
705
+ .bg-\[\#E9E9E9\] {
706
+ background-color: #E9E9E9;
707
+ }
708
+ .bg-\[\#FF4A4A\] {
709
+ background-color: #FF4A4A;
710
+ }
711
+ .bg-accent {
712
+ background-color: var(--accent);
713
+ }
286
714
  .bg-background {
287
715
  background-color: var(--background);
288
716
  }
717
+ .bg-border {
718
+ background-color: var(--border);
719
+ }
289
720
  .bg-destructive {
290
721
  background-color: var(--destructive);
291
722
  }
723
+ .bg-gray-50 {
724
+ background-color: var(--color-gray-50);
725
+ }
726
+ .bg-gray-100 {
727
+ background-color: var(--color-gray-100);
728
+ }
729
+ .bg-gray-300 {
730
+ background-color: var(--color-gray-300);
731
+ }
732
+ .bg-popover {
733
+ background-color: var(--popover);
734
+ }
292
735
  .bg-primary {
293
736
  background-color: var(--primary);
294
737
  }
295
- .bg-red-500 {
296
- background-color: var(--color-red-500);
297
- }
298
738
  .bg-secondary {
299
739
  background-color: var(--secondary);
300
740
  }
741
+ .bg-transparent {
742
+ background-color: transparent;
743
+ }
744
+ .bg-white {
745
+ background-color: var(--color-white);
746
+ }
747
+ .bg-white\/10 {
748
+ background-color: color-mix(in srgb, #fff 10%, transparent);
749
+ @supports (color: color-mix(in lab, red, red)) {
750
+ background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
751
+ }
752
+ }
753
+ .fill-current {
754
+ fill: currentcolor;
755
+ }
756
+ .fill-primary {
757
+ fill: var(--primary);
758
+ }
759
+ .p-0 {
760
+ padding: calc(var(--spacing) * 0);
761
+ }
762
+ .p-1 {
763
+ padding: calc(var(--spacing) * 1);
764
+ }
765
+ .p-2 {
766
+ padding: calc(var(--spacing) * 2);
767
+ }
768
+ .p-3 {
769
+ padding: calc(var(--spacing) * 3);
770
+ }
771
+ .p-4 {
772
+ padding: calc(var(--spacing) * 4);
773
+ }
774
+ .px-\(--cell-size\) {
775
+ padding-inline: var(--cell-size);
776
+ }
777
+ .px-2 {
778
+ padding-inline: calc(var(--spacing) * 2);
779
+ }
301
780
  .px-3 {
302
781
  padding-inline: calc(var(--spacing) * 3);
303
782
  }
@@ -307,198 +786,1099 @@
307
786
  .px-6 {
308
787
  padding-inline: calc(var(--spacing) * 6);
309
788
  }
789
+ .px-10 {
790
+ padding-inline: calc(var(--spacing) * 10);
791
+ }
792
+ .py-1 {
793
+ padding-block: calc(var(--spacing) * 1);
794
+ }
795
+ .py-1\.5 {
796
+ padding-block: calc(var(--spacing) * 1.5);
797
+ }
310
798
  .py-2 {
311
799
  padding-block: calc(var(--spacing) * 2);
312
800
  }
801
+ .py-3 {
802
+ padding-block: calc(var(--spacing) * 3);
803
+ }
804
+ .py-4 {
805
+ padding-block: calc(var(--spacing) * 4);
806
+ }
807
+ .pt-\[10px\] {
808
+ padding-top: 10px;
809
+ }
810
+ .pr-1 {
811
+ padding-right: calc(var(--spacing) * 1);
812
+ }
813
+ .pr-2 {
814
+ padding-right: calc(var(--spacing) * 2);
815
+ }
816
+ .pr-8 {
817
+ padding-right: calc(var(--spacing) * 8);
818
+ }
819
+ .pr-\[10px\] {
820
+ padding-right: 10px;
821
+ }
822
+ .pb-\[10px\] {
823
+ padding-bottom: 10px;
824
+ }
825
+ .pl-2 {
826
+ padding-left: calc(var(--spacing) * 2);
827
+ }
828
+ .pl-8 {
829
+ padding-left: calc(var(--spacing) * 8);
830
+ }
831
+ .pl-\[10px\] {
832
+ padding-left: 10px;
833
+ }
834
+ .text-center {
835
+ text-align: center;
836
+ }
837
+ .text-left {
838
+ text-align: left;
839
+ }
840
+ .align-middle {
841
+ vertical-align: middle;
842
+ }
843
+ .text-base {
844
+ font-size: var(--text-base);
845
+ line-height: var(--tw-leading, var(--text-base--line-height));
846
+ }
313
847
  .text-sm {
314
848
  font-size: var(--text-sm);
315
849
  line-height: var(--tw-leading, var(--text-sm--line-height));
316
850
  }
851
+ .text-xs {
852
+ font-size: var(--text-xs);
853
+ line-height: var(--tw-leading, var(--text-xs--line-height));
854
+ }
855
+ .text-\[0\.8rem\] {
856
+ font-size: 0.8rem;
857
+ }
858
+ .text-\[10px\] {
859
+ font-size: 10px;
860
+ }
861
+ .text-\[11px\] {
862
+ font-size: 11px;
863
+ }
864
+ .text-\[12px\] {
865
+ font-size: 12px;
866
+ }
867
+ .text-\[13px\] {
868
+ font-size: 13px;
869
+ }
870
+ .leading-\[20px\] {
871
+ --tw-leading: 20px;
872
+ line-height: 20px;
873
+ }
874
+ .leading-none {
875
+ --tw-leading: 1;
876
+ line-height: 1;
877
+ }
878
+ .font-\[400\] {
879
+ --tw-font-weight: 400;
880
+ font-weight: 400;
881
+ }
882
+ .font-\[500\] {
883
+ --tw-font-weight: 500;
884
+ font-weight: 500;
885
+ }
317
886
  .font-medium {
318
887
  --tw-font-weight: var(--font-weight-medium);
319
888
  font-weight: var(--font-weight-medium);
320
889
  }
890
+ .font-normal {
891
+ --tw-font-weight: var(--font-weight-normal);
892
+ font-weight: var(--font-weight-normal);
893
+ }
894
+ .font-semibold {
895
+ --tw-font-weight: var(--font-weight-semibold);
896
+ font-weight: var(--font-weight-semibold);
897
+ }
898
+ .tracking-widest {
899
+ --tw-tracking: var(--tracking-widest);
900
+ letter-spacing: var(--tracking-widest);
901
+ }
321
902
  .whitespace-nowrap {
322
903
  white-space: nowrap;
323
904
  }
905
+ .text-\[\#000000\] {
906
+ color: #000000;
907
+ }
908
+ .text-\[\#383838\] {
909
+ color: #383838;
910
+ }
911
+ .text-\[\#BDBDBD\] {
912
+ color: #BDBDBD;
913
+ }
914
+ .text-\[\#E9E9E9\] {
915
+ color: #E9E9E9;
916
+ }
917
+ .text-\[\#fff\] {
918
+ color: #fff;
919
+ }
920
+ .text-accent-foreground {
921
+ color: var(--accent-foreground);
922
+ }
923
+ .text-current {
924
+ color: currentcolor;
925
+ }
926
+ .text-gray-500 {
927
+ color: var(--color-gray-500);
928
+ }
929
+ .text-gray-600 {
930
+ color: var(--color-gray-600);
931
+ }
932
+ .text-gray-700 {
933
+ color: var(--color-gray-700);
934
+ }
935
+ .text-gray-800 {
936
+ color: var(--color-gray-800);
937
+ }
938
+ .text-muted-foreground {
939
+ color: var(--muted-foreground);
940
+ }
941
+ .text-popover-foreground {
942
+ color: var(--popover-foreground);
943
+ }
324
944
  .text-primary {
325
945
  color: var(--primary);
326
946
  }
327
947
  .text-primary-foreground {
328
948
  color: var(--primary-foreground);
329
949
  }
330
- .text-secondary-foreground {
331
- color: var(--secondary-foreground);
950
+ .text-red-500 {
951
+ color: var(--color-red-500);
952
+ }
953
+ .text-secondary-foreground {
954
+ color: var(--secondary-foreground);
955
+ }
956
+ .text-white {
957
+ color: var(--color-white);
958
+ }
959
+ .italic {
960
+ font-style: italic;
961
+ }
962
+ .underline {
963
+ text-decoration-line: underline;
964
+ }
965
+ .underline-offset-4 {
966
+ text-underline-offset: 4px;
967
+ }
968
+ .opacity-0 {
969
+ opacity: 0%;
970
+ }
971
+ .opacity-50 {
972
+ opacity: 50%;
973
+ }
974
+ .opacity-80 {
975
+ opacity: 80%;
976
+ }
977
+ .shadow-lg {
978
+ --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));
979
+ box-shadow:
980
+ var(--tw-inset-shadow),
981
+ var(--tw-inset-ring-shadow),
982
+ var(--tw-ring-offset-shadow),
983
+ var(--tw-ring-shadow),
984
+ var(--tw-shadow);
985
+ }
986
+ .shadow-md {
987
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
988
+ box-shadow:
989
+ var(--tw-inset-shadow),
990
+ var(--tw-inset-ring-shadow),
991
+ var(--tw-ring-offset-shadow),
992
+ var(--tw-ring-shadow),
993
+ var(--tw-shadow);
994
+ }
995
+ .shadow-sm {
996
+ --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));
997
+ box-shadow:
998
+ var(--tw-inset-shadow),
999
+ var(--tw-inset-ring-shadow),
1000
+ var(--tw-ring-offset-shadow),
1001
+ var(--tw-ring-shadow),
1002
+ var(--tw-shadow);
1003
+ }
1004
+ .shadow-xs {
1005
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
1006
+ box-shadow:
1007
+ var(--tw-inset-shadow),
1008
+ var(--tw-inset-ring-shadow),
1009
+ var(--tw-ring-offset-shadow),
1010
+ var(--tw-ring-shadow),
1011
+ var(--tw-shadow);
1012
+ }
1013
+ .ring-0 {
1014
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1015
+ box-shadow:
1016
+ var(--tw-inset-shadow),
1017
+ var(--tw-inset-ring-shadow),
1018
+ var(--tw-ring-offset-shadow),
1019
+ var(--tw-ring-shadow),
1020
+ var(--tw-shadow);
1021
+ }
1022
+ .outline-hidden {
1023
+ --tw-outline-style: none;
1024
+ outline-style: none;
1025
+ @media (forced-colors: active) {
1026
+ outline: 2px solid transparent;
1027
+ outline-offset: 2px;
1028
+ }
1029
+ }
1030
+ .outline {
1031
+ outline-style: var(--tw-outline-style);
1032
+ outline-width: 1px;
1033
+ }
1034
+ .transition {
1035
+ transition-property:
1036
+ color,
1037
+ background-color,
1038
+ border-color,
1039
+ outline-color,
1040
+ text-decoration-color,
1041
+ fill,
1042
+ stroke,
1043
+ --tw-gradient-from,
1044
+ --tw-gradient-via,
1045
+ --tw-gradient-to,
1046
+ opacity,
1047
+ box-shadow,
1048
+ transform,
1049
+ translate,
1050
+ scale,
1051
+ rotate,
1052
+ filter,
1053
+ -webkit-backdrop-filter,
1054
+ backdrop-filter,
1055
+ display,
1056
+ visibility,
1057
+ content-visibility,
1058
+ overlay,
1059
+ pointer-events;
1060
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1061
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1062
+ }
1063
+ .transition-\[color\,box-shadow\] {
1064
+ transition-property: color, box-shadow;
1065
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1066
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1067
+ }
1068
+ .transition-all {
1069
+ transition-property: all;
1070
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1071
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1072
+ }
1073
+ .transition-colors {
1074
+ transition-property:
1075
+ color,
1076
+ background-color,
1077
+ border-color,
1078
+ outline-color,
1079
+ text-decoration-color,
1080
+ fill,
1081
+ stroke,
1082
+ --tw-gradient-from,
1083
+ --tw-gradient-via,
1084
+ --tw-gradient-to;
1085
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1086
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1087
+ }
1088
+ .transition-opacity {
1089
+ transition-property: opacity;
1090
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1091
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1092
+ }
1093
+ .transition-shadow {
1094
+ transition-property: box-shadow;
1095
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1096
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1097
+ }
1098
+ .transition-transform {
1099
+ transition-property:
1100
+ transform,
1101
+ translate,
1102
+ scale,
1103
+ rotate;
1104
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1105
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1106
+ }
1107
+ .transition-none {
1108
+ transition-property: none;
1109
+ }
1110
+ .duration-200 {
1111
+ --tw-duration: 200ms;
1112
+ transition-duration: 200ms;
1113
+ }
1114
+ .duration-300 {
1115
+ --tw-duration: 300ms;
1116
+ transition-duration: 300ms;
1117
+ }
1118
+ .outline-none {
1119
+ --tw-outline-style: none;
1120
+ outline-style: none;
1121
+ }
1122
+ .select-none {
1123
+ -webkit-user-select: none;
1124
+ user-select: none;
1125
+ }
1126
+ .\[--cell-size\:--spacing\(8\)\] {
1127
+ --cell-size: calc(var(--spacing) * 8);
1128
+ }
1129
+ .group-hover\:opacity-100 {
1130
+ &:is(:where(.group):hover *) {
1131
+ @media (hover: hover) {
1132
+ opacity: 100%;
1133
+ }
1134
+ }
1135
+ }
1136
+ .group-data-\[disabled\=true\]\:pointer-events-none {
1137
+ &:is(:where(.group)[data-disabled=true] *) {
1138
+ pointer-events: none;
1139
+ }
1140
+ }
1141
+ .group-data-\[disabled\=true\]\:opacity-50 {
1142
+ &:is(:where(.group)[data-disabled=true] *) {
1143
+ opacity: 50%;
1144
+ }
1145
+ }
1146
+ .group-data-\[focused\=true\]\/day\:relative {
1147
+ &:is(:where(.group\/day)[data-focused=true] *) {
1148
+ position: relative;
1149
+ }
1150
+ }
1151
+ .group-data-\[focused\=true\]\/day\:z-10 {
1152
+ &:is(:where(.group\/day)[data-focused=true] *) {
1153
+ z-index: 10;
1154
+ }
1155
+ }
1156
+ .group-data-\[focused\=true\]\/day\:border-ring {
1157
+ &:is(:where(.group\/day)[data-focused=true] *) {
1158
+ border-color: var(--ring);
1159
+ }
1160
+ }
1161
+ .group-data-\[focused\=true\]\/day\:ring-\[3px\] {
1162
+ &:is(:where(.group\/day)[data-focused=true] *) {
1163
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1164
+ box-shadow:
1165
+ var(--tw-inset-shadow),
1166
+ var(--tw-inset-ring-shadow),
1167
+ var(--tw-ring-offset-shadow),
1168
+ var(--tw-ring-shadow),
1169
+ var(--tw-shadow);
1170
+ }
1171
+ }
1172
+ .group-data-\[focused\=true\]\/day\:ring-ring\/50 {
1173
+ &:is(:where(.group\/day)[data-focused=true] *) {
1174
+ --tw-ring-color: var(--ring);
1175
+ @supports (color: color-mix(in lab, red, red)) {
1176
+ --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
1177
+ }
1178
+ }
1179
+ }
1180
+ .peer-disabled\:cursor-not-allowed {
1181
+ &:is(:where(.peer):disabled ~ *) {
1182
+ cursor: not-allowed;
1183
+ }
1184
+ }
1185
+ .peer-disabled\:opacity-50 {
1186
+ &:is(:where(.peer):disabled ~ *) {
1187
+ opacity: 50%;
1188
+ }
1189
+ }
1190
+ .selection\:bg-primary {
1191
+ & *::selection {
1192
+ background-color: var(--primary);
1193
+ }
1194
+ &::selection {
1195
+ background-color: var(--primary);
1196
+ }
1197
+ }
1198
+ .selection\:text-primary-foreground {
1199
+ & *::selection {
1200
+ color: var(--primary-foreground);
1201
+ }
1202
+ &::selection {
1203
+ color: var(--primary-foreground);
1204
+ }
1205
+ }
1206
+ .file\:inline-flex {
1207
+ &::file-selector-button {
1208
+ display: inline-flex;
1209
+ }
1210
+ }
1211
+ .file\:h-7 {
1212
+ &::file-selector-button {
1213
+ height: calc(var(--spacing) * 7);
1214
+ }
1215
+ }
1216
+ .file\:border-0 {
1217
+ &::file-selector-button {
1218
+ border-style: var(--tw-border-style);
1219
+ border-width: 0px;
1220
+ }
1221
+ }
1222
+ .file\:bg-transparent {
1223
+ &::file-selector-button {
1224
+ background-color: transparent;
1225
+ }
1226
+ }
1227
+ .file\:text-sm {
1228
+ &::file-selector-button {
1229
+ font-size: var(--text-sm);
1230
+ line-height: var(--tw-leading, var(--text-sm--line-height));
1231
+ }
1232
+ }
1233
+ .file\:font-medium {
1234
+ &::file-selector-button {
1235
+ --tw-font-weight: var(--font-weight-medium);
1236
+ font-weight: var(--font-weight-medium);
1237
+ }
1238
+ }
1239
+ .file\:text-foreground {
1240
+ &::file-selector-button {
1241
+ color: var(--foreground);
1242
+ }
1243
+ }
1244
+ .placeholder\:text-muted-foreground {
1245
+ &::placeholder {
1246
+ color: var(--muted-foreground);
1247
+ }
1248
+ }
1249
+ .hover\:border-blue-500 {
1250
+ &:hover {
1251
+ @media (hover: hover) {
1252
+ border-color: var(--color-blue-500);
1253
+ }
1254
+ }
1255
+ }
1256
+ .hover\:bg-accent {
1257
+ &:hover {
1258
+ @media (hover: hover) {
1259
+ background-color: var(--accent);
1260
+ }
1261
+ }
1262
+ }
1263
+ .hover\:bg-destructive\/90 {
1264
+ &:hover {
1265
+ @media (hover: hover) {
1266
+ background-color: var(--destructive);
1267
+ @supports (color: color-mix(in lab, red, red)) {
1268
+ background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
1269
+ }
1270
+ }
1271
+ }
1272
+ }
1273
+ .hover\:bg-gray-50 {
1274
+ &:hover {
1275
+ @media (hover: hover) {
1276
+ background-color: var(--color-gray-50);
1277
+ }
1278
+ }
1279
+ }
1280
+ .hover\:bg-gray-100 {
1281
+ &:hover {
1282
+ @media (hover: hover) {
1283
+ background-color: var(--color-gray-100);
1284
+ }
1285
+ }
1286
+ }
1287
+ .hover\:bg-primary\/90 {
1288
+ &:hover {
1289
+ @media (hover: hover) {
1290
+ background-color: var(--primary);
1291
+ @supports (color: color-mix(in lab, red, red)) {
1292
+ background-color: color-mix(in oklab, var(--primary) 90%, transparent);
1293
+ }
1294
+ }
1295
+ }
1296
+ }
1297
+ .hover\:bg-secondary\/80 {
1298
+ &:hover {
1299
+ @media (hover: hover) {
1300
+ background-color: var(--secondary);
1301
+ @supports (color: color-mix(in lab, red, red)) {
1302
+ background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
1303
+ }
1304
+ }
1305
+ }
1306
+ }
1307
+ .hover\:bg-white\/5 {
1308
+ &:hover {
1309
+ @media (hover: hover) {
1310
+ background-color: color-mix(in srgb, #fff 5%, transparent);
1311
+ @supports (color: color-mix(in lab, red, red)) {
1312
+ background-color: color-mix(in oklab, var(--color-white) 5%, transparent);
1313
+ }
1314
+ }
1315
+ }
1316
+ }
1317
+ .hover\:text-accent-foreground {
1318
+ &:hover {
1319
+ @media (hover: hover) {
1320
+ color: var(--accent-foreground);
1321
+ }
1322
+ }
1323
+ }
1324
+ .hover\:underline {
1325
+ &:hover {
1326
+ @media (hover: hover) {
1327
+ text-decoration-line: underline;
1328
+ }
1329
+ }
1330
+ }
1331
+ .focus\:bg-accent {
1332
+ &:focus {
1333
+ background-color: var(--accent);
1334
+ }
1335
+ }
1336
+ .focus\:bg-gray-100 {
1337
+ &:focus {
1338
+ background-color: var(--color-gray-100);
1339
+ }
1340
+ }
1341
+ .focus\:text-accent-foreground {
1342
+ &:focus {
1343
+ color: var(--accent-foreground);
1344
+ }
1345
+ }
1346
+ .focus\:ring-0 {
1347
+ &:focus {
1348
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1349
+ box-shadow:
1350
+ var(--tw-inset-shadow),
1351
+ var(--tw-inset-ring-shadow),
1352
+ var(--tw-ring-offset-shadow),
1353
+ var(--tw-ring-shadow),
1354
+ var(--tw-shadow);
1355
+ }
1356
+ }
1357
+ .focus\:ring-offset-0 {
1358
+ &:focus {
1359
+ --tw-ring-offset-width: 0px;
1360
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1361
+ }
1362
+ }
1363
+ .focus\:outline-none {
1364
+ &:focus {
1365
+ --tw-outline-style: none;
1366
+ outline-style: none;
1367
+ }
1368
+ }
1369
+ .focus-visible\:border-ring {
1370
+ &:focus-visible {
1371
+ border-color: var(--ring);
1372
+ }
1373
+ }
1374
+ .focus-visible\:ring-\[3px\] {
1375
+ &:focus-visible {
1376
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1377
+ box-shadow:
1378
+ var(--tw-inset-shadow),
1379
+ var(--tw-inset-ring-shadow),
1380
+ var(--tw-ring-offset-shadow),
1381
+ var(--tw-ring-shadow),
1382
+ var(--tw-shadow);
1383
+ }
1384
+ }
1385
+ .focus-visible\:ring-destructive\/20 {
1386
+ &:focus-visible {
1387
+ --tw-ring-color: var(--destructive);
1388
+ @supports (color: color-mix(in lab, red, red)) {
1389
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
1390
+ }
1391
+ }
1392
+ }
1393
+ .focus-visible\:ring-ring\/50 {
1394
+ &:focus-visible {
1395
+ --tw-ring-color: var(--ring);
1396
+ @supports (color: color-mix(in lab, red, red)) {
1397
+ --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
1398
+ }
1399
+ }
1400
+ }
1401
+ .disabled\:pointer-events-none {
1402
+ &:disabled {
1403
+ pointer-events: none;
1404
+ }
1405
+ }
1406
+ .disabled\:cursor-not-allowed {
1407
+ &:disabled {
1408
+ cursor: not-allowed;
1409
+ }
1410
+ }
1411
+ .disabled\:opacity-50 {
1412
+ &:disabled {
1413
+ opacity: 50%;
1414
+ }
1415
+ }
1416
+ .has-focus\:border-ring {
1417
+ &:has(*:focus) {
1418
+ border-color: var(--ring);
1419
+ }
1420
+ }
1421
+ .has-focus\:ring-\[3px\] {
1422
+ &:has(*:focus) {
1423
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1424
+ box-shadow:
1425
+ var(--tw-inset-shadow),
1426
+ var(--tw-inset-ring-shadow),
1427
+ var(--tw-ring-offset-shadow),
1428
+ var(--tw-ring-shadow),
1429
+ var(--tw-shadow);
1430
+ }
1431
+ }
1432
+ .has-focus\:ring-ring\/50 {
1433
+ &:has(*:focus) {
1434
+ --tw-ring-color: var(--ring);
1435
+ @supports (color: color-mix(in lab, red, red)) {
1436
+ --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
1437
+ }
1438
+ }
1439
+ }
1440
+ .has-\[\>svg\]\:px-2\.5 {
1441
+ &:has(> svg) {
1442
+ padding-inline: calc(var(--spacing) * 2.5);
1443
+ }
1444
+ }
1445
+ .has-\[\>svg\]\:px-3 {
1446
+ &:has(> svg) {
1447
+ padding-inline: calc(var(--spacing) * 3);
1448
+ }
1449
+ }
1450
+ .has-\[\>svg\]\:px-4 {
1451
+ &:has(> svg) {
1452
+ padding-inline: calc(var(--spacing) * 4);
1453
+ }
1454
+ }
1455
+ .aria-disabled\:opacity-50 {
1456
+ &[aria-disabled=true] {
1457
+ opacity: 50%;
1458
+ }
1459
+ }
1460
+ .aria-invalid\:border-destructive {
1461
+ &[aria-invalid=true] {
1462
+ border-color: var(--destructive);
1463
+ }
1464
+ }
1465
+ .aria-invalid\:ring-destructive\/20 {
1466
+ &[aria-invalid=true] {
1467
+ --tw-ring-color: var(--destructive);
1468
+ @supports (color: color-mix(in lab, red, red)) {
1469
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
1470
+ }
1471
+ }
1472
+ }
1473
+ .aria-selected\:text-muted-foreground {
1474
+ &[aria-selected=true] {
1475
+ color: var(--muted-foreground);
1476
+ }
1477
+ }
1478
+ .data-\[disabled\]\:pointer-events-none {
1479
+ &[data-disabled] {
1480
+ pointer-events: none;
1481
+ }
1482
+ }
1483
+ .data-\[disabled\]\:opacity-50 {
1484
+ &[data-disabled] {
1485
+ opacity: 50%;
1486
+ }
1487
+ }
1488
+ .data-\[inset\]\:pl-8 {
1489
+ &[data-inset] {
1490
+ padding-left: calc(var(--spacing) * 8);
1491
+ }
1492
+ }
1493
+ .data-\[placeholder\]\:text-muted-foreground {
1494
+ &[data-placeholder] {
1495
+ color: var(--muted-foreground);
1496
+ }
1497
+ }
1498
+ .data-\[range-end\=true\]\:rounded-md {
1499
+ &[data-range-end=true] {
1500
+ border-radius: calc(var(--radius) - 2px);
1501
+ }
1502
+ }
1503
+ .data-\[range-end\=true\]\:rounded-r-md {
1504
+ &[data-range-end=true] {
1505
+ border-top-right-radius: calc(var(--radius) - 2px);
1506
+ border-bottom-right-radius: calc(var(--radius) - 2px);
1507
+ }
1508
+ }
1509
+ .data-\[range-end\=true\]\:bg-primary {
1510
+ &[data-range-end=true] {
1511
+ background-color: var(--primary);
1512
+ }
1513
+ }
1514
+ .data-\[range-end\=true\]\:text-primary-foreground {
1515
+ &[data-range-end=true] {
1516
+ color: var(--primary-foreground);
1517
+ }
1518
+ }
1519
+ .data-\[range-middle\=true\]\:rounded-none {
1520
+ &[data-range-middle=true] {
1521
+ border-radius: 0;
1522
+ }
1523
+ }
1524
+ .data-\[range-middle\=true\]\:bg-accent {
1525
+ &[data-range-middle=true] {
1526
+ background-color: var(--accent);
1527
+ }
1528
+ }
1529
+ .data-\[range-middle\=true\]\:text-accent-foreground {
1530
+ &[data-range-middle=true] {
1531
+ color: var(--accent-foreground);
1532
+ }
1533
+ }
1534
+ .data-\[range-start\=true\]\:rounded-md {
1535
+ &[data-range-start=true] {
1536
+ border-radius: calc(var(--radius) - 2px);
1537
+ }
1538
+ }
1539
+ .data-\[range-start\=true\]\:rounded-l-md {
1540
+ &[data-range-start=true] {
1541
+ border-top-left-radius: calc(var(--radius) - 2px);
1542
+ border-bottom-left-radius: calc(var(--radius) - 2px);
1543
+ }
1544
+ }
1545
+ .data-\[range-start\=true\]\:bg-primary {
1546
+ &[data-range-start=true] {
1547
+ background-color: var(--primary);
1548
+ }
1549
+ }
1550
+ .data-\[range-start\=true\]\:text-primary-foreground {
1551
+ &[data-range-start=true] {
1552
+ color: var(--primary-foreground);
1553
+ }
1554
+ }
1555
+ .data-\[selected-single\=true\]\:bg-primary {
1556
+ &[data-selected-single=true] {
1557
+ background-color: var(--primary);
1558
+ }
1559
+ }
1560
+ .data-\[selected-single\=true\]\:text-primary-foreground {
1561
+ &[data-selected-single=true] {
1562
+ color: var(--primary-foreground);
1563
+ }
1564
+ }
1565
+ .data-\[selected\=true\]\:rounded-none {
1566
+ &[data-selected=true] {
1567
+ border-radius: 0;
1568
+ }
1569
+ }
1570
+ .data-\[side\=bottom\]\:translate-y-1 {
1571
+ &[data-side=bottom] {
1572
+ --tw-translate-y: calc(var(--spacing) * 1);
1573
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1574
+ }
1575
+ }
1576
+ .data-\[side\=bottom\]\:slide-in-from-top-2 {
1577
+ &[data-side=bottom] {
1578
+ --tw-enter-translate-y: calc(2*var(--spacing)*-1);
1579
+ }
1580
+ }
1581
+ .data-\[side\=left\]\:-translate-x-1 {
1582
+ &[data-side=left] {
1583
+ --tw-translate-x: calc(var(--spacing) * -1);
1584
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1585
+ }
1586
+ }
1587
+ .data-\[side\=left\]\:slide-in-from-right-2 {
1588
+ &[data-side=left] {
1589
+ --tw-enter-translate-x: calc(2*var(--spacing));
1590
+ }
1591
+ }
1592
+ .data-\[side\=right\]\:translate-x-1 {
1593
+ &[data-side=right] {
1594
+ --tw-translate-x: calc(var(--spacing) * 1);
1595
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1596
+ }
1597
+ }
1598
+ .data-\[side\=right\]\:slide-in-from-left-2 {
1599
+ &[data-side=right] {
1600
+ --tw-enter-translate-x: calc(2*var(--spacing)*-1);
1601
+ }
1602
+ }
1603
+ .data-\[side\=top\]\:-translate-y-1 {
1604
+ &[data-side=top] {
1605
+ --tw-translate-y: calc(var(--spacing) * -1);
1606
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1607
+ }
1608
+ }
1609
+ .data-\[side\=top\]\:slide-in-from-bottom-2 {
1610
+ &[data-side=top] {
1611
+ --tw-enter-translate-y: calc(2*var(--spacing));
1612
+ }
1613
+ }
1614
+ .data-\[size\=default\]\:h-9 {
1615
+ &[data-size=default] {
1616
+ height: calc(var(--spacing) * 9);
1617
+ }
1618
+ }
1619
+ .data-\[size\=sm\]\:h-8 {
1620
+ &[data-size=sm] {
1621
+ height: calc(var(--spacing) * 8);
1622
+ }
1623
+ }
1624
+ .\*\:data-\[slot\=select-value\]\:line-clamp-1 {
1625
+ :is(& > *) {
1626
+ &[data-slot=select-value] {
1627
+ overflow: hidden;
1628
+ display: -webkit-box;
1629
+ -webkit-box-orient: vertical;
1630
+ -webkit-line-clamp: 1;
1631
+ }
1632
+ }
1633
+ }
1634
+ .\*\:data-\[slot\=select-value\]\:flex {
1635
+ :is(& > *) {
1636
+ &[data-slot=select-value] {
1637
+ display: flex;
1638
+ }
1639
+ }
1640
+ }
1641
+ .\*\:data-\[slot\=select-value\]\:items-center {
1642
+ :is(& > *) {
1643
+ &[data-slot=select-value] {
1644
+ align-items: center;
1645
+ }
1646
+ }
1647
+ }
1648
+ .\*\:data-\[slot\=select-value\]\:gap-2 {
1649
+ :is(& > *) {
1650
+ &[data-slot=select-value] {
1651
+ gap: calc(var(--spacing) * 2);
1652
+ }
1653
+ }
1654
+ }
1655
+ .data-\[state\=checked\]\:translate-x-\[calc\(100\%-2px\)\] {
1656
+ &[data-state=checked] {
1657
+ --tw-translate-x: calc(100% - 2px);
1658
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1659
+ }
1660
+ }
1661
+ .data-\[state\=checked\]\:border-primary {
1662
+ &[data-state=checked] {
1663
+ border-color: var(--primary);
1664
+ }
1665
+ }
1666
+ .data-\[state\=checked\]\:bg-primary {
1667
+ &[data-state=checked] {
1668
+ background-color: var(--primary);
1669
+ }
1670
+ }
1671
+ .data-\[state\=checked\]\:text-primary-foreground {
1672
+ &[data-state=checked] {
1673
+ color: var(--primary-foreground);
1674
+ }
1675
+ }
1676
+ .data-\[state\=closed\]\:animate-out {
1677
+ &[data-state=closed] {
1678
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1679
+ }
1680
+ }
1681
+ .data-\[state\=closed\]\:fade-out-0 {
1682
+ &[data-state=closed] {
1683
+ --tw-exit-opacity: calc(0/100);
1684
+ --tw-exit-opacity: 0;
1685
+ }
1686
+ }
1687
+ .data-\[state\=closed\]\:zoom-out-95 {
1688
+ &[data-state=closed] {
1689
+ --tw-exit-scale: calc(95*1%);
1690
+ --tw-exit-scale: .95;
1691
+ }
1692
+ }
1693
+ .data-\[state\=open\]\:animate-in {
1694
+ &[data-state=open] {
1695
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1696
+ }
332
1697
  }
333
- .text-white {
334
- color: var(--color-white);
1698
+ .data-\[state\=open\]\:bg-accent {
1699
+ &[data-state=open] {
1700
+ background-color: var(--accent);
1701
+ }
335
1702
  }
336
- .underline-offset-4 {
337
- text-underline-offset: 4px;
1703
+ .data-\[state\=open\]\:text-accent-foreground {
1704
+ &[data-state=open] {
1705
+ color: var(--accent-foreground);
1706
+ }
338
1707
  }
339
- .shadow-xs {
340
- --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
341
- box-shadow:
342
- var(--tw-inset-shadow),
343
- var(--tw-inset-ring-shadow),
344
- var(--tw-ring-offset-shadow),
345
- var(--tw-ring-shadow),
346
- var(--tw-shadow);
1708
+ .data-\[state\=open\]\:fade-in-0 {
1709
+ &[data-state=open] {
1710
+ --tw-enter-opacity: calc(0/100);
1711
+ --tw-enter-opacity: 0;
1712
+ }
347
1713
  }
348
- .outline {
349
- outline-style: var(--tw-outline-style);
350
- outline-width: 1px;
1714
+ .data-\[state\=open\]\:zoom-in-95 {
1715
+ &[data-state=open] {
1716
+ --tw-enter-scale: calc(95*1%);
1717
+ --tw-enter-scale: .95;
1718
+ }
351
1719
  }
352
- .transition-all {
353
- transition-property: all;
354
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
355
- transition-duration: var(--tw-duration, var(--default-transition-duration));
1720
+ .data-\[state\=unchecked\]\:translate-x-0 {
1721
+ &[data-state=unchecked] {
1722
+ --tw-translate-x: calc(var(--spacing) * 0);
1723
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1724
+ }
356
1725
  }
357
- .outline-none {
358
- --tw-outline-style: none;
359
- outline-style: none;
1726
+ .data-\[state\=unchecked\]\:bg-input {
1727
+ &[data-state=unchecked] {
1728
+ background-color: var(--input);
1729
+ }
360
1730
  }
361
- .hover\:bg-accent {
362
- &:hover {
363
- @media (hover: hover) {
364
- background-color: var(--accent);
365
- }
1731
+ .data-\[variant\=destructive\]\:text-destructive {
1732
+ &[data-variant=destructive] {
1733
+ color: var(--destructive);
366
1734
  }
367
1735
  }
368
- .hover\:bg-destructive\/90 {
369
- &:hover {
370
- @media (hover: hover) {
1736
+ .data-\[variant\=destructive\]\:focus\:bg-destructive\/10 {
1737
+ &[data-variant=destructive] {
1738
+ &:focus {
371
1739
  background-color: var(--destructive);
372
1740
  @supports (color: color-mix(in lab, red, red)) {
373
- background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
1741
+ background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
374
1742
  }
375
1743
  }
376
1744
  }
377
1745
  }
378
- .hover\:bg-primary\/90 {
379
- &:hover {
380
- @media (hover: hover) {
381
- background-color: var(--primary);
382
- @supports (color: color-mix(in lab, red, red)) {
383
- background-color: color-mix(in oklab, var(--primary) 90%, transparent);
384
- }
1746
+ .data-\[variant\=destructive\]\:focus\:text-destructive {
1747
+ &[data-variant=destructive] {
1748
+ &:focus {
1749
+ color: var(--destructive);
385
1750
  }
386
1751
  }
387
1752
  }
388
- .hover\:bg-red-600 {
389
- &:hover {
390
- @media (hover: hover) {
391
- background-color: var(--color-red-600);
392
- }
1753
+ .sm\:visible {
1754
+ @media (width >= 40rem) {
1755
+ visibility: visible;
393
1756
  }
394
1757
  }
395
- .hover\:bg-secondary\/80 {
396
- &:hover {
397
- @media (hover: hover) {
398
- background-color: var(--secondary);
399
- @supports (color: color-mix(in lab, red, red)) {
400
- background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
401
- }
402
- }
1758
+ .sm\:col-span-12 {
1759
+ @media (width >= 40rem) {
1760
+ grid-column: span 12 / span 12;
403
1761
  }
404
1762
  }
405
- .hover\:bg-secondary\/90 {
406
- &:hover {
407
- @media (hover: hover) {
408
- background-color: var(--secondary);
409
- @supports (color: color-mix(in lab, red, red)) {
410
- background-color: color-mix(in oklab, var(--secondary) 90%, transparent);
411
- }
412
- }
1763
+ .sm\:col-start-1 {
1764
+ @media (width >= 40rem) {
1765
+ grid-column-start: 1;
413
1766
  }
414
1767
  }
415
- .hover\:text-accent-foreground {
416
- &:hover {
417
- @media (hover: hover) {
418
- color: var(--accent-foreground);
419
- }
1768
+ .sm\:flex {
1769
+ @media (width >= 40rem) {
1770
+ display: flex;
420
1771
  }
421
1772
  }
422
- .hover\:underline {
423
- &:hover {
424
- @media (hover: hover) {
425
- text-decoration-line: underline;
426
- }
1773
+ .sm\:h-50 {
1774
+ @media (width >= 40rem) {
1775
+ height: calc(var(--spacing) * 50);
427
1776
  }
428
1777
  }
429
- .focus-visible\:border-ring {
430
- &:focus-visible {
431
- border-color: var(--ring);
1778
+ .sm\:grid-cols-12 {
1779
+ @media (width >= 40rem) {
1780
+ grid-template-columns: repeat(12, minmax(0, 1fr));
432
1781
  }
433
1782
  }
434
- .focus-visible\:ring-\[3px\] {
435
- &:focus-visible {
436
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
437
- box-shadow:
438
- var(--tw-inset-shadow),
439
- var(--tw-inset-ring-shadow),
440
- var(--tw-ring-offset-shadow),
441
- var(--tw-ring-shadow),
442
- var(--tw-shadow);
1783
+ .sm\:items-center {
1784
+ @media (width >= 40rem) {
1785
+ align-items: center;
443
1786
  }
444
1787
  }
445
- .focus-visible\:ring-destructive\/20 {
446
- &:focus-visible {
447
- --tw-ring-color: var(--destructive);
448
- @supports (color: color-mix(in lab, red, red)) {
449
- --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
450
- }
1788
+ .sm\:bg-\[\#12715b\] {
1789
+ @media (width >= 40rem) {
1790
+ background-color: #12715b;
451
1791
  }
452
1792
  }
453
- .focus-visible\:ring-red-200 {
454
- &:focus-visible {
455
- --tw-ring-color: var(--color-red-200);
1793
+ .sm\:pt-\[10px\] {
1794
+ @media (width >= 40rem) {
1795
+ padding-top: 10px;
456
1796
  }
457
1797
  }
458
- .focus-visible\:ring-ring\/50 {
459
- &:focus-visible {
460
- --tw-ring-color: var(--ring);
461
- @supports (color: color-mix(in lab, red, red)) {
462
- --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
463
- }
1798
+ .sm\:pr-\[10px\] {
1799
+ @media (width >= 40rem) {
1800
+ padding-right: 10px;
464
1801
  }
465
1802
  }
466
- .disabled\:pointer-events-none {
467
- &:disabled {
468
- pointer-events: none;
1803
+ .sm\:pb-\[10px\] {
1804
+ @media (width >= 40rem) {
1805
+ padding-bottom: 10px;
469
1806
  }
470
1807
  }
471
- .disabled\:opacity-50 {
472
- &:disabled {
473
- opacity: 50%;
1808
+ .sm\:pl-\[10px\] {
1809
+ @media (width >= 40rem) {
1810
+ padding-left: 10px;
474
1811
  }
475
1812
  }
476
- .has-\[\>svg\]\:px-2\.5 {
477
- &:has(> svg) {
478
- padding-inline: calc(var(--spacing) * 2.5);
1813
+ .md\:visible {
1814
+ @media (width >= 48rem) {
1815
+ visibility: visible;
479
1816
  }
480
1817
  }
481
- .has-\[\>svg\]\:px-3 {
482
- &:has(> svg) {
483
- padding-inline: calc(var(--spacing) * 3);
1818
+ .md\:col-span-12 {
1819
+ @media (width >= 48rem) {
1820
+ grid-column: span 12 / span 12;
484
1821
  }
485
1822
  }
486
- .has-\[\>svg\]\:px-4 {
487
- &:has(> svg) {
488
- padding-inline: calc(var(--spacing) * 4);
1823
+ .md\:col-start-1 {
1824
+ @media (width >= 48rem) {
1825
+ grid-column-start: 1;
489
1826
  }
490
1827
  }
491
- .aria-invalid\:border-destructive {
492
- &[aria-invalid=true] {
493
- border-color: var(--destructive);
1828
+ .md\:flex {
1829
+ @media (width >= 48rem) {
1830
+ display: flex;
494
1831
  }
495
1832
  }
496
- .aria-invalid\:ring-destructive\/20 {
497
- &[aria-invalid=true] {
498
- --tw-ring-color: var(--destructive);
499
- @supports (color: color-mix(in lab, red, red)) {
500
- --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
501
- }
1833
+ .md\:h-50 {
1834
+ @media (width >= 48rem) {
1835
+ height: calc(var(--spacing) * 50);
1836
+ }
1837
+ }
1838
+ .md\:grid-cols-12 {
1839
+ @media (width >= 48rem) {
1840
+ grid-template-columns: repeat(12, minmax(0, 1fr));
1841
+ }
1842
+ }
1843
+ .md\:flex-row {
1844
+ @media (width >= 48rem) {
1845
+ flex-direction: row;
1846
+ }
1847
+ }
1848
+ .md\:items-center {
1849
+ @media (width >= 48rem) {
1850
+ align-items: center;
1851
+ }
1852
+ }
1853
+ .md\:bg-\[\#12715b\] {
1854
+ @media (width >= 48rem) {
1855
+ background-color: #12715b;
1856
+ }
1857
+ }
1858
+ .md\:pt-\[10px\] {
1859
+ @media (width >= 48rem) {
1860
+ padding-top: 10px;
1861
+ }
1862
+ }
1863
+ .md\:pr-\[10px\] {
1864
+ @media (width >= 48rem) {
1865
+ padding-right: 10px;
1866
+ }
1867
+ }
1868
+ .md\:pb-\[10px\] {
1869
+ @media (width >= 48rem) {
1870
+ padding-bottom: 10px;
1871
+ }
1872
+ }
1873
+ .md\:pl-\[10px\] {
1874
+ @media (width >= 48rem) {
1875
+ padding-left: 10px;
1876
+ }
1877
+ }
1878
+ .md\:text-sm {
1879
+ @media (width >= 48rem) {
1880
+ font-size: var(--text-sm);
1881
+ line-height: var(--tw-leading, var(--text-sm--line-height));
502
1882
  }
503
1883
  }
504
1884
  .dark\:border-input {
@@ -522,9 +1902,9 @@
522
1902
  }
523
1903
  }
524
1904
  }
525
- .dark\:bg-red-700 {
1905
+ .dark\:text-\[\#fff\] {
526
1906
  &:is(.dark *) {
527
- background-color: var(--color-red-700);
1907
+ color: #fff;
528
1908
  }
529
1909
  }
530
1910
  .dark\:hover\:bg-accent\/50 {
@@ -551,20 +1931,22 @@
551
1931
  }
552
1932
  }
553
1933
  }
554
- .dark\:focus-visible\:ring-destructive\/40 {
1934
+ .dark\:hover\:text-accent-foreground {
555
1935
  &:is(.dark *) {
556
- &:focus-visible {
557
- --tw-ring-color: var(--destructive);
558
- @supports (color: color-mix(in lab, red, red)) {
559
- --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
1936
+ &:hover {
1937
+ @media (hover: hover) {
1938
+ color: var(--accent-foreground);
560
1939
  }
561
1940
  }
562
1941
  }
563
1942
  }
564
- .dark\:focus-visible\:ring-red-400 {
1943
+ .dark\:focus-visible\:ring-destructive\/40 {
565
1944
  &:is(.dark *) {
566
1945
  &:focus-visible {
567
- --tw-ring-color: var(--color-red-400);
1946
+ --tw-ring-color: var(--destructive);
1947
+ @supports (color: color-mix(in lab, red, red)) {
1948
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
1949
+ }
568
1950
  }
569
1951
  }
570
1952
  }
@@ -578,6 +1960,49 @@
578
1960
  }
579
1961
  }
580
1962
  }
1963
+ .dark\:data-\[state\=checked\]\:bg-primary {
1964
+ &:is(.dark *) {
1965
+ &[data-state=checked] {
1966
+ background-color: var(--primary);
1967
+ }
1968
+ }
1969
+ }
1970
+ .dark\:data-\[state\=checked\]\:bg-primary-foreground {
1971
+ &:is(.dark *) {
1972
+ &[data-state=checked] {
1973
+ background-color: var(--primary-foreground);
1974
+ }
1975
+ }
1976
+ }
1977
+ .dark\:data-\[state\=unchecked\]\:bg-foreground {
1978
+ &:is(.dark *) {
1979
+ &[data-state=unchecked] {
1980
+ background-color: var(--foreground);
1981
+ }
1982
+ }
1983
+ }
1984
+ .dark\:data-\[state\=unchecked\]\:bg-input\/80 {
1985
+ &:is(.dark *) {
1986
+ &[data-state=unchecked] {
1987
+ background-color: var(--input);
1988
+ @supports (color: color-mix(in lab, red, red)) {
1989
+ background-color: color-mix(in oklab, var(--input) 80%, transparent);
1990
+ }
1991
+ }
1992
+ }
1993
+ }
1994
+ .dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20 {
1995
+ &:is(.dark *) {
1996
+ &[data-variant=destructive] {
1997
+ &:focus {
1998
+ background-color: var(--destructive);
1999
+ @supports (color: color-mix(in lab, red, red)) {
2000
+ background-color: color-mix(in oklab, var(--destructive) 20%, transparent);
2001
+ }
2002
+ }
2003
+ }
2004
+ }
2005
+ }
581
2006
  .\[\&_svg\]\:pointer-events-none {
582
2007
  & svg {
583
2008
  pointer-events: none;
@@ -594,6 +2019,183 @@
594
2019
  height: calc(var(--spacing) * 4);
595
2020
  }
596
2021
  }
2022
+ .\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground {
2023
+ & svg:not([class*=text-]) {
2024
+ color: var(--muted-foreground);
2025
+ }
2026
+ }
2027
+ .\[\&_svg\:not\(\[class\*\=\\\'size-\\\'\]\)\]\:size-4 {
2028
+ & svg:not([class*="'size-'"]) {
2029
+ width: calc(var(--spacing) * 4);
2030
+ height: calc(var(--spacing) * 4);
2031
+ }
2032
+ }
2033
+ .\[\&_svg\:not\(\[class\*\=\\\'text-\\\'\]\)\]\:text-muted-foreground {
2034
+ & svg:not([class*="'text-'"]) {
2035
+ color: var(--muted-foreground);
2036
+ }
2037
+ }
2038
+ .\[\&\:first-child\[data-selected\=true\]_button\]\:rounded-l-md {
2039
+ &:first-child[data-selected=true] button {
2040
+ border-top-left-radius: calc(var(--radius) - 2px);
2041
+ border-bottom-left-radius: calc(var(--radius) - 2px);
2042
+ }
2043
+ }
2044
+ .rtl\:\*\*\:\[\.rdp-button\\_next\>svg\]\:rotate-180 {
2045
+ &:where(:dir(rtl), [dir=rtl], [dir=rtl] *) {
2046
+ :is(& *) {
2047
+ &:is(.rdp-button_next > svg) {
2048
+ rotate: 180deg;
2049
+ }
2050
+ }
2051
+ }
2052
+ }
2053
+ .rtl\:\*\*\:\[\.rdp-button\\_previous\>svg\]\:rotate-180 {
2054
+ &:where(:dir(rtl), [dir=rtl], [dir=rtl] *) {
2055
+ :is(& *) {
2056
+ &:is(.rdp-button_previous > svg) {
2057
+ rotate: 180deg;
2058
+ }
2059
+ }
2060
+ }
2061
+ }
2062
+ .\*\:\[span\]\:last\:flex {
2063
+ :is(& > *) {
2064
+ &:is(span) {
2065
+ &:last-child {
2066
+ display: flex;
2067
+ }
2068
+ }
2069
+ }
2070
+ }
2071
+ .\*\:\[span\]\:last\:items-center {
2072
+ :is(& > *) {
2073
+ &:is(span) {
2074
+ &:last-child {
2075
+ align-items: center;
2076
+ }
2077
+ }
2078
+ }
2079
+ }
2080
+ .\*\:\[span\]\:last\:gap-2 {
2081
+ :is(& > *) {
2082
+ &:is(span) {
2083
+ &:last-child {
2084
+ gap: calc(var(--spacing) * 2);
2085
+ }
2086
+ }
2087
+ }
2088
+ }
2089
+ .data-\[variant\=destructive\]\:\*\:\[svg\]\:\!text-destructive {
2090
+ &[data-variant=destructive] {
2091
+ :is(& > *) {
2092
+ &:is(svg) {
2093
+ color: var(--destructive) !important;
2094
+ }
2095
+ }
2096
+ }
2097
+ }
2098
+ .\[\&\:last-child\[data-selected\=true\]_button\]\:rounded-r-md {
2099
+ &:last-child[data-selected=true] button {
2100
+ border-top-right-radius: calc(var(--radius) - 2px);
2101
+ border-bottom-right-radius: calc(var(--radius) - 2px);
2102
+ }
2103
+ }
2104
+ .\[\&\>span\]\:text-xs {
2105
+ & > span {
2106
+ font-size: var(--text-xs);
2107
+ line-height: var(--tw-leading, var(--text-xs--line-height));
2108
+ }
2109
+ }
2110
+ .\[\&\>span\]\:opacity-70 {
2111
+ & > span {
2112
+ opacity: 70%;
2113
+ }
2114
+ }
2115
+ .\[\&\>svg\]\:size-3\.5 {
2116
+ & > svg {
2117
+ width: calc(var(--spacing) * 3.5);
2118
+ height: calc(var(--spacing) * 3.5);
2119
+ }
2120
+ }
2121
+ .\[\&\>svg\]\:text-muted-foreground {
2122
+ & > svg {
2123
+ color: var(--muted-foreground);
2124
+ }
2125
+ }
2126
+ .\[\&\>tr\]\:border-b {
2127
+ & > tr {
2128
+ border-bottom-style: var(--tw-border-style);
2129
+ border-bottom-width: 1px;
2130
+ }
2131
+ }
2132
+ .\[\&\>tr\]\:border-gray-200 {
2133
+ & > tr {
2134
+ border-color: var(--color-gray-200);
2135
+ }
2136
+ }
2137
+ .\[\&\>tr\]\:last\:border-b-0 {
2138
+ & > tr {
2139
+ &:last-child {
2140
+ border-bottom-style: var(--tw-border-style);
2141
+ border-bottom-width: 0px;
2142
+ }
2143
+ }
2144
+ }
2145
+ .\[\&\>tr\:last-child\]\:border-0 {
2146
+ & > tr:last-child {
2147
+ border-style: var(--tw-border-style);
2148
+ border-width: 0px;
2149
+ }
2150
+ }
2151
+ .\[\&\>tr\>td\]\:border-r {
2152
+ & > tr > td {
2153
+ border-right-style: var(--tw-border-style);
2154
+ border-right-width: 1px;
2155
+ }
2156
+ }
2157
+ .\[\&\>tr\>td\]\:border-gray-200 {
2158
+ & > tr > td {
2159
+ border-color: var(--color-gray-200);
2160
+ }
2161
+ }
2162
+ .\[\&\>tr\>td\]\:last\:border-r-0 {
2163
+ & > tr > td {
2164
+ &:last-child {
2165
+ border-right-style: var(--tw-border-style);
2166
+ border-right-width: 0px;
2167
+ }
2168
+ }
2169
+ }
2170
+ .\[\&\>tr\>th\]\:border-r {
2171
+ & > tr > th {
2172
+ border-right-style: var(--tw-border-style);
2173
+ border-right-width: 1px;
2174
+ }
2175
+ }
2176
+ .\[\&\>tr\>th\]\:border-gray-200 {
2177
+ & > tr > th {
2178
+ border-color: var(--color-gray-200);
2179
+ }
2180
+ }
2181
+ .\[\&\>tr\>th\]\:last\:border-r-0 {
2182
+ & > tr > th {
2183
+ &:last-child {
2184
+ border-right-style: var(--tw-border-style);
2185
+ border-right-width: 0px;
2186
+ }
2187
+ }
2188
+ }
2189
+ .\[\[data-slot\=card-content\]_\&\]\:bg-transparent {
2190
+ [data-slot=card-content] & {
2191
+ background-color: transparent;
2192
+ }
2193
+ }
2194
+ .\[\[data-slot\=popover-content\]_\&\]\:bg-transparent {
2195
+ [data-slot=popover-content] & {
2196
+ background-color: transparent;
2197
+ }
2198
+ }
597
2199
  }
598
2200
  @property --tw-animation-delay { syntax: "*"; inherits: false; initial-value: 0s; }
599
2201
  @property --tw-animation-direction { syntax: "*"; inherits: false; initial-value: normal; }
@@ -694,13 +2296,19 @@
694
2296
  color: var(--foreground);
695
2297
  }
696
2298
  }
2299
+ @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
2300
+ @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
2301
+ @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
697
2302
  @property --tw-rotate-x { syntax: "*"; inherits: false; }
698
2303
  @property --tw-rotate-y { syntax: "*"; inherits: false; }
699
2304
  @property --tw-rotate-z { syntax: "*"; inherits: false; }
700
2305
  @property --tw-skew-x { syntax: "*"; inherits: false; }
701
2306
  @property --tw-skew-y { syntax: "*"; inherits: false; }
2307
+ @property --tw-space-x-reverse { syntax: "*"; inherits: false; initial-value: 0; }
702
2308
  @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
2309
+ @property --tw-leading { syntax: "*"; inherits: false; }
703
2310
  @property --tw-font-weight { syntax: "*"; inherits: false; }
2311
+ @property --tw-tracking { syntax: "*"; inherits: false; }
704
2312
  @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
705
2313
  @property --tw-shadow-color { syntax: "*"; inherits: false; }
706
2314
  @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@@ -716,19 +2324,40 @@
716
2324
  @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
717
2325
  @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
718
2326
  @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
2327
+ @property --tw-duration { syntax: "*"; inherits: false; }
2328
+ @keyframes enter {
2329
+ from {
2330
+ opacity: var(--tw-enter-opacity,1);
2331
+ transform: translate3d(var(--tw-enter-translate-x,0), var(--tw-enter-translate-y,0), 0)scale3d(var(--tw-enter-scale,1), var(--tw-enter-scale,1), var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));
2332
+ filter: blur(var(--tw-enter-blur,0));
2333
+ }
2334
+ }
2335
+ @keyframes exit {
2336
+ to {
2337
+ opacity: var(--tw-exit-opacity,1);
2338
+ transform: translate3d(var(--tw-exit-translate-x,0), var(--tw-exit-translate-y,0), 0)scale3d(var(--tw-exit-scale,1), var(--tw-exit-scale,1), var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));
2339
+ filter: blur(var(--tw-exit-blur,0));
2340
+ }
2341
+ }
719
2342
  @layer properties {
720
2343
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
721
2344
  *,
722
2345
  ::before,
723
2346
  ::after,
724
2347
  ::backdrop {
2348
+ --tw-translate-x: 0;
2349
+ --tw-translate-y: 0;
2350
+ --tw-translate-z: 0;
725
2351
  --tw-rotate-x: initial;
726
2352
  --tw-rotate-y: initial;
727
2353
  --tw-rotate-z: initial;
728
2354
  --tw-skew-x: initial;
729
2355
  --tw-skew-y: initial;
2356
+ --tw-space-x-reverse: 0;
730
2357
  --tw-border-style: solid;
2358
+ --tw-leading: initial;
731
2359
  --tw-font-weight: initial;
2360
+ --tw-tracking: initial;
732
2361
  --tw-shadow: 0 0 #0000;
733
2362
  --tw-shadow-color: initial;
734
2363
  --tw-shadow-alpha: 100%;
@@ -744,6 +2373,7 @@
744
2373
  --tw-ring-offset-color: #fff;
745
2374
  --tw-ring-offset-shadow: 0 0 #0000;
746
2375
  --tw-outline-style: solid;
2376
+ --tw-duration: initial;
747
2377
  --tw-animation-delay: 0s;
748
2378
  --tw-animation-direction: normal;
749
2379
  --tw-animation-duration: initial;