@tuwaio/nova-transactions 1.0.0-fix-integrate-orbit-alpha.2.172b680 → 1.0.0-fix-integrate-orbit-alpha.3.521f7fb
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/{WalletInfoModal-DQiw6rqS.d.cts → WalletInfoModal-BbL1VOb1.d.cts} +42 -44
- package/dist/{WalletInfoModal-DQiw6rqS.d.ts → WalletInfoModal-BbL1VOb1.d.ts} +42 -44
- package/dist/index.cjs +15 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +441 -103
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +15 -1
- package/dist/index.js.map +1 -1
- package/dist/providers/index.cjs +15 -1
- package/dist/providers/index.cjs.map +1 -1
- package/dist/providers/index.d.cts +4 -4
- package/dist/providers/index.d.ts +4 -4
- package/dist/providers/index.js +15 -1
- package/dist/providers/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.css
CHANGED
@@ -8,27 +8,12 @@
|
|
8
8
|
.absolute {
|
9
9
|
position: absolute;
|
10
10
|
}
|
11
|
-
.fixed {
|
12
|
-
position: fixed;
|
13
|
-
}
|
14
11
|
.relative {
|
15
12
|
position: relative;
|
16
13
|
}
|
17
14
|
.static {
|
18
15
|
position: static;
|
19
16
|
}
|
20
|
-
.sticky {
|
21
|
-
position: sticky;
|
22
|
-
}
|
23
|
-
.inset-0 {
|
24
|
-
inset: calc(0.25rem * 0);
|
25
|
-
}
|
26
|
-
.top-0 {
|
27
|
-
top: calc(0.25rem * 0);
|
28
|
-
}
|
29
|
-
.top-1\/2 {
|
30
|
-
top: calc(1/2 * 100%);
|
31
|
-
}
|
32
17
|
.top-2 {
|
33
18
|
top: calc(0.25rem * 2);
|
34
19
|
}
|
@@ -41,18 +26,9 @@
|
|
41
26
|
.right-2 {
|
42
27
|
right: calc(0.25rem * 2);
|
43
28
|
}
|
44
|
-
.left-0 {
|
45
|
-
left: calc(0.25rem * 0);
|
46
|
-
}
|
47
|
-
.left-1\/2 {
|
48
|
-
left: calc(1/2 * 100%);
|
49
|
-
}
|
50
29
|
.z-10 {
|
51
30
|
z-index: 10;
|
52
31
|
}
|
53
|
-
.z-50 {
|
54
|
-
z-index: 50;
|
55
|
-
}
|
56
32
|
.container {
|
57
33
|
width: 100%;
|
58
34
|
@media (width >= 40rem) {
|
@@ -71,9 +47,6 @@
|
|
71
47
|
max-width: 96rem;
|
72
48
|
}
|
73
49
|
}
|
74
|
-
.-mt-1 {
|
75
|
-
margin-top: calc(0.25rem * -1);
|
76
|
-
}
|
77
50
|
.mt-1 {
|
78
51
|
margin-top: calc(0.25rem * 1);
|
79
52
|
}
|
@@ -92,9 +65,6 @@
|
|
92
65
|
.mb-2 {
|
93
66
|
margin-bottom: calc(0.25rem * 2);
|
94
67
|
}
|
95
|
-
.ml-2 {
|
96
|
-
margin-left: calc(0.25rem * 2);
|
97
|
-
}
|
98
68
|
.block {
|
99
69
|
display: block;
|
100
70
|
}
|
@@ -122,9 +92,6 @@
|
|
122
92
|
.h-5 {
|
123
93
|
height: calc(0.25rem * 5);
|
124
94
|
}
|
125
|
-
.h-6 {
|
126
|
-
height: calc(0.25rem * 6);
|
127
|
-
}
|
128
95
|
.h-7 {
|
129
96
|
height: calc(0.25rem * 7);
|
130
97
|
}
|
@@ -149,8 +116,8 @@
|
|
149
116
|
.max-h-24 {
|
150
117
|
max-height: calc(0.25rem * 24);
|
151
118
|
}
|
152
|
-
.max-h-\[
|
153
|
-
max-height:
|
119
|
+
.max-h-\[95dvh\] {
|
120
|
+
max-height: 95dvh;
|
154
121
|
}
|
155
122
|
.max-h-\[400px\] {
|
156
123
|
max-height: 400px;
|
@@ -176,9 +143,6 @@
|
|
176
143
|
.w-5 {
|
177
144
|
width: calc(0.25rem * 5);
|
178
145
|
}
|
179
|
-
.w-6 {
|
180
|
-
width: calc(0.25rem * 6);
|
181
|
-
}
|
182
146
|
.w-8 {
|
183
147
|
width: calc(0.25rem * 8);
|
184
148
|
}
|
@@ -218,14 +182,6 @@
|
|
218
182
|
.flex-shrink-0 {
|
219
183
|
flex-shrink: 0;
|
220
184
|
}
|
221
|
-
.-translate-x-1\/2 {
|
222
|
-
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
223
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
224
|
-
}
|
225
|
-
.-translate-y-1\/2 {
|
226
|
-
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
227
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
228
|
-
}
|
229
185
|
.animate-pulse {
|
230
186
|
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
231
187
|
}
|
@@ -293,9 +249,6 @@
|
|
293
249
|
.rounded {
|
294
250
|
border-radius: 0.25rem;
|
295
251
|
}
|
296
|
-
.rounded-2xl {
|
297
|
-
border-radius: 1rem;
|
298
|
-
}
|
299
252
|
.rounded-full {
|
300
253
|
border-radius: calc(infinity * 1px);
|
301
254
|
}
|
@@ -357,15 +310,9 @@
|
|
357
310
|
.bg-\[var\(--tuwa-bg-primary\)\] {
|
358
311
|
background-color: var(--tuwa-bg-primary);
|
359
312
|
}
|
360
|
-
.bg-\[var\(--tuwa-bg-secondary\)\] {
|
361
|
-
background-color: var(--tuwa-bg-secondary);
|
362
|
-
}
|
363
313
|
.bg-\[var\(--tuwa-border-primary\)\] {
|
364
314
|
background-color: var(--tuwa-border-primary);
|
365
315
|
}
|
366
|
-
.bg-\[var\(--tuwa-button-gradient-from\)\] {
|
367
|
-
background-color: var(--tuwa-button-gradient-from);
|
368
|
-
}
|
369
316
|
.bg-\[var\(--tuwa-error-bg\)\] {
|
370
317
|
background-color: var(--tuwa-error-bg);
|
371
318
|
}
|
@@ -390,12 +337,6 @@
|
|
390
337
|
.bg-\[var\(--tuwa-success-icon\)\] {
|
391
338
|
background-color: var(--tuwa-success-icon);
|
392
339
|
}
|
393
|
-
.bg-black\/45 {
|
394
|
-
background-color: color-mix(in oklab, #000 45%, transparent);
|
395
|
-
}
|
396
|
-
.bg-black\/60 {
|
397
|
-
background-color: color-mix(in oklab, #000 60%, transparent);
|
398
|
-
}
|
399
340
|
.bg-gray-400 {
|
400
341
|
background-color: oklch(70.7% 0.022 261.325);
|
401
342
|
}
|
@@ -436,9 +377,6 @@
|
|
436
377
|
.p-4 {
|
437
378
|
padding: calc(0.25rem * 4);
|
438
379
|
}
|
439
|
-
.p-5 {
|
440
|
-
padding: calc(0.25rem * 5);
|
441
|
-
}
|
442
380
|
.p-8 {
|
443
381
|
padding: calc(0.25rem * 8);
|
444
382
|
}
|
@@ -469,30 +407,18 @@
|
|
469
407
|
.py-4 {
|
470
408
|
padding-block: calc(0.25rem * 4);
|
471
409
|
}
|
472
|
-
.pt-0 {
|
473
|
-
padding-top: calc(0.25rem * 0);
|
474
|
-
}
|
475
410
|
.pt-2 {
|
476
411
|
padding-top: calc(0.25rem * 2);
|
477
412
|
}
|
478
413
|
.pt-3 {
|
479
414
|
padding-top: calc(0.25rem * 3);
|
480
415
|
}
|
481
|
-
.pt-4 {
|
482
|
-
padding-top: calc(0.25rem * 4);
|
483
|
-
}
|
484
|
-
.pt-5 {
|
485
|
-
padding-top: calc(0.25rem * 5);
|
486
|
-
}
|
487
416
|
.pr-1 {
|
488
417
|
padding-right: calc(0.25rem * 1);
|
489
418
|
}
|
490
419
|
.pb-1 {
|
491
420
|
padding-bottom: calc(0.25rem * 1);
|
492
421
|
}
|
493
|
-
.pb-2 {
|
494
|
-
padding-bottom: calc(0.25rem * 2);
|
495
|
-
}
|
496
422
|
.text-center {
|
497
423
|
text-align: center;
|
498
424
|
}
|
@@ -583,10 +509,6 @@
|
|
583
509
|
--tw-shadow: 0 0 #0000 !important;
|
584
510
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow) !important;
|
585
511
|
}
|
586
|
-
.shadow-2xl {
|
587
|
-
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
|
588
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
589
|
-
}
|
590
512
|
.shadow-lg {
|
591
513
|
--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));
|
592
514
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
@@ -595,15 +517,6 @@
|
|
595
517
|
--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));
|
596
518
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
597
519
|
}
|
598
|
-
.shadow-xl {
|
599
|
-
--tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
600
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
601
|
-
}
|
602
|
-
.transition {
|
603
|
-
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
604
|
-
transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
|
605
|
-
transition-duration: var(--tw-duration, 150ms);
|
606
|
-
}
|
607
520
|
.transition-all {
|
608
521
|
transition-property: all;
|
609
522
|
transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
|
@@ -627,10 +540,6 @@
|
|
627
540
|
--tw-ease: cubic-bezier(0.4, 0, 0.2, 1);
|
628
541
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
629
542
|
}
|
630
|
-
.outline-none {
|
631
|
-
--tw-outline-style: none;
|
632
|
-
outline-style: none;
|
633
|
-
}
|
634
543
|
.hover\:bg-\[var\(--tuwa-bg-muted\)\] {
|
635
544
|
&:hover {
|
636
545
|
@media (hover: hover) {
|
@@ -748,17 +657,306 @@
|
|
748
657
|
opacity: 70%;
|
749
658
|
}
|
750
659
|
}
|
751
|
-
|
660
|
+
}
|
661
|
+
/*! tailwindcss v4.1.13 | MIT License | https://tailwindcss.com */
|
662
|
+
@layer properties;
|
663
|
+
@layer theme, base, components, utilities;
|
664
|
+
@layer utilities {
|
665
|
+
.fixed {
|
666
|
+
position: fixed;
|
667
|
+
}
|
668
|
+
.relative {
|
669
|
+
position: relative;
|
670
|
+
}
|
671
|
+
.sticky {
|
672
|
+
position: sticky;
|
673
|
+
}
|
674
|
+
.inset-0 {
|
675
|
+
inset: calc(0.25rem * 0);
|
676
|
+
}
|
677
|
+
.top-0 {
|
678
|
+
top: calc(0.25rem * 0);
|
679
|
+
}
|
680
|
+
.top-\[50\%\] {
|
681
|
+
top: 50%;
|
682
|
+
}
|
683
|
+
.left-\[50\%\] {
|
684
|
+
left: 50%;
|
685
|
+
}
|
686
|
+
.z-11 {
|
687
|
+
z-index: 11;
|
688
|
+
}
|
689
|
+
.z-50 {
|
690
|
+
z-index: 50;
|
691
|
+
}
|
692
|
+
.m-0 {
|
693
|
+
margin: calc(0.25rem * 0);
|
694
|
+
}
|
695
|
+
.contents {
|
696
|
+
display: contents;
|
697
|
+
}
|
698
|
+
.flex {
|
699
|
+
display: flex;
|
700
|
+
}
|
701
|
+
.h-5 {
|
702
|
+
height: calc(0.25rem * 5);
|
703
|
+
}
|
704
|
+
.max-h-\[98dvh\] {
|
705
|
+
max-height: 98dvh;
|
706
|
+
}
|
707
|
+
.w-5 {
|
708
|
+
width: calc(0.25rem * 5);
|
709
|
+
}
|
710
|
+
.w-full {
|
711
|
+
width: 100%;
|
712
|
+
}
|
713
|
+
.max-w-full {
|
714
|
+
max-width: 100%;
|
715
|
+
}
|
716
|
+
.translate-x-\[-50\%\] {
|
717
|
+
--tw-translate-x: -50%;
|
718
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
719
|
+
}
|
720
|
+
.translate-y-\[-50\%\] {
|
721
|
+
--tw-translate-y: -50%;
|
722
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
723
|
+
}
|
724
|
+
.animate-in {
|
725
|
+
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);
|
726
|
+
}
|
727
|
+
.resize {
|
728
|
+
resize: both;
|
729
|
+
}
|
730
|
+
.flex-col {
|
731
|
+
flex-direction: column;
|
732
|
+
}
|
733
|
+
.flex-col-reverse {
|
734
|
+
flex-direction: column-reverse;
|
735
|
+
}
|
736
|
+
.flex-row {
|
737
|
+
flex-direction: row;
|
738
|
+
}
|
739
|
+
.items-center {
|
740
|
+
align-items: center;
|
741
|
+
}
|
742
|
+
.justify-between {
|
743
|
+
justify-content: space-between;
|
744
|
+
}
|
745
|
+
.gap-3 {
|
746
|
+
gap: calc(0.25rem * 3);
|
747
|
+
}
|
748
|
+
.truncate {
|
749
|
+
overflow: hidden;
|
750
|
+
text-overflow: ellipsis;
|
751
|
+
white-space: nowrap;
|
752
|
+
}
|
753
|
+
.overflow-hidden {
|
754
|
+
overflow: hidden;
|
755
|
+
}
|
756
|
+
.overflow-y-auto {
|
757
|
+
overflow-y: auto;
|
758
|
+
}
|
759
|
+
.rounded-2xl {
|
760
|
+
border-radius: 1rem;
|
761
|
+
}
|
762
|
+
.border {
|
763
|
+
border-style: var(--tw-border-style);
|
764
|
+
border-width: 1px;
|
765
|
+
}
|
766
|
+
.border-b {
|
767
|
+
border-bottom-style: var(--tw-border-style);
|
768
|
+
border-bottom-width: 1px;
|
769
|
+
}
|
770
|
+
.border-\[var\(--tuwa-border-primary\)\] {
|
771
|
+
border-color: var(--tuwa-border-primary);
|
772
|
+
}
|
773
|
+
.bg-\[var\(--tuwa-bg-primary\)\] {
|
774
|
+
background-color: var(--tuwa-bg-primary);
|
775
|
+
}
|
776
|
+
.bg-\[var\(--tuwa-color-primary\)\] {
|
777
|
+
background-color: var(--tuwa-color-primary);
|
778
|
+
}
|
779
|
+
.bg-black\/55 {
|
780
|
+
background-color: color-mix(in oklab, #000 55%, transparent);
|
781
|
+
}
|
782
|
+
.bg-red-500 {
|
783
|
+
background-color: oklch(63.7% 0.237 25.331);
|
784
|
+
}
|
785
|
+
.p-2 {
|
786
|
+
padding: calc(0.25rem * 2);
|
787
|
+
}
|
788
|
+
.p-4 {
|
789
|
+
padding: calc(0.25rem * 4);
|
790
|
+
}
|
791
|
+
.p-\[var\(--tuwa-spacing-md\)\] {
|
792
|
+
padding: var(--tuwa-spacing-md);
|
793
|
+
}
|
794
|
+
.text-lg {
|
795
|
+
font-size: 1.125rem;
|
796
|
+
line-height: var(--tw-leading, calc(1.75 / 1.125));
|
797
|
+
}
|
798
|
+
.text-sm {
|
799
|
+
font-size: 0.875rem;
|
800
|
+
line-height: var(--tw-leading, calc(1.25 / 0.875));
|
801
|
+
}
|
802
|
+
.leading-none {
|
803
|
+
--tw-leading: 1;
|
804
|
+
line-height: 1;
|
805
|
+
}
|
806
|
+
.font-bold {
|
807
|
+
--tw-font-weight: 700;
|
808
|
+
font-weight: 700;
|
809
|
+
}
|
810
|
+
.tracking-tight {
|
811
|
+
--tw-tracking: -0.025em;
|
812
|
+
letter-spacing: -0.025em;
|
813
|
+
}
|
814
|
+
.text-\[var\(--tuwa-color-foreground\)\] {
|
815
|
+
color: var(--tuwa-color-foreground);
|
816
|
+
}
|
817
|
+
.text-\[var\(--tuwa-text-primary\)\] {
|
818
|
+
color: var(--tuwa-text-primary);
|
819
|
+
}
|
820
|
+
.text-\[var\(--tuwa-text-secondary\)\] {
|
821
|
+
color: var(--tuwa-text-secondary);
|
822
|
+
}
|
823
|
+
.shadow-2xl {
|
824
|
+
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
|
825
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
826
|
+
}
|
827
|
+
.backdrop-blur-sm {
|
828
|
+
--tw-backdrop-blur: blur(8px);
|
829
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
830
|
+
}
|
831
|
+
.backdrop-saturate-150 {
|
832
|
+
--tw-backdrop-saturate: saturate(150%);
|
833
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
834
|
+
}
|
835
|
+
.transition-colors {
|
836
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
837
|
+
transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
|
838
|
+
transition-duration: var(--tw-duration, 150ms);
|
839
|
+
}
|
840
|
+
.duration-350 {
|
841
|
+
--tw-duration: 350ms;
|
842
|
+
transition-duration: 350ms;
|
843
|
+
}
|
844
|
+
.fade-in-0 {
|
845
|
+
--tw-enter-opacity: calc(0/100);
|
846
|
+
--tw-enter-opacity: 0;
|
847
|
+
}
|
848
|
+
.outline-none {
|
849
|
+
--tw-outline-style: none;
|
850
|
+
outline-style: none;
|
851
|
+
}
|
852
|
+
.zoom-in-95 {
|
853
|
+
--tw-enter-scale: calc(95*1%);
|
854
|
+
--tw-enter-scale: .95;
|
855
|
+
}
|
856
|
+
.sm\:flex-row {
|
857
|
+
@media (width >= 40rem) {
|
858
|
+
flex-direction: row;
|
859
|
+
}
|
860
|
+
}
|
861
|
+
.sm\:justify-end {
|
752
862
|
@media (width >= 40rem) {
|
753
|
-
|
863
|
+
justify-content: flex-end;
|
754
864
|
}
|
755
865
|
}
|
756
|
-
.sm\:
|
866
|
+
.sm\:space-x-2 {
|
757
867
|
@media (width >= 40rem) {
|
758
|
-
|
868
|
+
:where(& > :not(:last-child)) {
|
869
|
+
--tw-space-x-reverse: 0;
|
870
|
+
margin-inline-start: calc(calc(0.25rem * 2) * var(--tw-space-x-reverse));
|
871
|
+
margin-inline-end: calc(calc(0.25rem * 2) * calc(1 - var(--tw-space-x-reverse)));
|
872
|
+
}
|
759
873
|
}
|
760
874
|
}
|
761
875
|
}
|
876
|
+
@property --tw-animation-delay {
|
877
|
+
syntax: "*";
|
878
|
+
inherits: false;
|
879
|
+
initial-value: 0s;
|
880
|
+
}
|
881
|
+
@property --tw-animation-direction {
|
882
|
+
syntax: "*";
|
883
|
+
inherits: false;
|
884
|
+
initial-value: normal;
|
885
|
+
}
|
886
|
+
@property --tw-animation-duration {
|
887
|
+
syntax: "*";
|
888
|
+
inherits: false;
|
889
|
+
}
|
890
|
+
@property --tw-animation-fill-mode {
|
891
|
+
syntax: "*";
|
892
|
+
inherits: false;
|
893
|
+
initial-value: none;
|
894
|
+
}
|
895
|
+
@property --tw-animation-iteration-count {
|
896
|
+
syntax: "*";
|
897
|
+
inherits: false;
|
898
|
+
initial-value: 1;
|
899
|
+
}
|
900
|
+
@property --tw-enter-blur {
|
901
|
+
syntax: "*";
|
902
|
+
inherits: false;
|
903
|
+
initial-value: 0;
|
904
|
+
}
|
905
|
+
@property --tw-enter-opacity {
|
906
|
+
syntax: "*";
|
907
|
+
inherits: false;
|
908
|
+
initial-value: 1;
|
909
|
+
}
|
910
|
+
@property --tw-enter-rotate {
|
911
|
+
syntax: "*";
|
912
|
+
inherits: false;
|
913
|
+
initial-value: 0;
|
914
|
+
}
|
915
|
+
@property --tw-enter-scale {
|
916
|
+
syntax: "*";
|
917
|
+
inherits: false;
|
918
|
+
initial-value: 1;
|
919
|
+
}
|
920
|
+
@property --tw-enter-translate-x {
|
921
|
+
syntax: "*";
|
922
|
+
inherits: false;
|
923
|
+
initial-value: 0;
|
924
|
+
}
|
925
|
+
@property --tw-enter-translate-y {
|
926
|
+
syntax: "*";
|
927
|
+
inherits: false;
|
928
|
+
initial-value: 0;
|
929
|
+
}
|
930
|
+
@property --tw-exit-blur {
|
931
|
+
syntax: "*";
|
932
|
+
inherits: false;
|
933
|
+
initial-value: 0;
|
934
|
+
}
|
935
|
+
@property --tw-exit-opacity {
|
936
|
+
syntax: "*";
|
937
|
+
inherits: false;
|
938
|
+
initial-value: 1;
|
939
|
+
}
|
940
|
+
@property --tw-exit-rotate {
|
941
|
+
syntax: "*";
|
942
|
+
inherits: false;
|
943
|
+
initial-value: 0;
|
944
|
+
}
|
945
|
+
@property --tw-exit-scale {
|
946
|
+
syntax: "*";
|
947
|
+
inherits: false;
|
948
|
+
initial-value: 1;
|
949
|
+
}
|
950
|
+
@property --tw-exit-translate-x {
|
951
|
+
syntax: "*";
|
952
|
+
inherits: false;
|
953
|
+
initial-value: 0;
|
954
|
+
}
|
955
|
+
@property --tw-exit-translate-y {
|
956
|
+
syntax: "*";
|
957
|
+
inherits: false;
|
958
|
+
initial-value: 0;
|
959
|
+
}
|
762
960
|
:root {
|
763
961
|
--tuwa-success-bg: oklch(96.2% 0.044 156.743);
|
764
962
|
--tuwa-success-text: oklch(52.7% 0.154 150.069);
|
@@ -815,9 +1013,6 @@
|
|
815
1013
|
--tuwa-button-gradient-from-hover: oklch(54.6% 0.245 262.881);
|
816
1014
|
--tuwa-button-gradient-to-hover: oklch(55.8% 0.288 302.321);
|
817
1015
|
}
|
818
|
-
.Toastify {
|
819
|
-
pointer-events: auto;
|
820
|
-
}
|
821
1016
|
@property --tw-translate-x {
|
822
1017
|
syntax: "*";
|
823
1018
|
inherits: false;
|
@@ -833,6 +1028,120 @@
|
|
833
1028
|
inherits: false;
|
834
1029
|
initial-value: 0;
|
835
1030
|
}
|
1031
|
+
@property --tw-leading {
|
1032
|
+
syntax: "*";
|
1033
|
+
inherits: false;
|
1034
|
+
}
|
1035
|
+
@property --tw-tracking {
|
1036
|
+
syntax: "*";
|
1037
|
+
inherits: false;
|
1038
|
+
}
|
1039
|
+
@property --tw-backdrop-blur {
|
1040
|
+
syntax: "*";
|
1041
|
+
inherits: false;
|
1042
|
+
}
|
1043
|
+
@property --tw-backdrop-brightness {
|
1044
|
+
syntax: "*";
|
1045
|
+
inherits: false;
|
1046
|
+
}
|
1047
|
+
@property --tw-backdrop-contrast {
|
1048
|
+
syntax: "*";
|
1049
|
+
inherits: false;
|
1050
|
+
}
|
1051
|
+
@property --tw-backdrop-grayscale {
|
1052
|
+
syntax: "*";
|
1053
|
+
inherits: false;
|
1054
|
+
}
|
1055
|
+
@property --tw-backdrop-hue-rotate {
|
1056
|
+
syntax: "*";
|
1057
|
+
inherits: false;
|
1058
|
+
}
|
1059
|
+
@property --tw-backdrop-invert {
|
1060
|
+
syntax: "*";
|
1061
|
+
inherits: false;
|
1062
|
+
}
|
1063
|
+
@property --tw-backdrop-opacity {
|
1064
|
+
syntax: "*";
|
1065
|
+
inherits: false;
|
1066
|
+
}
|
1067
|
+
@property --tw-backdrop-saturate {
|
1068
|
+
syntax: "*";
|
1069
|
+
inherits: false;
|
1070
|
+
}
|
1071
|
+
@property --tw-backdrop-sepia {
|
1072
|
+
syntax: "*";
|
1073
|
+
inherits: false;
|
1074
|
+
}
|
1075
|
+
@property --tw-space-x-reverse {
|
1076
|
+
syntax: "*";
|
1077
|
+
inherits: false;
|
1078
|
+
initial-value: 0;
|
1079
|
+
}
|
1080
|
+
@keyframes enter {
|
1081
|
+
from {
|
1082
|
+
opacity: var(--tw-enter-opacity,1);
|
1083
|
+
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));
|
1084
|
+
filter: blur(var(--tw-enter-blur,0));
|
1085
|
+
}
|
1086
|
+
}
|
1087
|
+
@layer properties {
|
1088
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
1089
|
+
*, ::before, ::after, ::backdrop {
|
1090
|
+
--tw-translate-x: 0;
|
1091
|
+
--tw-translate-y: 0;
|
1092
|
+
--tw-translate-z: 0;
|
1093
|
+
--tw-border-style: solid;
|
1094
|
+
--tw-leading: initial;
|
1095
|
+
--tw-font-weight: initial;
|
1096
|
+
--tw-tracking: initial;
|
1097
|
+
--tw-shadow: 0 0 #0000;
|
1098
|
+
--tw-shadow-color: initial;
|
1099
|
+
--tw-shadow-alpha: 100%;
|
1100
|
+
--tw-inset-shadow: 0 0 #0000;
|
1101
|
+
--tw-inset-shadow-color: initial;
|
1102
|
+
--tw-inset-shadow-alpha: 100%;
|
1103
|
+
--tw-ring-color: initial;
|
1104
|
+
--tw-ring-shadow: 0 0 #0000;
|
1105
|
+
--tw-inset-ring-color: initial;
|
1106
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
1107
|
+
--tw-ring-inset: initial;
|
1108
|
+
--tw-ring-offset-width: 0px;
|
1109
|
+
--tw-ring-offset-color: #fff;
|
1110
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
1111
|
+
--tw-backdrop-blur: initial;
|
1112
|
+
--tw-backdrop-brightness: initial;
|
1113
|
+
--tw-backdrop-contrast: initial;
|
1114
|
+
--tw-backdrop-grayscale: initial;
|
1115
|
+
--tw-backdrop-hue-rotate: initial;
|
1116
|
+
--tw-backdrop-invert: initial;
|
1117
|
+
--tw-backdrop-opacity: initial;
|
1118
|
+
--tw-backdrop-saturate: initial;
|
1119
|
+
--tw-backdrop-sepia: initial;
|
1120
|
+
--tw-duration: initial;
|
1121
|
+
--tw-space-x-reverse: 0;
|
1122
|
+
--tw-animation-delay: 0s;
|
1123
|
+
--tw-animation-direction: normal;
|
1124
|
+
--tw-animation-duration: initial;
|
1125
|
+
--tw-animation-fill-mode: none;
|
1126
|
+
--tw-animation-iteration-count: 1;
|
1127
|
+
--tw-enter-blur: 0;
|
1128
|
+
--tw-enter-opacity: 1;
|
1129
|
+
--tw-enter-rotate: 0;
|
1130
|
+
--tw-enter-scale: 1;
|
1131
|
+
--tw-enter-translate-x: 0;
|
1132
|
+
--tw-enter-translate-y: 0;
|
1133
|
+
--tw-exit-blur: 0;
|
1134
|
+
--tw-exit-opacity: 1;
|
1135
|
+
--tw-exit-rotate: 0;
|
1136
|
+
--tw-exit-scale: 1;
|
1137
|
+
--tw-exit-translate-x: 0;
|
1138
|
+
--tw-exit-translate-y: 0;
|
1139
|
+
}
|
1140
|
+
}
|
1141
|
+
}
|
1142
|
+
.Toastify {
|
1143
|
+
pointer-events: auto;
|
1144
|
+
}
|
836
1145
|
@property --tw-border-style {
|
837
1146
|
syntax: "*";
|
838
1147
|
inherits: false;
|
@@ -985,9 +1294,6 @@
|
|
985
1294
|
@layer properties {
|
986
1295
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
987
1296
|
*, ::before, ::after, ::backdrop {
|
988
|
-
--tw-translate-x: 0;
|
989
|
-
--tw-translate-y: 0;
|
990
|
-
--tw-translate-z: 0;
|
991
1297
|
--tw-border-style: solid;
|
992
1298
|
--tw-gradient-position: initial;
|
993
1299
|
--tw-gradient-from: #0000;
|
@@ -1018,6 +1324,38 @@
|
|
1018
1324
|
--tw-scale-x: 1;
|
1019
1325
|
--tw-scale-y: 1;
|
1020
1326
|
--tw-scale-z: 1;
|
1327
|
+
--tw-animation-delay: 0s;
|
1328
|
+
--tw-animation-direction: normal;
|
1329
|
+
--tw-animation-duration: initial;
|
1330
|
+
--tw-animation-fill-mode: none;
|
1331
|
+
--tw-animation-iteration-count: 1;
|
1332
|
+
--tw-enter-blur: 0;
|
1333
|
+
--tw-enter-opacity: 1;
|
1334
|
+
--tw-enter-rotate: 0;
|
1335
|
+
--tw-enter-scale: 1;
|
1336
|
+
--tw-enter-translate-x: 0;
|
1337
|
+
--tw-enter-translate-y: 0;
|
1338
|
+
--tw-exit-blur: 0;
|
1339
|
+
--tw-exit-opacity: 1;
|
1340
|
+
--tw-exit-rotate: 0;
|
1341
|
+
--tw-exit-scale: 1;
|
1342
|
+
--tw-exit-translate-x: 0;
|
1343
|
+
--tw-exit-translate-y: 0;
|
1344
|
+
--tw-translate-x: 0;
|
1345
|
+
--tw-translate-y: 0;
|
1346
|
+
--tw-translate-z: 0;
|
1347
|
+
--tw-leading: initial;
|
1348
|
+
--tw-tracking: initial;
|
1349
|
+
--tw-backdrop-blur: initial;
|
1350
|
+
--tw-backdrop-brightness: initial;
|
1351
|
+
--tw-backdrop-contrast: initial;
|
1352
|
+
--tw-backdrop-grayscale: initial;
|
1353
|
+
--tw-backdrop-hue-rotate: initial;
|
1354
|
+
--tw-backdrop-invert: initial;
|
1355
|
+
--tw-backdrop-opacity: initial;
|
1356
|
+
--tw-backdrop-saturate: initial;
|
1357
|
+
--tw-backdrop-sepia: initial;
|
1358
|
+
--tw-space-x-reverse: 0;
|
1021
1359
|
}
|
1022
1360
|
}
|
1023
1361
|
}
|