@namehash/namehash-ui 0.0.0-next-20260113083729 → 0.0.0-next-20260113173359

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,12 +21,29 @@
21
21
  "Liberation Mono",
22
22
  "Courier New",
23
23
  monospace;
24
- --nhui-color-red-500: oklch(63.7% 0.237 25.331);
24
+ --nhui-color-blue-600: oklch(54.6% 0.245 262.881);
25
+ --nhui-color-gray-50: oklch(98.5% 0.002 247.839);
26
+ --nhui-color-gray-200: oklch(92.8% 0.006 264.531);
27
+ --nhui-color-gray-400: oklch(70.7% 0.022 261.325);
28
+ --nhui-color-gray-500: oklch(55.1% 0.027 264.364);
29
+ --nhui-color-gray-700: oklch(37.3% 0.034 259.733);
30
+ --nhui-color-neutral-300: oklch(87% 0 0);
31
+ --nhui-color-black: #000;
32
+ --nhui-color-white: #fff;
25
33
  --nhui-spacing: 0.25rem;
26
34
  --nhui-text-xs: 0.75rem;
27
35
  --nhui-text-xs--line-height: calc(1 / 0.75);
36
+ --nhui-text-sm: 0.875rem;
37
+ --nhui-text-sm--line-height: calc(1.25 / 0.875);
38
+ --nhui-font-weight-light: 300;
39
+ --nhui-font-weight-normal: 400;
40
+ --nhui-font-weight-medium: 500;
28
41
  --nhui-font-weight-semibold: 600;
29
42
  --nhui-leading-normal: 1.5;
43
+ --nhui-radius-2xl: 1rem;
44
+ --nhui-animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
45
+ --nhui-default-transition-duration: 150ms;
46
+ --nhui-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
30
47
  --nhui-default-font-family: var(--nhui-font-sans);
31
48
  --nhui-default-mono-font-family: var(--nhui-font-mono);
32
49
  }
@@ -221,35 +238,1185 @@
221
238
  }
222
239
  }
223
240
  @layer utilities {
224
- .nhui\:pl-10 {
225
- padding-left: calc(var(--nhui-spacing) * 10);
241
+ .nhui\:relative {
242
+ position: relative;
243
+ }
244
+ .nhui\:z-50 {
245
+ z-index: 50;
246
+ }
247
+ .nhui\:mx-1 {
248
+ margin-inline: calc(var(--nhui-spacing) * 1);
249
+ }
250
+ .nhui\:my-2 {
251
+ margin-block: calc(var(--nhui-spacing) * 2);
252
+ }
253
+ .nhui\:mt-\[4px\] {
254
+ margin-top: 4px;
255
+ }
256
+ .nhui\:mb-2 {
257
+ margin-bottom: calc(var(--nhui-spacing) * 2);
258
+ }
259
+ .nhui\:mb-\[3px\] {
260
+ margin-bottom: 3px;
261
+ }
262
+ .nhui\:box-border {
263
+ box-sizing: border-box;
264
+ }
265
+ .nhui\:block {
266
+ display: block;
267
+ }
268
+ .nhui\:flex {
269
+ display: flex;
270
+ }
271
+ .nhui\:hidden {
272
+ display: none;
273
+ }
274
+ .nhui\:inline-flex {
275
+ display: inline-flex;
276
+ }
277
+ .nhui\:aspect-square {
278
+ aspect-ratio: 1 / 1;
279
+ }
280
+ .nhui\:size-2\.5 {
281
+ width: calc(var(--nhui-spacing) * 2.5);
282
+ height: calc(var(--nhui-spacing) * 2.5);
283
+ }
284
+ .nhui\:size-8 {
285
+ width: calc(var(--nhui-spacing) * 8);
286
+ height: calc(var(--nhui-spacing) * 8);
287
+ }
288
+ .nhui\:size-9 {
289
+ width: calc(var(--nhui-spacing) * 9);
290
+ height: calc(var(--nhui-spacing) * 9);
291
+ }
292
+ .nhui\:size-10 {
293
+ width: calc(var(--nhui-spacing) * 10);
294
+ height: calc(var(--nhui-spacing) * 10);
295
+ }
296
+ .nhui\:size-full {
297
+ width: 100%;
298
+ height: 100%;
299
+ }
300
+ .nhui\:h-5 {
301
+ height: calc(var(--nhui-spacing) * 5);
302
+ }
303
+ .nhui\:h-6 {
304
+ height: calc(var(--nhui-spacing) * 6);
305
+ }
306
+ .nhui\:h-8 {
307
+ height: calc(var(--nhui-spacing) * 8);
308
+ }
309
+ .nhui\:h-9 {
310
+ height: calc(var(--nhui-spacing) * 9);
311
+ }
312
+ .nhui\:h-10 {
313
+ height: calc(var(--nhui-spacing) * 10);
314
+ }
315
+ .nhui\:h-\[14px\] {
316
+ height: 14px;
317
+ }
318
+ .nhui\:h-\[21px\] {
319
+ height: 21px;
320
+ }
321
+ .nhui\:h-fit {
322
+ height: fit-content;
323
+ }
324
+ .nhui\:h-full {
325
+ height: 100%;
326
+ }
327
+ .nhui\:min-h-\[80px\] {
328
+ min-height: 80px;
329
+ }
330
+ .nhui\:w-1\/4 {
331
+ width: calc(1/4 * 100%);
332
+ }
333
+ .nhui\:w-1\/5 {
334
+ width: calc(1/5 * 100%);
335
+ }
336
+ .nhui\:w-5 {
337
+ width: calc(var(--nhui-spacing) * 5);
338
+ }
339
+ .nhui\:w-6 {
340
+ width: calc(var(--nhui-spacing) * 6);
341
+ }
342
+ .nhui\:w-10 {
343
+ width: calc(var(--nhui-spacing) * 10);
344
+ }
345
+ .nhui\:w-\[10\%\] {
346
+ width: 10%;
347
+ }
348
+ .nhui\:w-\[15\%\] {
349
+ width: 15%;
350
+ }
351
+ .nhui\:w-\[100px\] {
352
+ width: 100px;
353
+ }
354
+ .nhui\:w-\[228px\] {
355
+ width: 228px;
356
+ }
357
+ .nhui\:w-fit {
358
+ width: fit-content;
359
+ }
360
+ .nhui\:w-full {
361
+ width: 100%;
362
+ }
363
+ .nhui\:max-w-\[339px\] {
364
+ max-width: 339px;
365
+ }
366
+ .nhui\:max-w-\[1216px\] {
367
+ max-width: 1216px;
368
+ }
369
+ .nhui\:min-w-\[110px\] {
370
+ min-width: 110px;
371
+ }
372
+ .nhui\:min-w-\[162px\] {
373
+ min-width: 162px;
374
+ }
375
+ .nhui\:shrink-0 {
376
+ flex-shrink: 0;
377
+ }
378
+ .nhui\:origin-\(--radix-tooltip-content-transform-origin\) {
379
+ transform-origin: var(--radix-tooltip-content-transform-origin);
380
+ }
381
+ .nhui\:translate-y-\[calc\(-50\%_-_2px\)\] {
382
+ --tw-translate-y: calc(-50% - 2px);
383
+ translate: var(--tw-translate-x) var(--tw-translate-y);
384
+ }
385
+ .nhui\:rotate-45 {
386
+ rotate: 45deg;
387
+ }
388
+ .nhui\:animate-in {
389
+ 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);
390
+ }
391
+ .nhui\:animate-pulse {
392
+ animation: var(--nhui-animate-pulse);
393
+ }
394
+ .nhui\:cursor-pointer {
395
+ cursor: pointer;
396
+ }
397
+ .nhui\:cursor-text {
398
+ cursor: text;
399
+ }
400
+ .nhui\:flex-col {
401
+ flex-direction: column;
402
+ }
403
+ .nhui\:flex-row {
404
+ flex-direction: row;
405
+ }
406
+ .nhui\:flex-nowrap {
407
+ flex-wrap: nowrap;
408
+ }
409
+ .nhui\:flex-wrap {
410
+ flex-wrap: wrap;
411
+ }
412
+ .nhui\:items-center {
413
+ align-items: center;
414
+ }
415
+ .nhui\:items-start {
416
+ align-items: flex-start;
417
+ }
418
+ .nhui\:justify-between {
419
+ justify-content: space-between;
420
+ }
421
+ .nhui\:justify-center {
422
+ justify-content: center;
423
+ }
424
+ .nhui\:justify-start {
425
+ justify-content: flex-start;
426
+ }
427
+ .nhui\:gap-0 {
428
+ gap: calc(var(--nhui-spacing) * 0);
429
+ }
430
+ .nhui\:gap-1\.5 {
431
+ gap: calc(var(--nhui-spacing) * 1.5);
432
+ }
433
+ .nhui\:gap-2 {
434
+ gap: calc(var(--nhui-spacing) * 2);
435
+ }
436
+ .nhui\:gap-3 {
437
+ gap: calc(var(--nhui-spacing) * 3);
438
+ }
439
+ .nhui\:gap-4 {
440
+ gap: calc(var(--nhui-spacing) * 4);
441
+ }
442
+ .nhui\:gap-5 {
443
+ gap: calc(var(--nhui-spacing) * 5);
444
+ }
445
+ .nhui\:gap-10 {
446
+ gap: calc(var(--nhui-spacing) * 10);
447
+ }
448
+ .nhui\:space-x-1 {
449
+ :where(& > :not(:last-child)) {
450
+ --tw-space-x-reverse: 0;
451
+ margin-inline-start: calc(calc(var(--nhui-spacing) * 1) * var(--tw-space-x-reverse));
452
+ margin-inline-end: calc(calc(var(--nhui-spacing) * 1) * calc(1 - var(--tw-space-x-reverse)));
453
+ }
454
+ }
455
+ .nhui\:overflow-hidden {
456
+ overflow: hidden;
457
+ }
458
+ .nhui\:overflow-x-auto {
459
+ overflow-x: auto;
460
+ }
461
+ .nhui\:rounded-2xl {
462
+ border-radius: var(--nhui-radius-2xl);
463
+ }
464
+ .nhui\:rounded-\[2px\] {
465
+ border-radius: 2px;
466
+ }
467
+ .nhui\:rounded-full {
468
+ border-radius: calc(infinity * 1px);
469
+ }
470
+ .nhui\:rounded-md {
471
+ border-radius: calc(var(--radius) - 2px);
472
+ }
473
+ .nhui\:rounded-sm {
474
+ border-radius: calc(var(--radius) - 4px);
475
+ }
476
+ .nhui\:border {
477
+ border-style: var(--tw-border-style);
478
+ border-width: 1px;
479
+ }
480
+ .nhui\:border-t {
481
+ border-top-style: var(--tw-border-style);
482
+ border-top-width: 1px;
483
+ }
484
+ .nhui\:border-gray-200 {
485
+ border-color: var(--nhui-color-gray-200);
486
+ }
487
+ .nhui\:bg-\[\#171717\] {
488
+ background-color: #171717;
489
+ }
490
+ .nhui\:bg-accent {
491
+ background-color: var(--accent);
492
+ }
493
+ .nhui\:bg-background {
494
+ background-color: var(--background);
495
+ }
496
+ .nhui\:bg-destructive {
497
+ background-color: var(--destructive);
498
+ }
499
+ .nhui\:bg-foreground {
500
+ background-color: var(--foreground);
501
+ }
502
+ .nhui\:bg-gray-50 {
503
+ background-color: var(--nhui-color-gray-50);
504
+ }
505
+ .nhui\:bg-gray-200 {
506
+ background-color: var(--nhui-color-gray-200);
507
+ }
508
+ .nhui\:bg-muted {
509
+ background-color: var(--muted);
510
+ }
511
+ .nhui\:bg-primary {
512
+ background-color: var(--primary);
513
+ }
514
+ .nhui\:bg-secondary {
515
+ background-color: var(--secondary);
516
+ }
517
+ .nhui\:bg-white {
518
+ background-color: var(--nhui-color-white);
519
+ }
520
+ .nhui\:fill-foreground {
521
+ fill: var(--foreground);
522
+ }
523
+ .nhui\:fill-neutral-300 {
524
+ fill: var(--nhui-color-neutral-300);
525
+ }
526
+ .nhui\:p-4 {
527
+ padding: calc(var(--nhui-spacing) * 4);
528
+ }
529
+ .nhui\:px-3 {
530
+ padding-inline: calc(var(--nhui-spacing) * 3);
531
+ }
532
+ .nhui\:px-4 {
533
+ padding-inline: calc(var(--nhui-spacing) * 4);
534
+ }
535
+ .nhui\:px-5 {
536
+ padding-inline: calc(var(--nhui-spacing) * 5);
537
+ }
538
+ .nhui\:px-6 {
539
+ padding-inline: calc(var(--nhui-spacing) * 6);
540
+ }
541
+ .nhui\:py-1\.5 {
542
+ padding-block: calc(var(--nhui-spacing) * 1.5);
543
+ }
544
+ .nhui\:py-2 {
545
+ padding-block: calc(var(--nhui-spacing) * 2);
546
+ }
547
+ .nhui\:pt-5 {
548
+ padding-top: calc(var(--nhui-spacing) * 5);
549
+ }
550
+ .nhui\:pt-8 {
551
+ padding-top: calc(var(--nhui-spacing) * 8);
552
+ }
553
+ .nhui\:pr-5 {
554
+ padding-right: calc(var(--nhui-spacing) * 5);
555
+ }
556
+ .nhui\:pb-5 {
557
+ padding-bottom: calc(var(--nhui-spacing) * 5);
558
+ }
559
+ .nhui\:text-left {
560
+ text-align: left;
561
+ }
562
+ .nhui\:text-sm {
563
+ font-size: var(--nhui-text-sm);
564
+ line-height: var(--tw-leading, var(--nhui-text-sm--line-height));
226
565
  }
227
566
  .nhui\:text-xs {
228
567
  font-size: var(--nhui-text-xs);
229
568
  line-height: var(--tw-leading, var(--nhui-text-xs--line-height));
230
569
  }
570
+ .nhui\:leading-5 {
571
+ --tw-leading: calc(var(--nhui-spacing) * 5);
572
+ line-height: calc(var(--nhui-spacing) * 5);
573
+ }
574
+ .nhui\:leading-6 {
575
+ --tw-leading: calc(var(--nhui-spacing) * 6);
576
+ line-height: calc(var(--nhui-spacing) * 6);
577
+ }
231
578
  .nhui\:leading-normal {
232
579
  --tw-leading: var(--nhui-leading-normal);
233
580
  line-height: var(--nhui-leading-normal);
234
581
  }
582
+ .nhui\:font-light {
583
+ --tw-font-weight: var(--nhui-font-weight-light);
584
+ font-weight: var(--nhui-font-weight-light);
585
+ }
586
+ .nhui\:font-medium {
587
+ --tw-font-weight: var(--nhui-font-weight-medium);
588
+ font-weight: var(--nhui-font-weight-medium);
589
+ }
590
+ .nhui\:font-normal {
591
+ --tw-font-weight: var(--nhui-font-weight-normal);
592
+ font-weight: var(--nhui-font-weight-normal);
593
+ }
235
594
  .nhui\:font-semibold {
236
595
  --tw-font-weight: var(--nhui-font-weight-semibold);
237
596
  font-weight: var(--nhui-font-weight-semibold);
238
597
  }
239
- .nhui\:text-red-500 {
240
- color: var(--nhui-color-red-500);
598
+ .nhui\:text-balance {
599
+ text-wrap: balance;
600
+ }
601
+ .nhui\:whitespace-nowrap {
602
+ white-space: nowrap;
603
+ }
604
+ .nhui\:\!text-black {
605
+ color: var(--nhui-color-black) !important;
606
+ }
607
+ .nhui\:text-\[\#9CA3AF\] {
608
+ color: #9CA3AF;
609
+ }
610
+ .nhui\:text-\[\#AFAFAF\] {
611
+ color: #AFAFAF;
612
+ }
613
+ .nhui\:text-\[\#EF4444\] {
614
+ color: #EF4444;
615
+ }
616
+ .nhui\:text-background {
617
+ color: var(--background);
618
+ }
619
+ .nhui\:text-black {
620
+ color: var(--nhui-color-black);
621
+ }
622
+ .nhui\:text-blue-600 {
623
+ color: var(--nhui-color-blue-600);
624
+ }
625
+ .nhui\:text-current {
626
+ color: currentcolor;
627
+ }
628
+ .nhui\:text-gray-400 {
629
+ color: var(--nhui-color-gray-400);
630
+ }
631
+ .nhui\:text-gray-500 {
632
+ color: var(--nhui-color-gray-500);
633
+ }
634
+ .nhui\:text-muted-foreground {
635
+ color: var(--muted-foreground);
636
+ }
637
+ .nhui\:text-primary {
638
+ color: var(--primary);
639
+ }
640
+ .nhui\:text-primary-foreground {
641
+ color: var(--primary-foreground);
642
+ }
643
+ .nhui\:text-secondary-foreground {
644
+ color: var(--secondary-foreground);
645
+ }
646
+ .nhui\:text-white {
647
+ color: var(--nhui-color-white);
648
+ }
649
+ .nhui\:not-italic {
650
+ font-style: normal;
651
+ }
652
+ .nhui\:underline {
653
+ text-decoration-line: underline;
654
+ }
655
+ .nhui\:decoration-current {
656
+ text-decoration-color: currentcolor;
657
+ }
658
+ .nhui\:underline-offset-4 {
659
+ text-underline-offset: 4px;
660
+ }
661
+ .nhui\:underline-offset-\[4px\] {
662
+ text-underline-offset: 4px;
663
+ }
664
+ .nhui\:shadow-md {
665
+ --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));
666
+ box-shadow:
667
+ var(--tw-inset-shadow),
668
+ var(--tw-inset-ring-shadow),
669
+ var(--tw-ring-offset-shadow),
670
+ var(--tw-ring-shadow),
671
+ var(--tw-shadow);
672
+ }
673
+ .nhui\:shadow-xs {
674
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
675
+ box-shadow:
676
+ var(--tw-inset-shadow),
677
+ var(--tw-inset-ring-shadow),
678
+ var(--tw-ring-offset-shadow),
679
+ var(--tw-ring-shadow),
680
+ var(--tw-shadow);
681
+ }
682
+ .nhui\:outline-hidden {
683
+ --tw-outline-style: none;
684
+ outline-style: none;
685
+ @media (forced-colors: active) {
686
+ outline: 2px solid transparent;
687
+ outline-offset: 2px;
688
+ }
689
+ }
690
+ .nhui\:transition {
691
+ transition-property:
692
+ color,
693
+ background-color,
694
+ border-color,
695
+ outline-color,
696
+ text-decoration-color,
697
+ fill,
698
+ stroke,
699
+ --tw-gradient-from,
700
+ --tw-gradient-via,
701
+ --tw-gradient-to,
702
+ opacity,
703
+ box-shadow,
704
+ transform,
705
+ translate,
706
+ scale,
707
+ rotate,
708
+ filter,
709
+ -webkit-backdrop-filter,
710
+ backdrop-filter,
711
+ display,
712
+ content-visibility,
713
+ overlay,
714
+ pointer-events;
715
+ transition-timing-function: var(--tw-ease, var(--nhui-default-transition-timing-function));
716
+ transition-duration: var(--tw-duration, var(--nhui-default-transition-duration));
717
+ }
718
+ .nhui\:transition-all {
719
+ transition-property: all;
720
+ transition-timing-function: var(--tw-ease, var(--nhui-default-transition-timing-function));
721
+ transition-duration: var(--tw-duration, var(--nhui-default-transition-duration));
722
+ }
723
+ .nhui\:transition-colors {
724
+ transition-property:
725
+ color,
726
+ background-color,
727
+ border-color,
728
+ outline-color,
729
+ text-decoration-color,
730
+ fill,
731
+ stroke,
732
+ --tw-gradient-from,
733
+ --tw-gradient-via,
734
+ --tw-gradient-to;
735
+ transition-timing-function: var(--tw-ease, var(--nhui-default-transition-timing-function));
736
+ transition-duration: var(--tw-duration, var(--nhui-default-transition-duration));
737
+ }
738
+ .nhui\:duration-0 {
739
+ --tw-duration: 0ms;
740
+ transition-duration: 0ms;
741
+ }
742
+ .nhui\:duration-200 {
743
+ --tw-duration: 200ms;
744
+ transition-duration: 200ms;
745
+ }
746
+ .nhui\:animate-in {
747
+ animation-name: enter;
748
+ animation-duration: 150ms;
749
+ --tw-enter-opacity: initial;
750
+ --tw-enter-scale: initial;
751
+ --tw-enter-rotate: initial;
752
+ --tw-enter-translate-x: initial;
753
+ --tw-enter-translate-y: initial;
754
+ }
755
+ .nhui\:fade-in-0 {
756
+ --tw-enter-opacity: calc(0/100);
757
+ --tw-enter-opacity: 0;
758
+ }
759
+ .nhui\:outline-none {
760
+ --tw-outline-style: none;
761
+ outline-style: none;
762
+ }
763
+ .nhui\:zoom-in-95 {
764
+ --tw-enter-scale: calc(95*1%);
765
+ --tw-enter-scale: .95;
766
+ }
767
+ .nhui\:duration-0 {
768
+ animation-duration: 0s;
769
+ }
770
+ .nhui\:duration-200 {
771
+ animation-duration: 200ms;
772
+ }
773
+ .nhui\:fade-in-0 {
774
+ --tw-enter-opacity: 0;
775
+ }
776
+ .nhui\:zoom-in-95 {
777
+ --tw-enter-scale: .95;
778
+ }
779
+ .nhui\:hover\:bg-accent {
780
+ &:hover {
781
+ @media (hover: hover) {
782
+ background-color: var(--accent);
783
+ }
784
+ }
785
+ }
786
+ .nhui\:hover\:bg-destructive\/90 {
787
+ &:hover {
788
+ @media (hover: hover) {
789
+ background-color: var(--destructive);
790
+ @supports (color: color-mix(in lab, red, red)) {
791
+ background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
792
+ }
793
+ }
794
+ }
795
+ }
796
+ .nhui\:hover\:bg-primary\/90 {
797
+ &:hover {
798
+ @media (hover: hover) {
799
+ background-color: var(--primary);
800
+ @supports (color: color-mix(in lab, red, red)) {
801
+ background-color: color-mix(in oklab, var(--primary) 90%, transparent);
802
+ }
803
+ }
804
+ }
805
+ }
806
+ .nhui\:hover\:bg-secondary\/80 {
807
+ &:hover {
808
+ @media (hover: hover) {
809
+ background-color: var(--secondary);
810
+ @supports (color: color-mix(in lab, red, red)) {
811
+ background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
812
+ }
813
+ }
814
+ }
815
+ }
816
+ .nhui\:hover\:text-accent-foreground {
817
+ &:hover {
818
+ @media (hover: hover) {
819
+ color: var(--accent-foreground);
820
+ }
821
+ }
822
+ }
823
+ .nhui\:hover\:text-black {
824
+ &:hover {
825
+ @media (hover: hover) {
826
+ color: var(--nhui-color-black);
827
+ }
828
+ }
829
+ }
830
+ .nhui\:hover\:text-gray-700 {
831
+ &:hover {
832
+ @media (hover: hover) {
833
+ color: var(--nhui-color-gray-700);
834
+ }
835
+ }
836
+ }
837
+ .nhui\:hover\:underline {
838
+ &:hover {
839
+ @media (hover: hover) {
840
+ text-decoration-line: underline;
841
+ }
842
+ }
843
+ }
844
+ .nhui\:hover\:underline-offset-\[2px\] {
845
+ &:hover {
846
+ @media (hover: hover) {
847
+ text-underline-offset: 2px;
848
+ }
849
+ }
850
+ }
851
+ .nhui\:hover\:underline-offset-\[25\%\] {
852
+ &:hover {
853
+ @media (hover: hover) {
854
+ text-underline-offset: 25%;
855
+ }
856
+ }
857
+ }
858
+ .nhui\:focus-visible\:border-ring {
859
+ &:focus-visible {
860
+ border-color: var(--ring);
861
+ }
862
+ }
863
+ .nhui\:focus-visible\:ring-\[3px\] {
864
+ &:focus-visible {
865
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
866
+ box-shadow:
867
+ var(--tw-inset-shadow),
868
+ var(--tw-inset-ring-shadow),
869
+ var(--tw-ring-offset-shadow),
870
+ var(--tw-ring-shadow),
871
+ var(--tw-shadow);
872
+ }
873
+ }
874
+ .nhui\:focus-visible\:ring-destructive\/20 {
875
+ &:focus-visible {
876
+ --tw-ring-color: var(--destructive);
877
+ @supports (color: color-mix(in lab, red, red)) {
878
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
879
+ }
880
+ }
881
+ }
882
+ .nhui\:focus-visible\:ring-ring\/50 {
883
+ &:focus-visible {
884
+ --tw-ring-color: var(--ring);
885
+ @supports (color: color-mix(in lab, red, red)) {
886
+ --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
887
+ }
888
+ }
889
+ }
890
+ .nhui\:disabled\:pointer-events-none {
891
+ &:disabled {
892
+ pointer-events: none;
893
+ }
894
+ }
895
+ .nhui\:disabled\:opacity-50 {
896
+ &:disabled {
897
+ opacity: 50%;
898
+ }
899
+ }
900
+ .nhui\:has-\[\>svg\]\:px-2\.5 {
901
+ &:has(> svg) {
902
+ padding-inline: calc(var(--nhui-spacing) * 2.5);
903
+ }
904
+ }
905
+ .nhui\:has-\[\>svg\]\:px-3 {
906
+ &:has(> svg) {
907
+ padding-inline: calc(var(--nhui-spacing) * 3);
908
+ }
909
+ }
910
+ .nhui\:has-\[\>svg\]\:px-4 {
911
+ &:has(> svg) {
912
+ padding-inline: calc(var(--nhui-spacing) * 4);
913
+ }
914
+ }
915
+ .nhui\:aria-invalid\:border-destructive {
916
+ &[aria-invalid=true] {
917
+ border-color: var(--destructive);
918
+ }
919
+ }
920
+ .nhui\:aria-invalid\:ring-destructive\/20 {
921
+ &[aria-invalid=true] {
922
+ --tw-ring-color: var(--destructive);
923
+ @supports (color: color-mix(in lab, red, red)) {
924
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
925
+ }
926
+ }
927
+ }
928
+ .nhui\:data-\[side\=bottom\]\:slide-in-from-top-2 {
929
+ &[data-side=bottom] {
930
+ --tw-enter-translate-y: -2;
931
+ }
932
+ }
933
+ .nhui\:data-\[side\=bottom\]\:slide-in-from-top-2 {
934
+ &[data-side=bottom] {
935
+ --tw-enter-translate-y: calc(2*var(--spacing)*-1);
936
+ }
937
+ }
938
+ .nhui\:data-\[side\=left\]\:slide-in-from-right-2 {
939
+ &[data-side=left] {
940
+ --tw-enter-translate-x: 2;
941
+ }
942
+ }
943
+ .nhui\:data-\[side\=left\]\:slide-in-from-right-2 {
944
+ &[data-side=left] {
945
+ --tw-enter-translate-x: calc(2*var(--spacing));
946
+ }
947
+ }
948
+ .nhui\:data-\[side\=right\]\:slide-in-from-left-2 {
949
+ &[data-side=right] {
950
+ --tw-enter-translate-x: -2;
951
+ }
952
+ }
953
+ .nhui\:data-\[side\=right\]\:slide-in-from-left-2 {
954
+ &[data-side=right] {
955
+ --tw-enter-translate-x: calc(2*var(--spacing)*-1);
956
+ }
957
+ }
958
+ .nhui\:data-\[side\=top\]\:slide-in-from-bottom-2 {
959
+ &[data-side=top] {
960
+ --tw-enter-translate-y: 2;
961
+ }
962
+ }
963
+ .nhui\:data-\[side\=top\]\:slide-in-from-bottom-2 {
964
+ &[data-side=top] {
965
+ --tw-enter-translate-y: calc(2*var(--spacing));
966
+ }
967
+ }
968
+ .nhui\:data-\[state\=closed\]\:animate-out {
969
+ &[data-state=closed] {
970
+ 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);
971
+ }
972
+ }
973
+ .nhui\:data-\[state\=closed\]\:animate-out {
974
+ &[data-state=closed] {
975
+ animation-name: exit;
976
+ animation-duration: 150ms;
977
+ --tw-exit-opacity: initial;
978
+ --tw-exit-scale: initial;
979
+ --tw-exit-rotate: initial;
980
+ --tw-exit-translate-x: initial;
981
+ --tw-exit-translate-y: initial;
982
+ }
983
+ }
984
+ .nhui\:data-\[state\=closed\]\:fade-out-0 {
985
+ &[data-state=closed] {
986
+ --tw-exit-opacity: calc(0/100);
987
+ --tw-exit-opacity: 0;
988
+ }
989
+ }
990
+ .nhui\:data-\[state\=closed\]\:zoom-out-95 {
991
+ &[data-state=closed] {
992
+ --tw-exit-scale: calc(95*1%);
993
+ --tw-exit-scale: .95;
994
+ }
995
+ }
996
+ .nhui\:data-\[state\=closed\]\:fade-out-0 {
997
+ &[data-state=closed] {
998
+ --tw-exit-opacity: 0;
999
+ }
1000
+ }
1001
+ .nhui\:data-\[state\=closed\]\:zoom-out-95 {
1002
+ &[data-state=closed] {
1003
+ --tw-exit-scale: .95;
1004
+ }
1005
+ }
1006
+ .nhui\:max-sm\:w-full {
1007
+ @media (width < 40rem) {
1008
+ width: 100%;
1009
+ }
1010
+ }
1011
+ .nhui\:max-sm\:max-w-3\/4 {
1012
+ @media (width < 40rem) {
1013
+ max-width: calc(3/4 * 100%);
1014
+ }
1015
+ }
1016
+ .nhui\:max-sm\:justify-end {
1017
+ @media (width < 40rem) {
1018
+ justify-content: flex-end;
1019
+ }
1020
+ }
1021
+ .nhui\:max-sm\:self-stretch {
1022
+ @media (width < 40rem) {
1023
+ align-self: stretch;
1024
+ }
1025
+ }
1026
+ .nhui\:min-\[1220px\]\:max-w-\[140px\] {
1027
+ @media (width >= 1220px) {
1028
+ max-width: 140px;
1029
+ }
1030
+ }
1031
+ .nhui\:sm\:w-2\/3 {
1032
+ @media (width >= 40rem) {
1033
+ width: calc(2/3 * 100%);
1034
+ }
1035
+ }
1036
+ .nhui\:sm\:w-3\/4 {
1037
+ @media (width >= 40rem) {
1038
+ width: calc(3/4 * 100%);
1039
+ }
1040
+ }
1041
+ .nhui\:sm\:w-3\/5 {
1042
+ @media (width >= 40rem) {
1043
+ width: calc(3/5 * 100%);
1044
+ }
1045
+ }
1046
+ .nhui\:sm\:w-4\/5 {
1047
+ @media (width >= 40rem) {
1048
+ width: calc(4/5 * 100%);
1049
+ }
1050
+ }
1051
+ .nhui\:sm\:w-full {
1052
+ @media (width >= 40rem) {
1053
+ width: 100%;
1054
+ }
1055
+ }
1056
+ .nhui\:sm\:min-w-\[110px\] {
1057
+ @media (width >= 40rem) {
1058
+ min-width: 110px;
1059
+ }
1060
+ }
1061
+ .nhui\:sm\:flex-col {
1062
+ @media (width >= 40rem) {
1063
+ flex-direction: column;
1064
+ }
1065
+ }
1066
+ .nhui\:sm\:flex-row {
1067
+ @media (width >= 40rem) {
1068
+ flex-direction: row;
1069
+ }
1070
+ }
1071
+ .nhui\:sm\:items-center {
1072
+ @media (width >= 40rem) {
1073
+ align-items: center;
1074
+ }
1075
+ }
1076
+ .nhui\:sm\:justify-between {
1077
+ @media (width >= 40rem) {
1078
+ justify-content: space-between;
1079
+ }
1080
+ }
1081
+ .nhui\:sm\:justify-center {
1082
+ @media (width >= 40rem) {
1083
+ justify-content: center;
1084
+ }
1085
+ }
1086
+ .nhui\:sm\:gap-y-5 {
1087
+ @media (width >= 40rem) {
1088
+ row-gap: calc(var(--nhui-spacing) * 5);
1089
+ }
1090
+ }
1091
+ .nhui\:sm\:p-6 {
1092
+ @media (width >= 40rem) {
1093
+ padding: calc(var(--nhui-spacing) * 6);
1094
+ }
1095
+ }
1096
+ .nhui\:sm\:max-\[1220px\]\:max-w-\[110px\] {
1097
+ @media (width >= 40rem) {
1098
+ @media (width < 1220px) {
1099
+ max-width: 110px;
1100
+ }
1101
+ }
1102
+ }
1103
+ .nhui\:lg\:flex-row {
1104
+ @media (width >= 64rem) {
1105
+ flex-direction: row;
1106
+ }
1107
+ }
1108
+ .nhui\:lg\:justify-between {
1109
+ @media (width >= 64rem) {
1110
+ justify-content: space-between;
1111
+ }
1112
+ }
1113
+ .nhui\:lg\:border-t {
1114
+ @media (width >= 64rem) {
1115
+ border-top-style: var(--tw-border-style);
1116
+ border-top-width: 1px;
1117
+ }
1118
+ }
1119
+ .nhui\:lg\:border-gray-200 {
1120
+ @media (width >= 64rem) {
1121
+ border-color: var(--nhui-color-gray-200);
1122
+ }
1123
+ }
1124
+ .nhui\:lg\:px-\[50px\] {
1125
+ @media (width >= 64rem) {
1126
+ padding-inline: 50px;
1127
+ }
1128
+ }
1129
+ .nhui\:dark\:border-input {
1130
+ &:is(.dark *) {
1131
+ border-color: var(--input);
1132
+ }
1133
+ }
1134
+ .nhui\:dark\:bg-destructive\/60 {
1135
+ &:is(.dark *) {
1136
+ background-color: var(--destructive);
1137
+ @supports (color: color-mix(in lab, red, red)) {
1138
+ background-color: color-mix(in oklab, var(--destructive) 60%, transparent);
1139
+ }
1140
+ }
1141
+ }
1142
+ .nhui\:dark\:bg-input\/30 {
1143
+ &:is(.dark *) {
1144
+ background-color: var(--input);
1145
+ @supports (color: color-mix(in lab, red, red)) {
1146
+ background-color: color-mix(in oklab, var(--input) 30%, transparent);
1147
+ }
1148
+ }
1149
+ }
1150
+ .nhui\:dark\:hover\:bg-accent\/50 {
1151
+ &:is(.dark *) {
1152
+ &:hover {
1153
+ @media (hover: hover) {
1154
+ background-color: var(--accent);
1155
+ @supports (color: color-mix(in lab, red, red)) {
1156
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
1157
+ }
1158
+ }
1159
+ }
1160
+ }
1161
+ }
1162
+ .nhui\:dark\:hover\:bg-input\/50 {
1163
+ &:is(.dark *) {
1164
+ &:hover {
1165
+ @media (hover: hover) {
1166
+ background-color: var(--input);
1167
+ @supports (color: color-mix(in lab, red, red)) {
1168
+ background-color: color-mix(in oklab, var(--input) 50%, transparent);
1169
+ }
1170
+ }
1171
+ }
1172
+ }
1173
+ }
1174
+ .nhui\:dark\:focus-visible\:ring-destructive\/40 {
1175
+ &:is(.dark *) {
1176
+ &:focus-visible {
1177
+ --tw-ring-color: var(--destructive);
1178
+ @supports (color: color-mix(in lab, red, red)) {
1179
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
1180
+ }
1181
+ }
1182
+ }
1183
+ }
1184
+ .nhui\:dark\:aria-invalid\:ring-destructive\/40 {
1185
+ &:is(.dark *) {
1186
+ &[aria-invalid=true] {
1187
+ --tw-ring-color: var(--destructive);
1188
+ @supports (color: color-mix(in lab, red, red)) {
1189
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
1190
+ }
1191
+ }
1192
+ }
1193
+ }
1194
+ .nhui\:\[\&_svg\]\:pointer-events-none {
1195
+ & svg {
1196
+ pointer-events: none;
1197
+ }
1198
+ }
1199
+ .nhui\:\[\&_svg\]\:shrink-0 {
1200
+ & svg {
1201
+ flex-shrink: 0;
1202
+ }
1203
+ }
1204
+ .nhui\:\[\&_svg\:not\(\[class\*\=size-\]\)\]\:size-4 {
1205
+ & svg:not([class*=size-]) {
1206
+ width: calc(var(--nhui-spacing) * 4);
1207
+ height: calc(var(--nhui-spacing) * 4);
1208
+ }
241
1209
  }
242
1210
  }
1211
+ @property --tw-animation-delay { syntax: "*"; inherits: false; initial-value: 0s; }
1212
+ @property --tw-animation-direction { syntax: "*"; inherits: false; initial-value: normal; }
1213
+ @property --tw-animation-duration { syntax: "*"; inherits: false; }
1214
+ @property --tw-animation-fill-mode { syntax: "*"; inherits: false; initial-value: none; }
1215
+ @property --tw-animation-iteration-count { syntax: "*"; inherits: false; initial-value: 1; }
1216
+ @property --tw-enter-blur { syntax: "*"; inherits: false; initial-value: 0; }
1217
+ @property --tw-enter-opacity { syntax: "*"; inherits: false; initial-value: 1; }
1218
+ @property --tw-enter-rotate { syntax: "*"; inherits: false; initial-value: 0; }
1219
+ @property --tw-enter-scale { syntax: "*"; inherits: false; initial-value: 1; }
1220
+ @property --tw-enter-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1221
+ @property --tw-enter-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1222
+ @property --tw-exit-blur { syntax: "*"; inherits: false; initial-value: 0; }
1223
+ @property --tw-exit-opacity { syntax: "*"; inherits: false; initial-value: 1; }
1224
+ @property --tw-exit-rotate { syntax: "*"; inherits: false; initial-value: 0; }
1225
+ @property --tw-exit-scale { syntax: "*"; inherits: false; initial-value: 1; }
1226
+ @property --tw-exit-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1227
+ @property --tw-exit-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1228
+ :root {
1229
+ --background: oklch(1 0 0);
1230
+ --foreground: oklch(0.145 0 0);
1231
+ --card: oklch(1 0 0);
1232
+ --card-foreground: oklch(0.145 0 0);
1233
+ --popover: oklch(1 0 0);
1234
+ --popover-foreground: oklch(0.145 0 0);
1235
+ --primary: oklch(0.205 0 0);
1236
+ --primary-foreground: oklch(0.985 0 0);
1237
+ --secondary: oklch(0.97 0 0);
1238
+ --secondary-foreground: oklch(0.205 0 0);
1239
+ --muted: oklch(0.97 0 0);
1240
+ --muted-foreground: oklch(0.556 0 0);
1241
+ --accent: oklch(0.97 0 0);
1242
+ --accent-foreground: oklch(0.205 0 0);
1243
+ --destructive: oklch(0.577 0.245 27.325);
1244
+ --destructive-foreground: oklch(0.577 0.245 27.325);
1245
+ --border: oklch(0.922 0 0);
1246
+ --input: oklch(0.922 0 0);
1247
+ --ring: oklch(0.708 0 0);
1248
+ --chart-1: oklch(0.646 0.222 41.116);
1249
+ --chart-2: oklch(0.6 0.118 184.704);
1250
+ --chart-3: oklch(0.398 0.07 227.392);
1251
+ --chart-4: oklch(0.828 0.189 84.429);
1252
+ --chart-5: oklch(0.769 0.188 70.08);
1253
+ --radius: 0.625rem;
1254
+ --sidebar: oklch(0.985 0 0);
1255
+ --sidebar-foreground: oklch(0.145 0 0);
1256
+ --sidebar-primary: oklch(0.205 0 0);
1257
+ --sidebar-primary-foreground: oklch(0.985 0 0);
1258
+ --sidebar-accent: oklch(0.97 0 0);
1259
+ --sidebar-accent-foreground: oklch(0.205 0 0);
1260
+ --sidebar-border: oklch(0.922 0 0);
1261
+ --sidebar-ring: oklch(0.708 0 0);
1262
+ }
1263
+ .dark {
1264
+ --background: oklch(0.145 0 0);
1265
+ --foreground: oklch(0.985 0 0);
1266
+ --card: oklch(0.145 0 0);
1267
+ --card-foreground: oklch(0.985 0 0);
1268
+ --popover: oklch(0.145 0 0);
1269
+ --popover-foreground: oklch(0.985 0 0);
1270
+ --primary: oklch(0.985 0 0);
1271
+ --primary-foreground: oklch(0.205 0 0);
1272
+ --secondary: oklch(0.269 0 0);
1273
+ --secondary-foreground: oklch(0.985 0 0);
1274
+ --muted: oklch(0.269 0 0);
1275
+ --muted-foreground: oklch(0.708 0 0);
1276
+ --accent: oklch(0.269 0 0);
1277
+ --accent-foreground: oklch(0.985 0 0);
1278
+ --destructive: oklch(0.396 0.141 25.723);
1279
+ --destructive-foreground: oklch(0.637 0.237 25.331);
1280
+ --border: oklch(0.269 0 0);
1281
+ --input: oklch(0.269 0 0);
1282
+ --ring: oklch(0.439 0 0);
1283
+ --chart-1: oklch(0.488 0.243 264.376);
1284
+ --chart-2: oklch(0.696 0.17 162.48);
1285
+ --chart-3: oklch(0.769 0.188 70.08);
1286
+ --chart-4: oklch(0.627 0.265 303.9);
1287
+ --chart-5: oklch(0.645 0.246 16.439);
1288
+ --sidebar: oklch(0.205 0 0);
1289
+ --sidebar-foreground: oklch(0.985 0 0);
1290
+ --sidebar-primary: oklch(0.488 0.243 264.376);
1291
+ --sidebar-primary-foreground: oklch(0.985 0 0);
1292
+ --sidebar-accent: oklch(0.269 0 0);
1293
+ --sidebar-accent-foreground: oklch(0.985 0 0);
1294
+ --sidebar-border: oklch(0.269 0 0);
1295
+ --sidebar-ring: oklch(0.439 0 0);
1296
+ }
1297
+ @layer base {
1298
+ * {
1299
+ border-color: var(--border);
1300
+ outline-color: var(--ring);
1301
+ @supports (color: color-mix(in lab, red, red)) {
1302
+ outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
1303
+ }
1304
+ }
1305
+ body {
1306
+ background-color: var(--background);
1307
+ color: var(--foreground);
1308
+ }
1309
+ }
1310
+ @keyframes enter {
1311
+ from {
1312
+ opacity: var(--tw-enter-opacity, 1);
1313
+ 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));
1314
+ }
1315
+ }
1316
+ @keyframes exit {
1317
+ to {
1318
+ opacity: var(--tw-exit-opacity, 1);
1319
+ 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));
1320
+ }
1321
+ }
1322
+ @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1323
+ @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1324
+ @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
1325
+ @property --tw-space-x-reverse { syntax: "*"; inherits: false; initial-value: 0; }
1326
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
243
1327
  @property --tw-leading { syntax: "*"; inherits: false; }
244
1328
  @property --tw-font-weight { syntax: "*"; inherits: false; }
1329
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1330
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
1331
+ @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1332
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1333
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
1334
+ @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1335
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
1336
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1337
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
1338
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1339
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
1340
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
1341
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
1342
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1343
+ @property --tw-duration { syntax: "*"; inherits: false; }
1344
+ @keyframes pulse {
1345
+ 50% {
1346
+ opacity: 0.5;
1347
+ }
1348
+ }
1349
+ @keyframes enter {
1350
+ from {
1351
+ opacity: var(--tw-enter-opacity,1);
1352
+ 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));
1353
+ filter: blur(var(--tw-enter-blur,0));
1354
+ }
1355
+ }
1356
+ @keyframes exit {
1357
+ to {
1358
+ opacity: var(--tw-exit-opacity,1);
1359
+ 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));
1360
+ filter: blur(var(--tw-exit-blur,0));
1361
+ }
1362
+ }
1363
+ @keyframes enter {
1364
+ from {
1365
+ opacity: var(--tw-enter-opacity, 1);
1366
+ 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));
1367
+ }
1368
+ }
1369
+ @keyframes exit {
1370
+ to {
1371
+ opacity: var(--tw-exit-opacity, 1);
1372
+ 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));
1373
+ }
1374
+ }
245
1375
  @layer properties {
246
1376
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
247
1377
  *,
248
1378
  ::before,
249
1379
  ::after,
250
1380
  ::backdrop {
1381
+ --tw-translate-x: 0;
1382
+ --tw-translate-y: 0;
1383
+ --tw-translate-z: 0;
1384
+ --tw-space-x-reverse: 0;
1385
+ --tw-border-style: solid;
251
1386
  --tw-leading: initial;
252
1387
  --tw-font-weight: initial;
1388
+ --tw-shadow: 0 0 #0000;
1389
+ --tw-shadow-color: initial;
1390
+ --tw-shadow-alpha: 100%;
1391
+ --tw-inset-shadow: 0 0 #0000;
1392
+ --tw-inset-shadow-color: initial;
1393
+ --tw-inset-shadow-alpha: 100%;
1394
+ --tw-ring-color: initial;
1395
+ --tw-ring-shadow: 0 0 #0000;
1396
+ --tw-inset-ring-color: initial;
1397
+ --tw-inset-ring-shadow: 0 0 #0000;
1398
+ --tw-ring-inset: initial;
1399
+ --tw-ring-offset-width: 0px;
1400
+ --tw-ring-offset-color: #fff;
1401
+ --tw-ring-offset-shadow: 0 0 #0000;
1402
+ --tw-duration: initial;
1403
+ --tw-animation-delay: 0s;
1404
+ --tw-animation-direction: normal;
1405
+ --tw-animation-duration: initial;
1406
+ --tw-animation-fill-mode: none;
1407
+ --tw-animation-iteration-count: 1;
1408
+ --tw-enter-blur: 0;
1409
+ --tw-enter-opacity: 1;
1410
+ --tw-enter-rotate: 0;
1411
+ --tw-enter-scale: 1;
1412
+ --tw-enter-translate-x: 0;
1413
+ --tw-enter-translate-y: 0;
1414
+ --tw-exit-blur: 0;
1415
+ --tw-exit-opacity: 1;
1416
+ --tw-exit-rotate: 0;
1417
+ --tw-exit-scale: 1;
1418
+ --tw-exit-translate-x: 0;
1419
+ --tw-exit-translate-y: 0;
253
1420
  }
254
1421
  }
255
1422
  }