@namehash/namehash-ui 1.4.0 → 1.5.1

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