@tuwaio/nova-transactions 0.0.26 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -12
- package/dist/{WalletInfoModal-UEEF9E-5.d.cts → TransactionsInfoModal-6RO18o9e.d.cts} +66 -211
- package/dist/{WalletInfoModal-UEEF9E-5.d.ts → TransactionsInfoModal-6RO18o9e.d.ts} +66 -211
- package/dist/index.cjs +15 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +282 -517
- package/dist/index.d.cts +7 -39
- package/dist/index.d.ts +7 -39
- package/dist/index.js +15 -12
- package/dist/index.js.map +1 -1
- package/dist/providers/index.cjs +15 -12
- package/dist/providers/index.cjs.map +1 -1
- package/dist/providers/index.d.cts +12 -11
- package/dist/providers/index.d.ts +12 -11
- package/dist/providers/index.js +15 -12
- package/dist/providers/index.js.map +1 -1
- package/package.json +19 -19
package/dist/index.css
CHANGED
|
@@ -1,662 +1,512 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.
|
|
1
|
+
/*! tailwindcss v4.1.15 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
|
-
@layer
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
@layer theme {
|
|
5
|
+
:root, :host {
|
|
6
|
+
--novatx-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
|
|
7
|
+
monospace;
|
|
8
|
+
--novatx-color-gray-400: oklch(70.7% 0.022 261.325);
|
|
9
|
+
--novatx-color-gray-500: oklch(55.1% 0.027 264.364);
|
|
10
|
+
--novatx-color-white: #fff;
|
|
11
|
+
--novatx-spacing: 0.25rem;
|
|
12
|
+
--novatx-container-md: 28rem;
|
|
13
|
+
--novatx-container-2xl: 42rem;
|
|
14
|
+
--novatx-text-xs: 0.75rem;
|
|
15
|
+
--novatx-text-xs--line-height: calc(1 / 0.75);
|
|
16
|
+
--novatx-text-sm: 0.875rem;
|
|
17
|
+
--novatx-text-sm--line-height: calc(1.25 / 0.875);
|
|
18
|
+
--novatx-text-lg: 1.125rem;
|
|
19
|
+
--novatx-text-lg--line-height: calc(1.75 / 1.125);
|
|
20
|
+
--novatx-font-weight-medium: 500;
|
|
21
|
+
--novatx-font-weight-semibold: 600;
|
|
22
|
+
--novatx-font-weight-bold: 700;
|
|
23
|
+
--novatx-radius-md: 0.375rem;
|
|
24
|
+
--novatx-radius-lg: 0.5rem;
|
|
25
|
+
--novatx-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
26
|
+
--novatx-animate-spin: spin 1s linear infinite;
|
|
27
|
+
--novatx-animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
28
|
+
--novatx-default-transition-duration: 150ms;
|
|
29
|
+
--novatx-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
7
30
|
}
|
|
8
|
-
|
|
31
|
+
}
|
|
32
|
+
@layer utilities {
|
|
33
|
+
.novatx\:absolute {
|
|
9
34
|
position: absolute;
|
|
10
35
|
}
|
|
11
|
-
.
|
|
12
|
-
position: fixed;
|
|
13
|
-
}
|
|
14
|
-
.relative {
|
|
36
|
+
.novatx\:relative {
|
|
15
37
|
position: relative;
|
|
16
38
|
}
|
|
17
|
-
.
|
|
18
|
-
position: static;
|
|
19
|
-
}
|
|
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
|
-
.top-2 {
|
|
33
|
-
top: calc(0.25rem * 2);
|
|
34
|
-
}
|
|
35
|
-
.top-\[10px\] {
|
|
39
|
+
.novatx\:top-\[10px\] {
|
|
36
40
|
top: 10px;
|
|
37
41
|
}
|
|
38
|
-
.right-1\/2 {
|
|
42
|
+
.novatx\:right-1\/2 {
|
|
39
43
|
right: calc(1/2 * 100%);
|
|
40
44
|
}
|
|
41
|
-
.
|
|
42
|
-
right: calc(0.25rem * 2);
|
|
43
|
-
}
|
|
44
|
-
.left-0 {
|
|
45
|
-
left: calc(0.25rem * 0);
|
|
46
|
-
}
|
|
47
|
-
.left-1\/2 {
|
|
48
|
-
left: calc(1/2 * 100%);
|
|
49
|
-
}
|
|
50
|
-
.z-10 {
|
|
45
|
+
.novatx\:z-10 {
|
|
51
46
|
z-index: 10;
|
|
52
47
|
}
|
|
53
|
-
.
|
|
54
|
-
|
|
55
|
-
}
|
|
56
|
-
.container {
|
|
57
|
-
width: 100%;
|
|
58
|
-
@media (width >= 40rem) {
|
|
59
|
-
max-width: 40rem;
|
|
60
|
-
}
|
|
61
|
-
@media (width >= 48rem) {
|
|
62
|
-
max-width: 48rem;
|
|
63
|
-
}
|
|
64
|
-
@media (width >= 64rem) {
|
|
65
|
-
max-width: 64rem;
|
|
66
|
-
}
|
|
67
|
-
@media (width >= 80rem) {
|
|
68
|
-
max-width: 80rem;
|
|
69
|
-
}
|
|
70
|
-
@media (width >= 96rem) {
|
|
71
|
-
max-width: 96rem;
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
.-mt-1 {
|
|
75
|
-
margin-top: calc(0.25rem * -1);
|
|
48
|
+
.novatx\:mt-1 {
|
|
49
|
+
margin-top: calc(var(--novatx-spacing) * 1);
|
|
76
50
|
}
|
|
77
|
-
.mt-
|
|
78
|
-
margin-top: calc(
|
|
51
|
+
.novatx\:mt-2 {
|
|
52
|
+
margin-top: calc(var(--novatx-spacing) * 2);
|
|
79
53
|
}
|
|
80
|
-
.mt-
|
|
81
|
-
margin-top: calc(
|
|
54
|
+
.novatx\:mt-3 {
|
|
55
|
+
margin-top: calc(var(--novatx-spacing) * 3);
|
|
82
56
|
}
|
|
83
|
-
.
|
|
84
|
-
margin-
|
|
57
|
+
.novatx\:mb-1 {
|
|
58
|
+
margin-bottom: calc(var(--novatx-spacing) * 1);
|
|
85
59
|
}
|
|
86
|
-
.mb-
|
|
87
|
-
margin-bottom: calc(
|
|
60
|
+
.novatx\:mb-2 {
|
|
61
|
+
margin-bottom: calc(var(--novatx-spacing) * 2);
|
|
88
62
|
}
|
|
89
|
-
.
|
|
90
|
-
margin-bottom: calc(0.25rem * 1.5);
|
|
91
|
-
}
|
|
92
|
-
.mb-2 {
|
|
93
|
-
margin-bottom: calc(0.25rem * 2);
|
|
94
|
-
}
|
|
95
|
-
.ml-2 {
|
|
96
|
-
margin-left: calc(0.25rem * 2);
|
|
97
|
-
}
|
|
98
|
-
.block {
|
|
63
|
+
.novatx\:block {
|
|
99
64
|
display: block;
|
|
100
65
|
}
|
|
101
|
-
.
|
|
102
|
-
display: contents;
|
|
103
|
-
}
|
|
104
|
-
.flex {
|
|
66
|
+
.novatx\:flex {
|
|
105
67
|
display: flex;
|
|
106
68
|
}
|
|
107
|
-
.inline-flex {
|
|
69
|
+
.novatx\:inline-flex {
|
|
108
70
|
display: inline-flex;
|
|
109
71
|
}
|
|
110
|
-
.h-0\.5 {
|
|
111
|
-
height: calc(
|
|
112
|
-
}
|
|
113
|
-
.h-2 {
|
|
114
|
-
height: calc(0.25rem * 2);
|
|
115
|
-
}
|
|
116
|
-
.h-3 {
|
|
117
|
-
height: calc(0.25rem * 3);
|
|
72
|
+
.novatx\:h-0\.5 {
|
|
73
|
+
height: calc(var(--novatx-spacing) * 0.5);
|
|
118
74
|
}
|
|
119
|
-
.h-
|
|
120
|
-
height: calc(
|
|
75
|
+
.novatx\:h-2 {
|
|
76
|
+
height: calc(var(--novatx-spacing) * 2);
|
|
121
77
|
}
|
|
122
|
-
.h-
|
|
123
|
-
height: calc(
|
|
78
|
+
.novatx\:h-3 {
|
|
79
|
+
height: calc(var(--novatx-spacing) * 3);
|
|
124
80
|
}
|
|
125
|
-
.h-
|
|
126
|
-
height: calc(
|
|
81
|
+
.novatx\:h-4 {
|
|
82
|
+
height: calc(var(--novatx-spacing) * 4);
|
|
127
83
|
}
|
|
128
|
-
.h-
|
|
129
|
-
height: calc(
|
|
84
|
+
.novatx\:h-5 {
|
|
85
|
+
height: calc(var(--novatx-spacing) * 5);
|
|
130
86
|
}
|
|
131
|
-
.h-8 {
|
|
132
|
-
height: calc(
|
|
87
|
+
.novatx\:h-8 {
|
|
88
|
+
height: calc(var(--novatx-spacing) * 8);
|
|
133
89
|
}
|
|
134
|
-
.h-10 {
|
|
135
|
-
height: calc(
|
|
90
|
+
.novatx\:h-10 {
|
|
91
|
+
height: calc(var(--novatx-spacing) * 10);
|
|
136
92
|
}
|
|
137
|
-
.h-
|
|
138
|
-
height: calc(
|
|
93
|
+
.novatx\:h-16 {
|
|
94
|
+
height: calc(var(--novatx-spacing) * 16);
|
|
139
95
|
}
|
|
140
|
-
.h-
|
|
141
|
-
height: calc(
|
|
96
|
+
.novatx\:max-h-24 {
|
|
97
|
+
max-height: calc(var(--novatx-spacing) * 24);
|
|
142
98
|
}
|
|
143
|
-
.h
|
|
144
|
-
height:
|
|
99
|
+
.novatx\:max-h-\[95dvh\] {
|
|
100
|
+
max-height: 95dvh;
|
|
145
101
|
}
|
|
146
|
-
.h
|
|
147
|
-
height: 100%;
|
|
148
|
-
}
|
|
149
|
-
.max-h-24 {
|
|
150
|
-
max-height: calc(0.25rem * 24);
|
|
151
|
-
}
|
|
152
|
-
.max-h-\[98dvh\] {
|
|
153
|
-
max-height: 98dvh;
|
|
154
|
-
}
|
|
155
|
-
.max-h-\[400px\] {
|
|
102
|
+
.novatx\:max-h-\[400px\] {
|
|
156
103
|
max-height: 400px;
|
|
157
104
|
}
|
|
158
|
-
|
|
159
|
-
min-height: calc(
|
|
160
|
-
}
|
|
161
|
-
.min-h-\[3\.5rem\] {
|
|
162
|
-
min-height: 3.5rem;
|
|
163
|
-
}
|
|
164
|
-
.min-h-\[4rem\] {
|
|
165
|
-
min-height: 4rem;
|
|
166
|
-
}
|
|
167
|
-
.w-2 {
|
|
168
|
-
width: calc(0.25rem * 2);
|
|
105
|
+
.novatx\:\!min-h-0 {
|
|
106
|
+
min-height: calc(var(--novatx-spacing) * 0) !important;
|
|
169
107
|
}
|
|
170
|
-
.w-
|
|
171
|
-
width: calc(
|
|
108
|
+
.novatx\:w-2 {
|
|
109
|
+
width: calc(var(--novatx-spacing) * 2);
|
|
172
110
|
}
|
|
173
|
-
.w-
|
|
174
|
-
width: calc(
|
|
111
|
+
.novatx\:w-3 {
|
|
112
|
+
width: calc(var(--novatx-spacing) * 3);
|
|
175
113
|
}
|
|
176
|
-
.w-
|
|
177
|
-
width: calc(
|
|
114
|
+
.novatx\:w-4 {
|
|
115
|
+
width: calc(var(--novatx-spacing) * 4);
|
|
178
116
|
}
|
|
179
|
-
.w-
|
|
180
|
-
width: calc(
|
|
117
|
+
.novatx\:w-5 {
|
|
118
|
+
width: calc(var(--novatx-spacing) * 5);
|
|
181
119
|
}
|
|
182
|
-
.w-8 {
|
|
183
|
-
width: calc(
|
|
120
|
+
.novatx\:w-8 {
|
|
121
|
+
width: calc(var(--novatx-spacing) * 8);
|
|
184
122
|
}
|
|
185
|
-
.w-10 {
|
|
186
|
-
width: calc(
|
|
123
|
+
.novatx\:w-10 {
|
|
124
|
+
width: calc(var(--novatx-spacing) * 10);
|
|
187
125
|
}
|
|
188
|
-
.w-
|
|
189
|
-
width: calc(
|
|
126
|
+
.novatx\:w-16 {
|
|
127
|
+
width: calc(var(--novatx-spacing) * 16);
|
|
190
128
|
}
|
|
191
|
-
.w
|
|
192
|
-
width: calc(0.25rem * 16);
|
|
193
|
-
}
|
|
194
|
-
.w-48 {
|
|
195
|
-
width: calc(0.25rem * 48);
|
|
196
|
-
}
|
|
197
|
-
.w-\[40px\] {
|
|
129
|
+
.novatx\:w-\[40px\] {
|
|
198
130
|
width: 40px;
|
|
199
131
|
}
|
|
200
|
-
.w-full {
|
|
132
|
+
.novatx\:w-full {
|
|
201
133
|
width: 100%;
|
|
202
134
|
}
|
|
203
|
-
.
|
|
204
|
-
max-width: 42rem;
|
|
205
|
-
}
|
|
206
|
-
.max-w-md {
|
|
207
|
-
max-width: 28rem;
|
|
208
|
-
}
|
|
209
|
-
.min-w-\[80px\] {
|
|
135
|
+
.novatx\:min-w-\[80px\] {
|
|
210
136
|
min-width: 80px;
|
|
211
137
|
}
|
|
212
|
-
.
|
|
213
|
-
min-width: 200px;
|
|
214
|
-
}
|
|
215
|
-
.flex-1 {
|
|
138
|
+
.novatx\:flex-1 {
|
|
216
139
|
flex: 1;
|
|
217
140
|
}
|
|
218
|
-
.flex-shrink-0 {
|
|
141
|
+
.novatx\:flex-shrink-0 {
|
|
219
142
|
flex-shrink: 0;
|
|
220
143
|
}
|
|
221
|
-
|
|
222
|
-
|
|
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);
|
|
144
|
+
.novatx\:animate-pulse {
|
|
145
|
+
animation: var(--novatx-animate-pulse);
|
|
228
146
|
}
|
|
229
|
-
.animate-
|
|
230
|
-
animation:
|
|
147
|
+
.novatx\:animate-spin {
|
|
148
|
+
animation: var(--novatx-animate-spin);
|
|
231
149
|
}
|
|
232
|
-
.
|
|
233
|
-
animation: spin 1s linear infinite;
|
|
234
|
-
}
|
|
235
|
-
.cursor-pointer {
|
|
150
|
+
.novatx\:cursor-pointer {
|
|
236
151
|
cursor: pointer;
|
|
237
152
|
}
|
|
238
|
-
.flex-col {
|
|
153
|
+
.novatx\:flex-col {
|
|
239
154
|
flex-direction: column;
|
|
240
155
|
}
|
|
241
|
-
.items-center {
|
|
156
|
+
.novatx\:items-center {
|
|
242
157
|
align-items: center;
|
|
243
158
|
}
|
|
244
|
-
.items-start {
|
|
159
|
+
.novatx\:items-start {
|
|
245
160
|
align-items: flex-start;
|
|
246
161
|
}
|
|
247
|
-
.justify-between {
|
|
162
|
+
.novatx\:justify-between {
|
|
248
163
|
justify-content: space-between;
|
|
249
164
|
}
|
|
250
|
-
.justify-center {
|
|
165
|
+
.novatx\:justify-center {
|
|
251
166
|
justify-content: center;
|
|
252
167
|
}
|
|
253
|
-
.justify-end {
|
|
168
|
+
.novatx\:justify-end {
|
|
254
169
|
justify-content: flex-end;
|
|
255
170
|
}
|
|
256
|
-
.gap-1\.5 {
|
|
257
|
-
gap: calc(
|
|
258
|
-
}
|
|
259
|
-
.gap-2 {
|
|
260
|
-
gap: calc(0.25rem * 2);
|
|
171
|
+
.novatx\:gap-1\.5 {
|
|
172
|
+
gap: calc(var(--novatx-spacing) * 1.5);
|
|
261
173
|
}
|
|
262
|
-
.gap-
|
|
263
|
-
gap: calc(
|
|
174
|
+
.novatx\:gap-2 {
|
|
175
|
+
gap: calc(var(--novatx-spacing) * 2);
|
|
264
176
|
}
|
|
265
|
-
.gap-
|
|
266
|
-
gap: calc(
|
|
177
|
+
.novatx\:gap-3 {
|
|
178
|
+
gap: calc(var(--novatx-spacing) * 3);
|
|
267
179
|
}
|
|
268
|
-
.gap-
|
|
269
|
-
|
|
270
|
-
column-gap: calc(0.25rem * 1);
|
|
180
|
+
.novatx\:gap-4 {
|
|
181
|
+
gap: calc(var(--novatx-spacing) * 4);
|
|
271
182
|
}
|
|
272
|
-
.gap-x-1
|
|
273
|
-
-moz-column-gap: calc(
|
|
274
|
-
column-gap: calc(
|
|
183
|
+
.novatx\:gap-x-1 {
|
|
184
|
+
-moz-column-gap: calc(var(--novatx-spacing) * 1);
|
|
185
|
+
column-gap: calc(var(--novatx-spacing) * 1);
|
|
275
186
|
}
|
|
276
|
-
.gap-x-
|
|
277
|
-
-moz-column-gap: calc(
|
|
278
|
-
column-gap: calc(
|
|
187
|
+
.novatx\:gap-x-1\.5 {
|
|
188
|
+
-moz-column-gap: calc(var(--novatx-spacing) * 1.5);
|
|
189
|
+
column-gap: calc(var(--novatx-spacing) * 1.5);
|
|
279
190
|
}
|
|
280
|
-
.gap-x-
|
|
281
|
-
-moz-column-gap: calc(
|
|
282
|
-
column-gap: calc(
|
|
191
|
+
.novatx\:gap-x-2 {
|
|
192
|
+
-moz-column-gap: calc(var(--novatx-spacing) * 2);
|
|
193
|
+
column-gap: calc(var(--novatx-spacing) * 2);
|
|
283
194
|
}
|
|
284
|
-
.gap-y-2 {
|
|
285
|
-
row-gap: calc(
|
|
195
|
+
.novatx\:gap-y-2 {
|
|
196
|
+
row-gap: calc(var(--novatx-spacing) * 2);
|
|
286
197
|
}
|
|
287
|
-
.gap-y-3 {
|
|
288
|
-
row-gap: calc(
|
|
198
|
+
.novatx\:gap-y-3 {
|
|
199
|
+
row-gap: calc(var(--novatx-spacing) * 3);
|
|
289
200
|
}
|
|
290
|
-
.overflow-y-auto {
|
|
201
|
+
.novatx\:overflow-y-auto {
|
|
291
202
|
overflow-y: auto;
|
|
292
203
|
}
|
|
293
|
-
.rounded {
|
|
204
|
+
.novatx\:rounded {
|
|
294
205
|
border-radius: 0.25rem;
|
|
295
206
|
}
|
|
296
|
-
.rounded-
|
|
297
|
-
border-radius: 1rem;
|
|
298
|
-
}
|
|
299
|
-
.rounded-full {
|
|
207
|
+
.novatx\:rounded-full {
|
|
300
208
|
border-radius: calc(infinity * 1px);
|
|
301
209
|
}
|
|
302
|
-
.rounded-lg {
|
|
303
|
-
border-radius:
|
|
210
|
+
.novatx\:rounded-lg {
|
|
211
|
+
border-radius: var(--novatx-radius-lg);
|
|
304
212
|
}
|
|
305
|
-
.rounded-md {
|
|
306
|
-
border-radius:
|
|
213
|
+
.novatx\:rounded-md {
|
|
214
|
+
border-radius: var(--novatx-radius-md);
|
|
307
215
|
}
|
|
308
|
-
.rounded-
|
|
309
|
-
border-radius:
|
|
216
|
+
.novatx\:rounded-t-md {
|
|
217
|
+
border-top-left-radius: var(--novatx-radius-md);
|
|
218
|
+
border-top-right-radius: var(--novatx-radius-md);
|
|
310
219
|
}
|
|
311
|
-
.border {
|
|
220
|
+
.novatx\:border {
|
|
312
221
|
border-style: var(--tw-border-style);
|
|
313
222
|
border-width: 1px;
|
|
314
223
|
}
|
|
315
|
-
.border-2 {
|
|
224
|
+
.novatx\:border-2 {
|
|
316
225
|
border-style: var(--tw-border-style);
|
|
317
226
|
border-width: 2px;
|
|
318
227
|
}
|
|
319
|
-
.border-t {
|
|
228
|
+
.novatx\:border-t {
|
|
320
229
|
border-top-style: var(--tw-border-style);
|
|
321
230
|
border-top-width: 1px;
|
|
322
231
|
}
|
|
323
|
-
.border-b {
|
|
232
|
+
.novatx\:border-b {
|
|
324
233
|
border-bottom-style: var(--tw-border-style);
|
|
325
234
|
border-bottom-width: 1px;
|
|
326
235
|
}
|
|
327
|
-
.border-\[var\(--tuwa-border-primary\)\] {
|
|
236
|
+
.novatx\:border-\[var\(--tuwa-border-primary\)\] {
|
|
328
237
|
border-color: var(--tuwa-border-primary);
|
|
329
238
|
}
|
|
330
|
-
.border-\[var\(--tuwa-border-secondary\)\] {
|
|
239
|
+
.novatx\:border-\[var\(--tuwa-border-secondary\)\] {
|
|
331
240
|
border-color: var(--tuwa-border-secondary);
|
|
332
241
|
}
|
|
333
|
-
.border-\[var\(--tuwa-error-icon\)\] {
|
|
242
|
+
.novatx\:border-\[var\(--tuwa-error-icon\)\] {
|
|
334
243
|
border-color: var(--tuwa-error-icon);
|
|
335
244
|
}
|
|
336
|
-
.border-\[var\(--tuwa-error-icon\)\]\/30 {
|
|
245
|
+
.novatx\:border-\[var\(--tuwa-error-icon\)\]\/30 {
|
|
337
246
|
border-color: var(--tuwa-error-icon);
|
|
338
247
|
@supports (color: color-mix(in lab, red, red)) {
|
|
339
|
-
|
|
248
|
+
& {
|
|
249
|
+
border-color: color-mix(in oklab, var(--tuwa-error-icon) 30%, transparent);
|
|
250
|
+
}
|
|
340
251
|
}
|
|
341
252
|
}
|
|
342
|
-
.border-\[var\(--tuwa-info-icon\)\] {
|
|
253
|
+
.novatx\:border-\[var\(--tuwa-info-icon\)\] {
|
|
343
254
|
border-color: var(--tuwa-info-icon);
|
|
344
255
|
}
|
|
345
|
-
.border-\[var\(--tuwa-pending-icon\)\] {
|
|
256
|
+
.novatx\:border-\[var\(--tuwa-pending-icon\)\] {
|
|
346
257
|
border-color: var(--tuwa-pending-icon);
|
|
347
258
|
}
|
|
348
|
-
.border-\[var\(--tuwa-success-icon\)\] {
|
|
259
|
+
.novatx\:border-\[var\(--tuwa-success-icon\)\] {
|
|
349
260
|
border-color: var(--tuwa-success-icon);
|
|
350
261
|
}
|
|
351
|
-
|
|
262
|
+
.novatx\:\!bg-transparent {
|
|
352
263
|
background-color: transparent !important;
|
|
353
264
|
}
|
|
354
|
-
.bg-\[var\(--tuwa-bg-muted\)\] {
|
|
265
|
+
.novatx\:bg-\[var\(--tuwa-bg-muted\)\] {
|
|
355
266
|
background-color: var(--tuwa-bg-muted);
|
|
356
267
|
}
|
|
357
|
-
.bg-\[var\(--tuwa-bg-primary\)\] {
|
|
268
|
+
.novatx\:bg-\[var\(--tuwa-bg-primary\)\] {
|
|
358
269
|
background-color: var(--tuwa-bg-primary);
|
|
359
270
|
}
|
|
360
|
-
.bg-\[var\(--tuwa-
|
|
361
|
-
background-color: var(--tuwa-bg-secondary);
|
|
362
|
-
}
|
|
363
|
-
.bg-\[var\(--tuwa-border-primary\)\] {
|
|
271
|
+
.novatx\:bg-\[var\(--tuwa-border-primary\)\] {
|
|
364
272
|
background-color: var(--tuwa-border-primary);
|
|
365
273
|
}
|
|
366
|
-
.bg-\[var\(--tuwa-
|
|
367
|
-
background-color: var(--tuwa-button-gradient-from);
|
|
368
|
-
}
|
|
369
|
-
.bg-\[var\(--tuwa-error-bg\)\] {
|
|
274
|
+
.novatx\:bg-\[var\(--tuwa-error-bg\)\] {
|
|
370
275
|
background-color: var(--tuwa-error-bg);
|
|
371
276
|
}
|
|
372
|
-
.bg-\[var\(--tuwa-error-icon\)\] {
|
|
277
|
+
.novatx\:bg-\[var\(--tuwa-error-icon\)\] {
|
|
373
278
|
background-color: var(--tuwa-error-icon);
|
|
374
279
|
}
|
|
375
|
-
.bg-\[var\(--tuwa-info-bg\)\] {
|
|
280
|
+
.novatx\:bg-\[var\(--tuwa-info-bg\)\] {
|
|
376
281
|
background-color: var(--tuwa-info-bg);
|
|
377
282
|
}
|
|
378
|
-
.bg-\[var\(--tuwa-info-icon\)\] {
|
|
283
|
+
.novatx\:bg-\[var\(--tuwa-info-icon\)\] {
|
|
379
284
|
background-color: var(--tuwa-info-icon);
|
|
380
285
|
}
|
|
381
|
-
.bg-\[var\(--tuwa-pending-bg\)\] {
|
|
286
|
+
.novatx\:bg-\[var\(--tuwa-pending-bg\)\] {
|
|
382
287
|
background-color: var(--tuwa-pending-bg);
|
|
383
288
|
}
|
|
384
|
-
.bg-\[var\(--tuwa-pending-icon\)\] {
|
|
289
|
+
.novatx\:bg-\[var\(--tuwa-pending-icon\)\] {
|
|
385
290
|
background-color: var(--tuwa-pending-icon);
|
|
386
291
|
}
|
|
387
|
-
.bg-\[var\(--tuwa-success-bg\)\] {
|
|
292
|
+
.novatx\:bg-\[var\(--tuwa-success-bg\)\] {
|
|
388
293
|
background-color: var(--tuwa-success-bg);
|
|
389
294
|
}
|
|
390
|
-
.bg-\[var\(--tuwa-success-icon\)\] {
|
|
295
|
+
.novatx\:bg-\[var\(--tuwa-success-icon\)\] {
|
|
391
296
|
background-color: var(--tuwa-success-icon);
|
|
392
297
|
}
|
|
393
|
-
.bg-
|
|
394
|
-
background-color: color-
|
|
395
|
-
}
|
|
396
|
-
.bg-black\/60 {
|
|
397
|
-
background-color: color-mix(in oklab, #000 60%, transparent);
|
|
398
|
-
}
|
|
399
|
-
.bg-gray-400 {
|
|
400
|
-
background-color: oklch(70.7% 0.022 261.325);
|
|
298
|
+
.novatx\:bg-gray-400 {
|
|
299
|
+
background-color: var(--novatx-color-gray-400);
|
|
401
300
|
}
|
|
402
|
-
.bg-gray-500 {
|
|
403
|
-
background-color:
|
|
301
|
+
.novatx\:bg-gray-500 {
|
|
302
|
+
background-color: var(--novatx-color-gray-500);
|
|
404
303
|
}
|
|
405
|
-
.bg-transparent {
|
|
304
|
+
.novatx\:bg-transparent {
|
|
406
305
|
background-color: transparent;
|
|
407
306
|
}
|
|
408
|
-
.bg-gradient-to-r {
|
|
307
|
+
.novatx\:bg-gradient-to-r {
|
|
409
308
|
--tw-gradient-position: to right in oklab;
|
|
410
309
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
411
310
|
}
|
|
412
|
-
.from-\[var\(--tuwa-button-gradient-from\)\] {
|
|
311
|
+
.novatx\:from-\[var\(--tuwa-button-gradient-from\)\] {
|
|
413
312
|
--tw-gradient-from: var(--tuwa-button-gradient-from);
|
|
414
313
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
415
314
|
}
|
|
416
|
-
.to-\[var\(--tuwa-button-gradient-to\)\] {
|
|
315
|
+
.novatx\:to-\[var\(--tuwa-button-gradient-to\)\] {
|
|
417
316
|
--tw-gradient-to: var(--tuwa-button-gradient-to);
|
|
418
317
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
419
318
|
}
|
|
420
|
-
.
|
|
421
|
-
|
|
422
|
-
object-fit: cover;
|
|
423
|
-
}
|
|
424
|
-
.\!p-0 {
|
|
425
|
-
padding: calc(0.25rem * 0) !important;
|
|
426
|
-
}
|
|
427
|
-
.p-1 {
|
|
428
|
-
padding: calc(0.25rem * 1);
|
|
429
|
-
}
|
|
430
|
-
.p-2 {
|
|
431
|
-
padding: calc(0.25rem * 2);
|
|
319
|
+
.novatx\:\!p-0 {
|
|
320
|
+
padding: calc(var(--novatx-spacing) * 0) !important;
|
|
432
321
|
}
|
|
433
|
-
.p-
|
|
434
|
-
padding: calc(
|
|
322
|
+
.novatx\:p-1 {
|
|
323
|
+
padding: calc(var(--novatx-spacing) * 1);
|
|
435
324
|
}
|
|
436
|
-
.p-
|
|
437
|
-
padding: calc(
|
|
325
|
+
.novatx\:p-2 {
|
|
326
|
+
padding: calc(var(--novatx-spacing) * 2);
|
|
438
327
|
}
|
|
439
|
-
.p-
|
|
440
|
-
padding: calc(
|
|
328
|
+
.novatx\:p-3 {
|
|
329
|
+
padding: calc(var(--novatx-spacing) * 3);
|
|
441
330
|
}
|
|
442
|
-
.p-
|
|
443
|
-
padding: calc(
|
|
331
|
+
.novatx\:p-4 {
|
|
332
|
+
padding: calc(var(--novatx-spacing) * 4);
|
|
444
333
|
}
|
|
445
|
-
.
|
|
446
|
-
padding
|
|
334
|
+
.novatx\:p-8 {
|
|
335
|
+
padding: calc(var(--novatx-spacing) * 8);
|
|
447
336
|
}
|
|
448
|
-
.px-2 {
|
|
449
|
-
padding-inline: calc(
|
|
337
|
+
.novatx\:px-2 {
|
|
338
|
+
padding-inline: calc(var(--novatx-spacing) * 2);
|
|
450
339
|
}
|
|
451
|
-
.px-3 {
|
|
452
|
-
padding-inline: calc(
|
|
340
|
+
.novatx\:px-3 {
|
|
341
|
+
padding-inline: calc(var(--novatx-spacing) * 3);
|
|
453
342
|
}
|
|
454
|
-
.px-4 {
|
|
455
|
-
padding-inline: calc(
|
|
343
|
+
.novatx\:px-4 {
|
|
344
|
+
padding-inline: calc(var(--novatx-spacing) * 4);
|
|
456
345
|
}
|
|
457
|
-
.py-
|
|
458
|
-
padding-block: calc(
|
|
346
|
+
.novatx\:py-1 {
|
|
347
|
+
padding-block: calc(var(--novatx-spacing) * 1);
|
|
459
348
|
}
|
|
460
|
-
.py-1 {
|
|
461
|
-
padding-block: calc(
|
|
349
|
+
.novatx\:py-1\.5 {
|
|
350
|
+
padding-block: calc(var(--novatx-spacing) * 1.5);
|
|
462
351
|
}
|
|
463
|
-
.py-
|
|
464
|
-
padding-block: calc(
|
|
352
|
+
.novatx\:py-2 {
|
|
353
|
+
padding-block: calc(var(--novatx-spacing) * 2);
|
|
465
354
|
}
|
|
466
|
-
.py-
|
|
467
|
-
padding-block: calc(
|
|
355
|
+
.novatx\:py-4 {
|
|
356
|
+
padding-block: calc(var(--novatx-spacing) * 4);
|
|
468
357
|
}
|
|
469
|
-
.
|
|
470
|
-
padding-
|
|
358
|
+
.novatx\:pt-2 {
|
|
359
|
+
padding-top: calc(var(--novatx-spacing) * 2);
|
|
471
360
|
}
|
|
472
|
-
.pt-
|
|
473
|
-
padding-top: calc(
|
|
361
|
+
.novatx\:pt-3 {
|
|
362
|
+
padding-top: calc(var(--novatx-spacing) * 3);
|
|
474
363
|
}
|
|
475
|
-
.
|
|
476
|
-
padding-
|
|
364
|
+
.novatx\:pr-1 {
|
|
365
|
+
padding-right: calc(var(--novatx-spacing) * 1);
|
|
477
366
|
}
|
|
478
|
-
.
|
|
479
|
-
padding-
|
|
367
|
+
.novatx\:pb-1 {
|
|
368
|
+
padding-bottom: calc(var(--novatx-spacing) * 1);
|
|
480
369
|
}
|
|
481
|
-
.
|
|
482
|
-
padding-top: calc(0.25rem * 4);
|
|
483
|
-
}
|
|
484
|
-
.pt-5 {
|
|
485
|
-
padding-top: calc(0.25rem * 5);
|
|
486
|
-
}
|
|
487
|
-
.pr-1 {
|
|
488
|
-
padding-right: calc(0.25rem * 1);
|
|
489
|
-
}
|
|
490
|
-
.pb-1 {
|
|
491
|
-
padding-bottom: calc(0.25rem * 1);
|
|
492
|
-
}
|
|
493
|
-
.pb-2 {
|
|
494
|
-
padding-bottom: calc(0.25rem * 2);
|
|
495
|
-
}
|
|
496
|
-
.text-center {
|
|
370
|
+
.novatx\:text-center {
|
|
497
371
|
text-align: center;
|
|
498
372
|
}
|
|
499
|
-
.font-mono {
|
|
500
|
-
font-family:
|
|
501
|
-
monospace;
|
|
373
|
+
.novatx\:font-mono {
|
|
374
|
+
font-family: var(--novatx-font-mono);
|
|
502
375
|
}
|
|
503
|
-
.text-lg {
|
|
504
|
-
font-size:
|
|
505
|
-
line-height: var(--tw-leading,
|
|
376
|
+
.novatx\:text-lg {
|
|
377
|
+
font-size: var(--novatx-text-lg);
|
|
378
|
+
line-height: var(--tw-leading, var(--novatx-text-lg--line-height));
|
|
506
379
|
}
|
|
507
|
-
.text-sm {
|
|
508
|
-
font-size:
|
|
509
|
-
line-height: var(--tw-leading,
|
|
380
|
+
.novatx\:text-sm {
|
|
381
|
+
font-size: var(--novatx-text-sm);
|
|
382
|
+
line-height: var(--tw-leading, var(--novatx-text-sm--line-height));
|
|
510
383
|
}
|
|
511
|
-
.text-
|
|
512
|
-
font-size:
|
|
513
|
-
line-height: var(--tw-leading,
|
|
384
|
+
.novatx\:text-xs {
|
|
385
|
+
font-size: var(--novatx-text-xs);
|
|
386
|
+
line-height: var(--tw-leading, var(--novatx-text-xs--line-height));
|
|
514
387
|
}
|
|
515
|
-
.
|
|
516
|
-
font-
|
|
517
|
-
|
|
388
|
+
.novatx\:font-bold {
|
|
389
|
+
--tw-font-weight: var(--novatx-font-weight-bold);
|
|
390
|
+
font-weight: var(--novatx-font-weight-bold);
|
|
518
391
|
}
|
|
519
|
-
.font-
|
|
520
|
-
--tw-font-weight:
|
|
521
|
-
font-weight:
|
|
392
|
+
.novatx\:font-medium {
|
|
393
|
+
--tw-font-weight: var(--novatx-font-weight-medium);
|
|
394
|
+
font-weight: var(--novatx-font-weight-medium);
|
|
522
395
|
}
|
|
523
|
-
.font-
|
|
524
|
-
--tw-font-weight:
|
|
525
|
-
font-weight:
|
|
396
|
+
.novatx\:font-semibold {
|
|
397
|
+
--tw-font-weight: var(--novatx-font-weight-semibold);
|
|
398
|
+
font-weight: var(--novatx-font-weight-semibold);
|
|
526
399
|
}
|
|
527
|
-
.
|
|
528
|
-
--tw-font-weight: 600;
|
|
529
|
-
font-weight: 600;
|
|
530
|
-
}
|
|
531
|
-
.break-all {
|
|
400
|
+
.novatx\:break-all {
|
|
532
401
|
word-break: break-all;
|
|
533
402
|
}
|
|
534
|
-
.text-\[var\(--tuwa-error-icon\)\] {
|
|
403
|
+
.novatx\:text-\[var\(--tuwa-error-icon\)\] {
|
|
535
404
|
color: var(--tuwa-error-icon);
|
|
536
405
|
}
|
|
537
|
-
.text-\[var\(--tuwa-error-icon\)\]\/50 {
|
|
406
|
+
.novatx\:text-\[var\(--tuwa-error-icon\)\]\/50 {
|
|
538
407
|
color: var(--tuwa-error-icon);
|
|
539
408
|
@supports (color: color-mix(in lab, red, red)) {
|
|
540
|
-
|
|
409
|
+
& {
|
|
410
|
+
color: color-mix(in oklab, var(--tuwa-error-icon) 50%, transparent);
|
|
411
|
+
}
|
|
541
412
|
}
|
|
542
413
|
}
|
|
543
|
-
.text-\[var\(--tuwa-error-text\)\] {
|
|
414
|
+
.novatx\:text-\[var\(--tuwa-error-text\)\] {
|
|
544
415
|
color: var(--tuwa-error-text);
|
|
545
416
|
}
|
|
546
|
-
.text-\[var\(--tuwa-info-icon\)\] {
|
|
417
|
+
.novatx\:text-\[var\(--tuwa-info-icon\)\] {
|
|
547
418
|
color: var(--tuwa-info-icon);
|
|
548
419
|
}
|
|
549
|
-
.text-\[var\(--tuwa-info-text\)\] {
|
|
420
|
+
.novatx\:text-\[var\(--tuwa-info-text\)\] {
|
|
550
421
|
color: var(--tuwa-info-text);
|
|
551
422
|
}
|
|
552
|
-
.text-\[var\(--tuwa-pending-icon\)\] {
|
|
423
|
+
.novatx\:text-\[var\(--tuwa-pending-icon\)\] {
|
|
553
424
|
color: var(--tuwa-pending-icon);
|
|
554
425
|
}
|
|
555
|
-
.text-\[var\(--tuwa-pending-text\)\] {
|
|
426
|
+
.novatx\:text-\[var\(--tuwa-pending-text\)\] {
|
|
556
427
|
color: var(--tuwa-pending-text);
|
|
557
428
|
}
|
|
558
|
-
.text-\[var\(--tuwa-success-icon\)\] {
|
|
429
|
+
.novatx\:text-\[var\(--tuwa-success-icon\)\] {
|
|
559
430
|
color: var(--tuwa-success-icon);
|
|
560
431
|
}
|
|
561
|
-
.text-\[var\(--tuwa-success-text\)\] {
|
|
432
|
+
.novatx\:text-\[var\(--tuwa-success-text\)\] {
|
|
562
433
|
color: var(--tuwa-success-text);
|
|
563
434
|
}
|
|
564
|
-
.text-\[var\(--tuwa-text-accent\)\] {
|
|
435
|
+
.novatx\:text-\[var\(--tuwa-text-accent\)\] {
|
|
565
436
|
color: var(--tuwa-text-accent);
|
|
566
437
|
}
|
|
567
|
-
.text-\[var\(--tuwa-text-on-accent\)\] {
|
|
438
|
+
.novatx\:text-\[var\(--tuwa-text-on-accent\)\] {
|
|
568
439
|
color: var(--tuwa-text-on-accent);
|
|
569
440
|
}
|
|
570
|
-
.text-\[var\(--tuwa-text-primary\)\] {
|
|
441
|
+
.novatx\:text-\[var\(--tuwa-text-primary\)\] {
|
|
571
442
|
color: var(--tuwa-text-primary);
|
|
572
443
|
}
|
|
573
|
-
.text-\[var\(--tuwa-text-secondary\)\] {
|
|
444
|
+
.novatx\:text-\[var\(--tuwa-text-secondary\)\] {
|
|
574
445
|
color: var(--tuwa-text-secondary);
|
|
575
446
|
}
|
|
576
|
-
.text-\[var\(--tuwa-text-tertiary\)\] {
|
|
447
|
+
.novatx\:text-\[var\(--tuwa-text-tertiary\)\] {
|
|
577
448
|
color: var(--tuwa-text-tertiary);
|
|
578
449
|
}
|
|
579
|
-
.text-white {
|
|
580
|
-
color:
|
|
450
|
+
.novatx\:text-white {
|
|
451
|
+
color: var(--novatx-color-white);
|
|
581
452
|
}
|
|
582
|
-
|
|
453
|
+
.novatx\:\!shadow-none {
|
|
583
454
|
--tw-shadow: 0 0 #0000 !important;
|
|
584
455
|
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
456
|
}
|
|
586
|
-
.shadow-
|
|
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
|
-
.shadow-lg {
|
|
457
|
+
.novatx\:shadow-lg {
|
|
591
458
|
--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
459
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
593
460
|
}
|
|
594
|
-
.shadow-md {
|
|
461
|
+
.novatx\:shadow-md {
|
|
595
462
|
--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
463
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
597
464
|
}
|
|
598
|
-
.
|
|
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
|
-
.outline {
|
|
603
|
-
outline-style: var(--tw-outline-style);
|
|
604
|
-
outline-width: 1px;
|
|
605
|
-
}
|
|
606
|
-
.transition {
|
|
607
|
-
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;
|
|
608
|
-
transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1));
|
|
609
|
-
transition-duration: var(--tw-duration, 150ms);
|
|
610
|
-
}
|
|
611
|
-
.transition-all {
|
|
465
|
+
.novatx\:transition-all {
|
|
612
466
|
transition-property: all;
|
|
613
|
-
transition-timing-function: var(--tw-ease,
|
|
614
|
-
transition-duration: var(--tw-duration,
|
|
467
|
+
transition-timing-function: var(--tw-ease, var(--novatx-default-transition-timing-function));
|
|
468
|
+
transition-duration: var(--tw-duration, var(--novatx-default-transition-duration));
|
|
615
469
|
}
|
|
616
|
-
.transition-colors {
|
|
470
|
+
.novatx\:transition-colors {
|
|
617
471
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
618
|
-
transition-timing-function: var(--tw-ease,
|
|
619
|
-
transition-duration: var(--tw-duration,
|
|
472
|
+
transition-timing-function: var(--tw-ease, var(--novatx-default-transition-timing-function));
|
|
473
|
+
transition-duration: var(--tw-duration, var(--novatx-default-transition-duration));
|
|
620
474
|
}
|
|
621
|
-
.transition-opacity {
|
|
475
|
+
.novatx\:transition-opacity {
|
|
622
476
|
transition-property: opacity;
|
|
623
|
-
transition-timing-function: var(--tw-ease,
|
|
624
|
-
transition-duration: var(--tw-duration,
|
|
477
|
+
transition-timing-function: var(--tw-ease, var(--novatx-default-transition-timing-function));
|
|
478
|
+
transition-duration: var(--tw-duration, var(--novatx-default-transition-duration));
|
|
625
479
|
}
|
|
626
|
-
.duration-200 {
|
|
480
|
+
.novatx\:duration-200 {
|
|
627
481
|
--tw-duration: 200ms;
|
|
628
482
|
transition-duration: 200ms;
|
|
629
483
|
}
|
|
630
|
-
.ease-in-out {
|
|
631
|
-
--tw-ease:
|
|
632
|
-
transition-timing-function:
|
|
633
|
-
}
|
|
634
|
-
.outline-none {
|
|
635
|
-
--tw-outline-style: none;
|
|
636
|
-
outline-style: none;
|
|
484
|
+
.novatx\:ease-in-out {
|
|
485
|
+
--tw-ease: var(--novatx-ease-in-out);
|
|
486
|
+
transition-timing-function: var(--novatx-ease-in-out);
|
|
637
487
|
}
|
|
638
|
-
.hover\:bg-\[var\(--tuwa-bg-muted\)\] {
|
|
488
|
+
.novatx\:hover\:bg-\[var\(--tuwa-bg-muted\)\] {
|
|
639
489
|
&:hover {
|
|
640
490
|
@media (hover: hover) {
|
|
641
491
|
background-color: var(--tuwa-bg-muted);
|
|
642
492
|
}
|
|
643
493
|
}
|
|
644
494
|
}
|
|
645
|
-
.hover\:bg-\[var\(--tuwa-bg-secondary\)\] {
|
|
495
|
+
.novatx\:hover\:bg-\[var\(--tuwa-bg-secondary\)\] {
|
|
646
496
|
&:hover {
|
|
647
497
|
@media (hover: hover) {
|
|
648
498
|
background-color: var(--tuwa-bg-secondary);
|
|
649
499
|
}
|
|
650
500
|
}
|
|
651
501
|
}
|
|
652
|
-
.hover\:bg-\[var\(--tuwa-border-primary\)\] {
|
|
502
|
+
.novatx\:hover\:bg-\[var\(--tuwa-border-primary\)\] {
|
|
653
503
|
&:hover {
|
|
654
504
|
@media (hover: hover) {
|
|
655
505
|
background-color: var(--tuwa-border-primary);
|
|
656
506
|
}
|
|
657
507
|
}
|
|
658
508
|
}
|
|
659
|
-
.hover\:from-\[var\(--tuwa-button-gradient-from-hover\)\] {
|
|
509
|
+
.novatx\:hover\:from-\[var\(--tuwa-button-gradient-from-hover\)\] {
|
|
660
510
|
&:hover {
|
|
661
511
|
@media (hover: hover) {
|
|
662
512
|
--tw-gradient-from: var(--tuwa-button-gradient-from-hover);
|
|
@@ -664,7 +514,7 @@
|
|
|
664
514
|
}
|
|
665
515
|
}
|
|
666
516
|
}
|
|
667
|
-
.hover\:to-\[var\(--tuwa-button-gradient-to-hover\)\] {
|
|
517
|
+
.novatx\:hover\:to-\[var\(--tuwa-button-gradient-to-hover\)\] {
|
|
668
518
|
&:hover {
|
|
669
519
|
@media (hover: hover) {
|
|
670
520
|
--tw-gradient-to: var(--tuwa-button-gradient-to-hover);
|
|
@@ -672,56 +522,49 @@
|
|
|
672
522
|
}
|
|
673
523
|
}
|
|
674
524
|
}
|
|
675
|
-
.hover\:text-\[var\(--tuwa-error-icon\)\] {
|
|
525
|
+
.novatx\:hover\:text-\[var\(--tuwa-error-icon\)\] {
|
|
676
526
|
&:hover {
|
|
677
527
|
@media (hover: hover) {
|
|
678
528
|
color: var(--tuwa-error-icon);
|
|
679
529
|
}
|
|
680
530
|
}
|
|
681
531
|
}
|
|
682
|
-
.hover\:text-\[var\(--tuwa-text-
|
|
683
|
-
&:hover {
|
|
684
|
-
@media (hover: hover) {
|
|
685
|
-
color: var(--tuwa-text-accent);
|
|
686
|
-
}
|
|
687
|
-
}
|
|
688
|
-
}
|
|
689
|
-
.hover\:text-\[var\(--tuwa-text-primary\)\] {
|
|
532
|
+
.novatx\:hover\:text-\[var\(--tuwa-text-primary\)\] {
|
|
690
533
|
&:hover {
|
|
691
534
|
@media (hover: hover) {
|
|
692
535
|
color: var(--tuwa-text-primary);
|
|
693
536
|
}
|
|
694
537
|
}
|
|
695
538
|
}
|
|
696
|
-
.hover\:text-\[var\(--tuwa-text-secondary\)\] {
|
|
539
|
+
.novatx\:hover\:text-\[var\(--tuwa-text-secondary\)\] {
|
|
697
540
|
&:hover {
|
|
698
541
|
@media (hover: hover) {
|
|
699
542
|
color: var(--tuwa-text-secondary);
|
|
700
543
|
}
|
|
701
544
|
}
|
|
702
545
|
}
|
|
703
|
-
.hover\:underline {
|
|
546
|
+
.novatx\:hover\:underline {
|
|
704
547
|
&:hover {
|
|
705
548
|
@media (hover: hover) {
|
|
706
549
|
text-decoration-line: underline;
|
|
707
550
|
}
|
|
708
551
|
}
|
|
709
552
|
}
|
|
710
|
-
.hover\:opacity-80 {
|
|
553
|
+
.novatx\:hover\:opacity-80 {
|
|
711
554
|
&:hover {
|
|
712
555
|
@media (hover: hover) {
|
|
713
556
|
opacity: 80%;
|
|
714
557
|
}
|
|
715
558
|
}
|
|
716
559
|
}
|
|
717
|
-
.hover\:opacity-90 {
|
|
560
|
+
.novatx\:hover\:opacity-90 {
|
|
718
561
|
&:hover {
|
|
719
562
|
@media (hover: hover) {
|
|
720
563
|
opacity: 90%;
|
|
721
564
|
}
|
|
722
565
|
}
|
|
723
566
|
}
|
|
724
|
-
.hover\:shadow-xl {
|
|
567
|
+
.novatx\:hover\:shadow-xl {
|
|
725
568
|
&:hover {
|
|
726
569
|
@media (hover: hover) {
|
|
727
570
|
--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));
|
|
@@ -729,7 +572,7 @@
|
|
|
729
572
|
}
|
|
730
573
|
}
|
|
731
574
|
}
|
|
732
|
-
.active\:scale-95 {
|
|
575
|
+
.novatx\:active\:scale-95 {
|
|
733
576
|
&:active {
|
|
734
577
|
--tw-scale-x: 95%;
|
|
735
578
|
--tw-scale-y: 95%;
|
|
@@ -737,105 +580,36 @@
|
|
|
737
580
|
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
738
581
|
}
|
|
739
582
|
}
|
|
740
|
-
.disabled\:cursor-not-allowed {
|
|
583
|
+
.novatx\:disabled\:cursor-not-allowed {
|
|
741
584
|
&:disabled {
|
|
742
585
|
cursor: not-allowed;
|
|
743
586
|
}
|
|
744
587
|
}
|
|
745
|
-
.disabled\:opacity-50 {
|
|
588
|
+
.novatx\:disabled\:opacity-50 {
|
|
746
589
|
&:disabled {
|
|
747
590
|
opacity: 50%;
|
|
748
591
|
}
|
|
749
592
|
}
|
|
750
|
-
.disabled\:opacity-70 {
|
|
593
|
+
.novatx\:disabled\:opacity-70 {
|
|
751
594
|
&:disabled {
|
|
752
595
|
opacity: 70%;
|
|
753
596
|
}
|
|
754
597
|
}
|
|
755
|
-
.sm\:
|
|
598
|
+
.novatx\:sm\:max-w-2xl {
|
|
756
599
|
@media (width >= 40rem) {
|
|
757
|
-
|
|
600
|
+
max-width: var(--novatx-container-2xl);
|
|
758
601
|
}
|
|
759
602
|
}
|
|
760
|
-
.sm\:
|
|
603
|
+
.novatx\:sm\:max-w-md {
|
|
761
604
|
@media (width >= 40rem) {
|
|
762
|
-
|
|
605
|
+
max-width: var(--novatx-container-md);
|
|
606
|
+
}
|
|
607
|
+
}
|
|
608
|
+
.novatx\:sm\:rounded-md {
|
|
609
|
+
@media (width >= 40rem) {
|
|
610
|
+
border-radius: var(--novatx-radius-md);
|
|
763
611
|
}
|
|
764
612
|
}
|
|
765
|
-
}
|
|
766
|
-
:root {
|
|
767
|
-
--tuwa-success-bg: oklch(96.2% 0.044 156.743);
|
|
768
|
-
--tuwa-success-text: oklch(52.7% 0.154 150.069);
|
|
769
|
-
--tuwa-success-icon: oklch(72.3% 0.219 149.579);
|
|
770
|
-
--tuwa-error-bg: oklch(93.6% 0.032 17.717);
|
|
771
|
-
--tuwa-error-text: oklch(50.5% 0.213 27.518);
|
|
772
|
-
--tuwa-error-icon: oklch(63.7% 0.237 25.331);
|
|
773
|
-
--tuwa-pending-bg: oklch(97.3% 0.071 103.193);
|
|
774
|
-
--tuwa-pending-text: oklch(47.6% 0.114 61.907);
|
|
775
|
-
--tuwa-pending-icon: oklch(68.1% 0.162 75.834);
|
|
776
|
-
--tuwa-info-bg: oklch(96.7% 0.003 264.542);
|
|
777
|
-
--tuwa-info-text: oklch(44.6% 0.03 256.802);
|
|
778
|
-
--tuwa-info-icon: oklch(55.1% 0.027 264.364);
|
|
779
|
-
--tuwa-text-primary: oklch(21% 0.034 264.665);
|
|
780
|
-
--tuwa-text-secondary: oklch(55.1% 0.027 264.364);
|
|
781
|
-
--tuwa-text-tertiary: oklch(70.7% 0.022 261.325);
|
|
782
|
-
--tuwa-text-accent: oklch(54.6% 0.245 262.881);
|
|
783
|
-
--tuwa-text-on-accent: #fff;
|
|
784
|
-
--tuwa-bg-primary: #fff;
|
|
785
|
-
--tuwa-bg-secondary: oklch(98.5% 0.002 247.839);
|
|
786
|
-
--tuwa-bg-muted: oklch(96.7% 0.003 264.542);
|
|
787
|
-
--tuwa-border-primary: oklch(92.8% 0.006 264.531);
|
|
788
|
-
--tuwa-border-secondary: oklch(96.7% 0.003 264.542);
|
|
789
|
-
--tuwa-button-gradient-from: oklch(54.6% 0.245 262.881);
|
|
790
|
-
--tuwa-button-gradient-to: oklch(55.8% 0.288 302.321);
|
|
791
|
-
--tuwa-button-gradient-from-hover: oklch(48.8% 0.243 264.376);
|
|
792
|
-
--tuwa-button-gradient-to-hover: oklch(49.6% 0.265 301.924);
|
|
793
|
-
}
|
|
794
|
-
.dark {
|
|
795
|
-
--tuwa-success-bg: oklch(39.3% 0.095 152.535);
|
|
796
|
-
--tuwa-success-text: oklch(87.1% 0.15 154.449);
|
|
797
|
-
--tuwa-success-icon: oklch(79.2% 0.209 151.711);
|
|
798
|
-
--tuwa-error-bg: oklch(39.6% 0.141 25.723);
|
|
799
|
-
--tuwa-error-text: oklch(80.8% 0.114 19.571);
|
|
800
|
-
--tuwa-error-icon: oklch(70.4% 0.191 22.216);
|
|
801
|
-
--tuwa-pending-bg: oklch(42.1% 0.095 57.708);
|
|
802
|
-
--tuwa-pending-text: oklch(90.5% 0.182 98.111);
|
|
803
|
-
--tuwa-pending-icon: oklch(85.2% 0.199 91.936);
|
|
804
|
-
--tuwa-info-bg: oklch(37.3% 0.034 259.733);
|
|
805
|
-
--tuwa-info-text: oklch(87.2% 0.01 258.338);
|
|
806
|
-
--tuwa-info-icon: oklch(70.7% 0.022 261.325);
|
|
807
|
-
--tuwa-text-primary: oklch(98.5% 0.002 247.839);
|
|
808
|
-
--tuwa-text-secondary: oklch(70.7% 0.022 261.325);
|
|
809
|
-
--tuwa-text-tertiary: oklch(55.1% 0.027 264.364);
|
|
810
|
-
--tuwa-text-accent: oklch(70.7% 0.165 254.624);
|
|
811
|
-
--tuwa-text-on-accent: #fff;
|
|
812
|
-
--tuwa-bg-primary: oklch(21% 0.034 264.665);
|
|
813
|
-
--tuwa-bg-secondary: oklch(27.8% 0.033 256.848);
|
|
814
|
-
--tuwa-bg-muted: oklch(37.3% 0.034 259.733);
|
|
815
|
-
--tuwa-border-primary: oklch(37.3% 0.034 259.733);
|
|
816
|
-
--tuwa-border-secondary: oklch(27.8% 0.033 256.848);
|
|
817
|
-
--tuwa-button-gradient-from: oklch(62.3% 0.214 259.815);
|
|
818
|
-
--tuwa-button-gradient-to: oklch(62.7% 0.265 303.9);
|
|
819
|
-
--tuwa-button-gradient-from-hover: oklch(54.6% 0.245 262.881);
|
|
820
|
-
--tuwa-button-gradient-to-hover: oklch(55.8% 0.288 302.321);
|
|
821
|
-
}
|
|
822
|
-
.Toastify {
|
|
823
|
-
pointer-events: auto;
|
|
824
|
-
}
|
|
825
|
-
@property --tw-translate-x {
|
|
826
|
-
syntax: "*";
|
|
827
|
-
inherits: false;
|
|
828
|
-
initial-value: 0;
|
|
829
|
-
}
|
|
830
|
-
@property --tw-translate-y {
|
|
831
|
-
syntax: "*";
|
|
832
|
-
inherits: false;
|
|
833
|
-
initial-value: 0;
|
|
834
|
-
}
|
|
835
|
-
@property --tw-translate-z {
|
|
836
|
-
syntax: "*";
|
|
837
|
-
inherits: false;
|
|
838
|
-
initial-value: 0;
|
|
839
613
|
}
|
|
840
614
|
@property --tw-border-style {
|
|
841
615
|
syntax: "*";
|
|
@@ -953,11 +727,6 @@
|
|
|
953
727
|
inherits: false;
|
|
954
728
|
initial-value: 0 0 #0000;
|
|
955
729
|
}
|
|
956
|
-
@property --tw-outline-style {
|
|
957
|
-
syntax: "*";
|
|
958
|
-
inherits: false;
|
|
959
|
-
initial-value: solid;
|
|
960
|
-
}
|
|
961
730
|
@property --tw-duration {
|
|
962
731
|
syntax: "*";
|
|
963
732
|
inherits: false;
|
|
@@ -994,9 +763,6 @@
|
|
|
994
763
|
@layer properties {
|
|
995
764
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
996
765
|
*, ::before, ::after, ::backdrop {
|
|
997
|
-
--tw-translate-x: 0;
|
|
998
|
-
--tw-translate-y: 0;
|
|
999
|
-
--tw-translate-z: 0;
|
|
1000
766
|
--tw-border-style: solid;
|
|
1001
767
|
--tw-gradient-position: initial;
|
|
1002
768
|
--tw-gradient-from: #0000;
|
|
@@ -1022,7 +788,6 @@
|
|
|
1022
788
|
--tw-ring-offset-width: 0px;
|
|
1023
789
|
--tw-ring-offset-color: #fff;
|
|
1024
790
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1025
|
-
--tw-outline-style: solid;
|
|
1026
791
|
--tw-duration: initial;
|
|
1027
792
|
--tw-ease: initial;
|
|
1028
793
|
--tw-scale-x: 1;
|
|
@@ -1030,4 +795,4 @@
|
|
|
1030
795
|
--tw-scale-z: 1;
|
|
1031
796
|
}
|
|
1032
797
|
}
|
|
1033
|
-
}
|
|
798
|
+
}
|