@tuwaio/nova-transactions 1.0.0-fix-integrate-orbit-alpha.27.5a66ae1 → 1.0.0-fix-integrate-orbit-alpha.29.3fe83b3
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/{TransactionsInfoModal-BPOe6aUa.d.cts → TransactionsInfoModal-6RO18o9e.d.cts} +13 -13
- package/dist/{TransactionsInfoModal-BPOe6aUa.d.ts → TransactionsInfoModal-6RO18o9e.d.ts} +13 -13
- package/dist/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +113 -598
- package/dist/index.d.cts +4 -23
- package/dist/index.d.ts +4 -23
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/providers/index.cjs +7 -7
- package/dist/providers/index.cjs.map +1 -1
- package/dist/providers/index.d.cts +9 -9
- package/dist/providers/index.d.ts +9 -9
- package/dist/providers/index.js +7 -7
- package/dist/providers/index.js.map +1 -1
- package/package.json +12 -14
package/dist/index.css
CHANGED
|
@@ -1,6 +1,34 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.
|
|
1
|
+
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
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);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
4
32
|
@layer utilities {
|
|
5
33
|
.novatx\:absolute {
|
|
6
34
|
position: absolute;
|
|
@@ -8,35 +36,29 @@
|
|
|
8
36
|
.novatx\:relative {
|
|
9
37
|
position: relative;
|
|
10
38
|
}
|
|
11
|
-
.novatx\:top-2 {
|
|
12
|
-
top: calc(0.25rem * 2);
|
|
13
|
-
}
|
|
14
39
|
.novatx\:top-\[10px\] {
|
|
15
40
|
top: 10px;
|
|
16
41
|
}
|
|
17
42
|
.novatx\:right-1\/2 {
|
|
18
43
|
right: calc(1/2 * 100%);
|
|
19
44
|
}
|
|
20
|
-
.novatx\:right-2 {
|
|
21
|
-
right: calc(0.25rem * 2);
|
|
22
|
-
}
|
|
23
45
|
.novatx\:z-10 {
|
|
24
46
|
z-index: 10;
|
|
25
47
|
}
|
|
26
48
|
.novatx\:mt-1 {
|
|
27
|
-
margin-top: calc(
|
|
49
|
+
margin-top: calc(var(--novatx-spacing) * 1);
|
|
28
50
|
}
|
|
29
51
|
.novatx\:mt-2 {
|
|
30
|
-
margin-top: calc(
|
|
52
|
+
margin-top: calc(var(--novatx-spacing) * 2);
|
|
31
53
|
}
|
|
32
54
|
.novatx\:mt-3 {
|
|
33
|
-
margin-top: calc(
|
|
55
|
+
margin-top: calc(var(--novatx-spacing) * 3);
|
|
34
56
|
}
|
|
35
57
|
.novatx\:mb-1 {
|
|
36
|
-
margin-bottom: calc(
|
|
58
|
+
margin-bottom: calc(var(--novatx-spacing) * 1);
|
|
37
59
|
}
|
|
38
60
|
.novatx\:mb-2 {
|
|
39
|
-
margin-bottom: calc(
|
|
61
|
+
margin-bottom: calc(var(--novatx-spacing) * 2);
|
|
40
62
|
}
|
|
41
63
|
.novatx\:block {
|
|
42
64
|
display: block;
|
|
@@ -48,31 +70,31 @@
|
|
|
48
70
|
display: inline-flex;
|
|
49
71
|
}
|
|
50
72
|
.novatx\:h-0\.5 {
|
|
51
|
-
height: calc(
|
|
73
|
+
height: calc(var(--novatx-spacing) * 0.5);
|
|
52
74
|
}
|
|
53
75
|
.novatx\:h-2 {
|
|
54
|
-
height: calc(
|
|
76
|
+
height: calc(var(--novatx-spacing) * 2);
|
|
55
77
|
}
|
|
56
78
|
.novatx\:h-3 {
|
|
57
|
-
height: calc(
|
|
79
|
+
height: calc(var(--novatx-spacing) * 3);
|
|
58
80
|
}
|
|
59
81
|
.novatx\:h-4 {
|
|
60
|
-
height: calc(
|
|
82
|
+
height: calc(var(--novatx-spacing) * 4);
|
|
61
83
|
}
|
|
62
84
|
.novatx\:h-5 {
|
|
63
|
-
height: calc(
|
|
85
|
+
height: calc(var(--novatx-spacing) * 5);
|
|
64
86
|
}
|
|
65
87
|
.novatx\:h-8 {
|
|
66
|
-
height: calc(
|
|
88
|
+
height: calc(var(--novatx-spacing) * 8);
|
|
67
89
|
}
|
|
68
90
|
.novatx\:h-10 {
|
|
69
|
-
height: calc(
|
|
91
|
+
height: calc(var(--novatx-spacing) * 10);
|
|
70
92
|
}
|
|
71
93
|
.novatx\:h-16 {
|
|
72
|
-
height: calc(
|
|
94
|
+
height: calc(var(--novatx-spacing) * 16);
|
|
73
95
|
}
|
|
74
96
|
.novatx\:max-h-24 {
|
|
75
|
-
max-height: calc(
|
|
97
|
+
max-height: calc(var(--novatx-spacing) * 24);
|
|
76
98
|
}
|
|
77
99
|
.novatx\:max-h-\[95dvh\] {
|
|
78
100
|
max-height: 95dvh;
|
|
@@ -81,28 +103,28 @@
|
|
|
81
103
|
max-height: 400px;
|
|
82
104
|
}
|
|
83
105
|
.novatx\:\!min-h-0 {
|
|
84
|
-
min-height: calc(
|
|
106
|
+
min-height: calc(var(--novatx-spacing) * 0) !important;
|
|
85
107
|
}
|
|
86
108
|
.novatx\:w-2 {
|
|
87
|
-
width: calc(
|
|
109
|
+
width: calc(var(--novatx-spacing) * 2);
|
|
88
110
|
}
|
|
89
111
|
.novatx\:w-3 {
|
|
90
|
-
width: calc(
|
|
112
|
+
width: calc(var(--novatx-spacing) * 3);
|
|
91
113
|
}
|
|
92
114
|
.novatx\:w-4 {
|
|
93
|
-
width: calc(
|
|
115
|
+
width: calc(var(--novatx-spacing) * 4);
|
|
94
116
|
}
|
|
95
117
|
.novatx\:w-5 {
|
|
96
|
-
width: calc(
|
|
118
|
+
width: calc(var(--novatx-spacing) * 5);
|
|
97
119
|
}
|
|
98
120
|
.novatx\:w-8 {
|
|
99
|
-
width: calc(
|
|
121
|
+
width: calc(var(--novatx-spacing) * 8);
|
|
100
122
|
}
|
|
101
123
|
.novatx\:w-10 {
|
|
102
|
-
width: calc(
|
|
124
|
+
width: calc(var(--novatx-spacing) * 10);
|
|
103
125
|
}
|
|
104
126
|
.novatx\:w-16 {
|
|
105
|
-
width: calc(
|
|
127
|
+
width: calc(var(--novatx-spacing) * 16);
|
|
106
128
|
}
|
|
107
129
|
.novatx\:w-\[40px\] {
|
|
108
130
|
width: 40px;
|
|
@@ -120,10 +142,10 @@
|
|
|
120
142
|
flex-shrink: 0;
|
|
121
143
|
}
|
|
122
144
|
.novatx\:animate-pulse {
|
|
123
|
-
animation: pulse
|
|
145
|
+
animation: var(--novatx-animate-pulse);
|
|
124
146
|
}
|
|
125
147
|
.novatx\:animate-spin {
|
|
126
|
-
animation: spin
|
|
148
|
+
animation: var(--novatx-animate-spin);
|
|
127
149
|
}
|
|
128
150
|
.novatx\:cursor-pointer {
|
|
129
151
|
cursor: pointer;
|
|
@@ -147,34 +169,34 @@
|
|
|
147
169
|
justify-content: flex-end;
|
|
148
170
|
}
|
|
149
171
|
.novatx\:gap-1\.5 {
|
|
150
|
-
gap: calc(
|
|
172
|
+
gap: calc(var(--novatx-spacing) * 1.5);
|
|
151
173
|
}
|
|
152
174
|
.novatx\:gap-2 {
|
|
153
|
-
gap: calc(
|
|
175
|
+
gap: calc(var(--novatx-spacing) * 2);
|
|
154
176
|
}
|
|
155
177
|
.novatx\:gap-3 {
|
|
156
|
-
gap: calc(
|
|
178
|
+
gap: calc(var(--novatx-spacing) * 3);
|
|
157
179
|
}
|
|
158
180
|
.novatx\:gap-4 {
|
|
159
|
-
gap: calc(
|
|
181
|
+
gap: calc(var(--novatx-spacing) * 4);
|
|
160
182
|
}
|
|
161
183
|
.novatx\:gap-x-1 {
|
|
162
|
-
-moz-column-gap: calc(
|
|
163
|
-
column-gap: calc(
|
|
184
|
+
-moz-column-gap: calc(var(--novatx-spacing) * 1);
|
|
185
|
+
column-gap: calc(var(--novatx-spacing) * 1);
|
|
164
186
|
}
|
|
165
187
|
.novatx\:gap-x-1\.5 {
|
|
166
|
-
-moz-column-gap: calc(
|
|
167
|
-
column-gap: calc(
|
|
188
|
+
-moz-column-gap: calc(var(--novatx-spacing) * 1.5);
|
|
189
|
+
column-gap: calc(var(--novatx-spacing) * 1.5);
|
|
168
190
|
}
|
|
169
191
|
.novatx\:gap-x-2 {
|
|
170
|
-
-moz-column-gap: calc(
|
|
171
|
-
column-gap: calc(
|
|
192
|
+
-moz-column-gap: calc(var(--novatx-spacing) * 2);
|
|
193
|
+
column-gap: calc(var(--novatx-spacing) * 2);
|
|
172
194
|
}
|
|
173
195
|
.novatx\:gap-y-2 {
|
|
174
|
-
row-gap: calc(
|
|
196
|
+
row-gap: calc(var(--novatx-spacing) * 2);
|
|
175
197
|
}
|
|
176
198
|
.novatx\:gap-y-3 {
|
|
177
|
-
row-gap: calc(
|
|
199
|
+
row-gap: calc(var(--novatx-spacing) * 3);
|
|
178
200
|
}
|
|
179
201
|
.novatx\:overflow-y-auto {
|
|
180
202
|
overflow-y: auto;
|
|
@@ -186,14 +208,14 @@
|
|
|
186
208
|
border-radius: calc(infinity * 1px);
|
|
187
209
|
}
|
|
188
210
|
.novatx\:rounded-lg {
|
|
189
|
-
border-radius:
|
|
211
|
+
border-radius: var(--novatx-radius-lg);
|
|
190
212
|
}
|
|
191
213
|
.novatx\:rounded-md {
|
|
192
|
-
border-radius:
|
|
214
|
+
border-radius: var(--novatx-radius-md);
|
|
193
215
|
}
|
|
194
216
|
.novatx\:rounded-t-md {
|
|
195
|
-
border-top-left-radius:
|
|
196
|
-
border-top-right-radius:
|
|
217
|
+
border-top-left-radius: var(--novatx-radius-md);
|
|
218
|
+
border-top-right-radius: var(--novatx-radius-md);
|
|
197
219
|
}
|
|
198
220
|
.novatx\:border {
|
|
199
221
|
border-style: var(--tw-border-style);
|
|
@@ -272,10 +294,10 @@
|
|
|
272
294
|
background-color: var(--tuwa-success-icon);
|
|
273
295
|
}
|
|
274
296
|
.novatx\:bg-gray-400 {
|
|
275
|
-
background-color:
|
|
297
|
+
background-color: var(--novatx-color-gray-400);
|
|
276
298
|
}
|
|
277
299
|
.novatx\:bg-gray-500 {
|
|
278
|
-
background-color:
|
|
300
|
+
background-color: var(--novatx-color-gray-500);
|
|
279
301
|
}
|
|
280
302
|
.novatx\:bg-transparent {
|
|
281
303
|
background-color: transparent;
|
|
@@ -293,86 +315,85 @@
|
|
|
293
315
|
--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));
|
|
294
316
|
}
|
|
295
317
|
.novatx\:\!p-0 {
|
|
296
|
-
padding: calc(
|
|
318
|
+
padding: calc(var(--novatx-spacing) * 0) !important;
|
|
297
319
|
}
|
|
298
320
|
.novatx\:p-1 {
|
|
299
|
-
padding: calc(
|
|
321
|
+
padding: calc(var(--novatx-spacing) * 1);
|
|
300
322
|
}
|
|
301
323
|
.novatx\:p-2 {
|
|
302
|
-
padding: calc(
|
|
324
|
+
padding: calc(var(--novatx-spacing) * 2);
|
|
303
325
|
}
|
|
304
326
|
.novatx\:p-3 {
|
|
305
|
-
padding: calc(
|
|
327
|
+
padding: calc(var(--novatx-spacing) * 3);
|
|
306
328
|
}
|
|
307
329
|
.novatx\:p-4 {
|
|
308
|
-
padding: calc(
|
|
330
|
+
padding: calc(var(--novatx-spacing) * 4);
|
|
309
331
|
}
|
|
310
332
|
.novatx\:p-8 {
|
|
311
|
-
padding: calc(
|
|
333
|
+
padding: calc(var(--novatx-spacing) * 8);
|
|
312
334
|
}
|
|
313
335
|
.novatx\:px-2 {
|
|
314
|
-
padding-inline: calc(
|
|
336
|
+
padding-inline: calc(var(--novatx-spacing) * 2);
|
|
315
337
|
}
|
|
316
338
|
.novatx\:px-3 {
|
|
317
|
-
padding-inline: calc(
|
|
339
|
+
padding-inline: calc(var(--novatx-spacing) * 3);
|
|
318
340
|
}
|
|
319
341
|
.novatx\:px-4 {
|
|
320
|
-
padding-inline: calc(
|
|
342
|
+
padding-inline: calc(var(--novatx-spacing) * 4);
|
|
321
343
|
}
|
|
322
344
|
.novatx\:py-1 {
|
|
323
|
-
padding-block: calc(
|
|
345
|
+
padding-block: calc(var(--novatx-spacing) * 1);
|
|
324
346
|
}
|
|
325
347
|
.novatx\:py-1\.5 {
|
|
326
|
-
padding-block: calc(
|
|
348
|
+
padding-block: calc(var(--novatx-spacing) * 1.5);
|
|
327
349
|
}
|
|
328
350
|
.novatx\:py-2 {
|
|
329
|
-
padding-block: calc(
|
|
351
|
+
padding-block: calc(var(--novatx-spacing) * 2);
|
|
330
352
|
}
|
|
331
353
|
.novatx\:py-4 {
|
|
332
|
-
padding-block: calc(
|
|
354
|
+
padding-block: calc(var(--novatx-spacing) * 4);
|
|
333
355
|
}
|
|
334
356
|
.novatx\:pt-2 {
|
|
335
|
-
padding-top: calc(
|
|
357
|
+
padding-top: calc(var(--novatx-spacing) * 2);
|
|
336
358
|
}
|
|
337
359
|
.novatx\:pt-3 {
|
|
338
|
-
padding-top: calc(
|
|
360
|
+
padding-top: calc(var(--novatx-spacing) * 3);
|
|
339
361
|
}
|
|
340
362
|
.novatx\:pr-1 {
|
|
341
|
-
padding-right: calc(
|
|
363
|
+
padding-right: calc(var(--novatx-spacing) * 1);
|
|
342
364
|
}
|
|
343
365
|
.novatx\:pb-1 {
|
|
344
|
-
padding-bottom: calc(
|
|
366
|
+
padding-bottom: calc(var(--novatx-spacing) * 1);
|
|
345
367
|
}
|
|
346
368
|
.novatx\:text-center {
|
|
347
369
|
text-align: center;
|
|
348
370
|
}
|
|
349
371
|
.novatx\:font-mono {
|
|
350
|
-
font-family:
|
|
351
|
-
monospace;
|
|
372
|
+
font-family: var(--novatx-font-mono);
|
|
352
373
|
}
|
|
353
374
|
.novatx\:text-lg {
|
|
354
|
-
font-size:
|
|
355
|
-
line-height: var(--tw-leading,
|
|
375
|
+
font-size: var(--novatx-text-lg);
|
|
376
|
+
line-height: var(--tw-leading, var(--novatx-text-lg--line-height));
|
|
356
377
|
}
|
|
357
378
|
.novatx\:text-sm {
|
|
358
|
-
font-size:
|
|
359
|
-
line-height: var(--tw-leading,
|
|
379
|
+
font-size: var(--novatx-text-sm);
|
|
380
|
+
line-height: var(--tw-leading, var(--novatx-text-sm--line-height));
|
|
360
381
|
}
|
|
361
382
|
.novatx\:text-xs {
|
|
362
|
-
font-size:
|
|
363
|
-
line-height: var(--tw-leading,
|
|
383
|
+
font-size: var(--novatx-text-xs);
|
|
384
|
+
line-height: var(--tw-leading, var(--novatx-text-xs--line-height));
|
|
364
385
|
}
|
|
365
386
|
.novatx\:font-bold {
|
|
366
|
-
--tw-font-weight:
|
|
367
|
-
font-weight:
|
|
387
|
+
--tw-font-weight: var(--novatx-font-weight-bold);
|
|
388
|
+
font-weight: var(--novatx-font-weight-bold);
|
|
368
389
|
}
|
|
369
390
|
.novatx\:font-medium {
|
|
370
|
-
--tw-font-weight:
|
|
371
|
-
font-weight:
|
|
391
|
+
--tw-font-weight: var(--novatx-font-weight-medium);
|
|
392
|
+
font-weight: var(--novatx-font-weight-medium);
|
|
372
393
|
}
|
|
373
394
|
.novatx\:font-semibold {
|
|
374
|
-
--tw-font-weight:
|
|
375
|
-
font-weight:
|
|
395
|
+
--tw-font-weight: var(--novatx-font-weight-semibold);
|
|
396
|
+
font-weight: var(--novatx-font-weight-semibold);
|
|
376
397
|
}
|
|
377
398
|
.novatx\:break-all {
|
|
378
399
|
word-break: break-all;
|
|
@@ -423,7 +444,7 @@
|
|
|
423
444
|
color: var(--tuwa-text-tertiary);
|
|
424
445
|
}
|
|
425
446
|
.novatx\:text-white {
|
|
426
|
-
color:
|
|
447
|
+
color: var(--novatx-color-white);
|
|
427
448
|
}
|
|
428
449
|
.novatx\:\!shadow-none {
|
|
429
450
|
--tw-shadow: 0 0 #0000 !important;
|
|
@@ -439,26 +460,26 @@
|
|
|
439
460
|
}
|
|
440
461
|
.novatx\:transition-all {
|
|
441
462
|
transition-property: all;
|
|
442
|
-
transition-timing-function: var(--tw-ease,
|
|
443
|
-
transition-duration: var(--tw-duration,
|
|
463
|
+
transition-timing-function: var(--tw-ease, var(--novatx-default-transition-timing-function));
|
|
464
|
+
transition-duration: var(--tw-duration, var(--novatx-default-transition-duration));
|
|
444
465
|
}
|
|
445
466
|
.novatx\:transition-colors {
|
|
446
467
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
447
|
-
transition-timing-function: var(--tw-ease,
|
|
448
|
-
transition-duration: var(--tw-duration,
|
|
468
|
+
transition-timing-function: var(--tw-ease, var(--novatx-default-transition-timing-function));
|
|
469
|
+
transition-duration: var(--tw-duration, var(--novatx-default-transition-duration));
|
|
449
470
|
}
|
|
450
471
|
.novatx\:transition-opacity {
|
|
451
472
|
transition-property: opacity;
|
|
452
|
-
transition-timing-function: var(--tw-ease,
|
|
453
|
-
transition-duration: var(--tw-duration,
|
|
473
|
+
transition-timing-function: var(--tw-ease, var(--novatx-default-transition-timing-function));
|
|
474
|
+
transition-duration: var(--tw-duration, var(--novatx-default-transition-duration));
|
|
454
475
|
}
|
|
455
476
|
.novatx\:duration-200 {
|
|
456
477
|
--tw-duration: 200ms;
|
|
457
478
|
transition-duration: 200ms;
|
|
458
479
|
}
|
|
459
480
|
.novatx\:ease-in-out {
|
|
460
|
-
--tw-ease:
|
|
461
|
-
transition-timing-function:
|
|
481
|
+
--tw-ease: var(--novatx-ease-in-out);
|
|
482
|
+
transition-timing-function: var(--novatx-ease-in-out);
|
|
462
483
|
}
|
|
463
484
|
.novatx\:hover\:bg-\[var\(--tuwa-bg-muted\)\] {
|
|
464
485
|
&:hover {
|
|
@@ -572,508 +593,17 @@
|
|
|
572
593
|
}
|
|
573
594
|
.novatx\:sm\:max-w-2xl {
|
|
574
595
|
@media (width >= 40rem) {
|
|
575
|
-
max-width:
|
|
596
|
+
max-width: var(--novatx-container-2xl);
|
|
576
597
|
}
|
|
577
598
|
}
|
|
578
599
|
.novatx\:sm\:max-w-md {
|
|
579
600
|
@media (width >= 40rem) {
|
|
580
|
-
max-width:
|
|
601
|
+
max-width: var(--novatx-container-md);
|
|
581
602
|
}
|
|
582
603
|
}
|
|
583
604
|
.novatx\:sm\:rounded-md {
|
|
584
605
|
@media (width >= 40rem) {
|
|
585
|
-
border-radius:
|
|
586
|
-
}
|
|
587
|
-
}
|
|
588
|
-
}
|
|
589
|
-
/*! tailwindcss v4.1.13 | MIT License | https://tailwindcss.com */
|
|
590
|
-
@layer properties;
|
|
591
|
-
@layer theme, base, components, utilities;
|
|
592
|
-
@layer theme {
|
|
593
|
-
:root, :host {
|
|
594
|
-
--novacore-color-black: #000;
|
|
595
|
-
--novacore-spacing: 0.25rem;
|
|
596
|
-
--novacore-text-sm: 0.875rem;
|
|
597
|
-
--novacore-text-sm--line-height: calc(1.25 / 0.875);
|
|
598
|
-
--novacore-text-lg: 1.125rem;
|
|
599
|
-
--novacore-text-lg--line-height: calc(1.75 / 1.125);
|
|
600
|
-
--novacore-font-weight-semibold: 600;
|
|
601
|
-
--novacore-font-weight-bold: 700;
|
|
602
|
-
--novacore-tracking-tight: -0.025em;
|
|
603
|
-
--novacore-radius-md: 0.375rem;
|
|
604
|
-
--novacore-radius-2xl: 1rem;
|
|
605
|
-
--novacore-blur-sm: 8px;
|
|
606
|
-
--novacore-default-transition-duration: 150ms;
|
|
607
|
-
--novacore-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
608
|
-
}
|
|
609
|
-
}
|
|
610
|
-
@layer utilities {
|
|
611
|
-
.novacore\:absolute {
|
|
612
|
-
position: absolute;
|
|
613
|
-
}
|
|
614
|
-
.novacore\:fixed {
|
|
615
|
-
position: fixed;
|
|
616
|
-
}
|
|
617
|
-
.novacore\:relative {
|
|
618
|
-
position: relative;
|
|
619
|
-
}
|
|
620
|
-
.novacore\:sticky {
|
|
621
|
-
position: sticky;
|
|
622
|
-
}
|
|
623
|
-
.novacore\:inset-0 {
|
|
624
|
-
inset: calc(var(--novacore-spacing) * 0);
|
|
625
|
-
}
|
|
626
|
-
.novacore\:top-0 {
|
|
627
|
-
top: calc(var(--novacore-spacing) * 0);
|
|
628
|
-
}
|
|
629
|
-
.novacore\:bottom-0 {
|
|
630
|
-
bottom: calc(var(--novacore-spacing) * 0);
|
|
631
|
-
}
|
|
632
|
-
.novacore\:left-0 {
|
|
633
|
-
left: calc(var(--novacore-spacing) * 0);
|
|
634
|
-
}
|
|
635
|
-
.novacore\:z-1 {
|
|
636
|
-
z-index: 1;
|
|
637
|
-
}
|
|
638
|
-
.novacore\:z-11 {
|
|
639
|
-
z-index: 11;
|
|
640
|
-
}
|
|
641
|
-
.novacore\:z-50 {
|
|
642
|
-
z-index: 50;
|
|
643
|
-
}
|
|
644
|
-
.novacore\:m-0 {
|
|
645
|
-
margin: calc(var(--novacore-spacing) * 0);
|
|
646
|
-
}
|
|
647
|
-
.novacore\:flex {
|
|
648
|
-
display: flex;
|
|
649
|
-
}
|
|
650
|
-
.novacore\:h-4 {
|
|
651
|
-
height: calc(var(--novacore-spacing) * 4);
|
|
652
|
-
}
|
|
653
|
-
.novacore\:h-5 {
|
|
654
|
-
height: calc(var(--novacore-spacing) * 5);
|
|
655
|
-
}
|
|
656
|
-
.novacore\:h-full {
|
|
657
|
-
height: 100%;
|
|
658
|
-
}
|
|
659
|
-
.novacore\:max-h-\[98dvh\] {
|
|
660
|
-
max-height: 98dvh;
|
|
661
|
-
}
|
|
662
|
-
.novacore\:w-4 {
|
|
663
|
-
width: calc(var(--novacore-spacing) * 4);
|
|
664
|
-
}
|
|
665
|
-
.novacore\:w-5 {
|
|
666
|
-
width: calc(var(--novacore-spacing) * 5);
|
|
667
|
-
}
|
|
668
|
-
.novacore\:w-full {
|
|
669
|
-
width: 100%;
|
|
670
|
-
}
|
|
671
|
-
.novacore\:cursor-pointer {
|
|
672
|
-
cursor: pointer;
|
|
673
|
-
}
|
|
674
|
-
.novacore\:flex-col {
|
|
675
|
-
flex-direction: column;
|
|
676
|
-
}
|
|
677
|
-
.novacore\:flex-col-reverse {
|
|
678
|
-
flex-direction: column-reverse;
|
|
679
|
-
}
|
|
680
|
-
.novacore\:flex-row {
|
|
681
|
-
flex-direction: row;
|
|
682
|
-
}
|
|
683
|
-
.novacore\:items-center {
|
|
684
|
-
align-items: center;
|
|
685
|
-
}
|
|
686
|
-
.novacore\:justify-between {
|
|
687
|
-
justify-content: space-between;
|
|
688
|
-
}
|
|
689
|
-
.novacore\:gap-1 {
|
|
690
|
-
gap: calc(var(--novacore-spacing) * 1);
|
|
691
|
-
}
|
|
692
|
-
.novacore\:gap-3 {
|
|
693
|
-
gap: calc(var(--novacore-spacing) * 3);
|
|
694
|
-
}
|
|
695
|
-
.novacore\:overflow-hidden {
|
|
696
|
-
overflow: hidden;
|
|
697
|
-
}
|
|
698
|
-
.novacore\:overflow-y-auto {
|
|
699
|
-
overflow-y: auto;
|
|
700
|
-
}
|
|
701
|
-
.novacore\:rounded-md {
|
|
702
|
-
border-radius: var(--novacore-radius-md);
|
|
703
|
-
}
|
|
704
|
-
.novacore\:rounded-t-2xl {
|
|
705
|
-
border-top-left-radius: var(--novacore-radius-2xl);
|
|
706
|
-
border-top-right-radius: var(--novacore-radius-2xl);
|
|
707
|
-
}
|
|
708
|
-
.novacore\:border {
|
|
709
|
-
border-style: var(--tw-border-style);
|
|
710
|
-
border-width: 1px;
|
|
711
|
-
}
|
|
712
|
-
.novacore\:border-b {
|
|
713
|
-
border-bottom-style: var(--tw-border-style);
|
|
714
|
-
border-bottom-width: 1px;
|
|
715
|
-
}
|
|
716
|
-
.novacore\:border-\[var\(--tuwa-border-primary\)\] {
|
|
717
|
-
border-color: var(--tuwa-border-primary);
|
|
718
|
-
}
|
|
719
|
-
.novacore\:bg-\[var\(--tuwa-bg-primary\)\] {
|
|
720
|
-
background-color: var(--tuwa-bg-primary);
|
|
721
|
-
}
|
|
722
|
-
.novacore\:bg-\[var\(--tuwa-standart-button-bg\)\] {
|
|
723
|
-
background-color: var(--tuwa-standart-button-bg);
|
|
724
|
-
}
|
|
725
|
-
.novacore\:bg-black\/55 {
|
|
726
|
-
background-color: var(--novacore-color-black);
|
|
727
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
728
|
-
background-color: var(--novacore-color-black);
|
|
729
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
730
|
-
background-color: color-mix(in oklab, var(--novacore-color-black) 55%, transparent);
|
|
731
|
-
}
|
|
732
|
-
}
|
|
733
|
-
}
|
|
734
|
-
.novacore\:p-0 {
|
|
735
|
-
padding: calc(var(--novacore-spacing) * 0);
|
|
736
|
-
}
|
|
737
|
-
.novacore\:p-4 {
|
|
738
|
-
padding: calc(var(--novacore-spacing) * 4);
|
|
739
|
-
}
|
|
740
|
-
.novacore\:px-3 {
|
|
741
|
-
padding-inline: calc(var(--novacore-spacing) * 3);
|
|
742
|
-
}
|
|
743
|
-
.novacore\:py-2 {
|
|
744
|
-
padding-block: calc(var(--novacore-spacing) * 2);
|
|
745
|
-
}
|
|
746
|
-
.novacore\:text-lg {
|
|
747
|
-
font-size: var(--novacore-text-lg);
|
|
748
|
-
line-height: var(--tw-leading, var(--novacore-text-lg--line-height));
|
|
749
|
-
}
|
|
750
|
-
.novacore\:text-sm {
|
|
751
|
-
font-size: var(--novacore-text-sm);
|
|
752
|
-
line-height: var(--tw-leading, var(--novacore-text-sm--line-height));
|
|
753
|
-
}
|
|
754
|
-
.novacore\:leading-none {
|
|
755
|
-
--tw-leading: 1;
|
|
756
|
-
line-height: 1;
|
|
757
|
-
}
|
|
758
|
-
.novacore\:font-bold {
|
|
759
|
-
--tw-font-weight: var(--novacore-font-weight-bold);
|
|
760
|
-
font-weight: var(--novacore-font-weight-bold);
|
|
761
|
-
}
|
|
762
|
-
.novacore\:font-semibold {
|
|
763
|
-
--tw-font-weight: var(--novacore-font-weight-semibold);
|
|
764
|
-
font-weight: var(--novacore-font-weight-semibold);
|
|
765
|
-
}
|
|
766
|
-
.novacore\:tracking-tight {
|
|
767
|
-
--tw-tracking: var(--novacore-tracking-tight);
|
|
768
|
-
letter-spacing: var(--novacore-tracking-tight);
|
|
769
|
-
}
|
|
770
|
-
.novacore\:text-\[var\(--tuwa-text-primary\)\] {
|
|
771
|
-
color: var(--tuwa-text-primary);
|
|
772
|
-
}
|
|
773
|
-
.novacore\:text-\[var\(--tuwa-text-secondary\)\] {
|
|
774
|
-
color: var(--tuwa-text-secondary);
|
|
775
|
-
}
|
|
776
|
-
.novacore\:shadow-2xl {
|
|
777
|
-
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
|
|
778
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
779
|
-
}
|
|
780
|
-
.novacore\:backdrop-blur-sm {
|
|
781
|
-
--tw-backdrop-blur: blur(var(--novacore-blur-sm));
|
|
782
|
-
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,);
|
|
783
|
-
}
|
|
784
|
-
.novacore\:backdrop-saturate-150 {
|
|
785
|
-
--tw-backdrop-saturate: saturate(150%);
|
|
786
|
-
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,);
|
|
787
|
-
}
|
|
788
|
-
.novacore\:transition-colors {
|
|
789
|
-
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
790
|
-
transition-timing-function: var(--tw-ease, var(--novacore-default-transition-timing-function));
|
|
791
|
-
transition-duration: var(--tw-duration, var(--novacore-default-transition-duration));
|
|
792
|
-
}
|
|
793
|
-
.novacore\:outline-none {
|
|
794
|
-
--tw-outline-style: none;
|
|
795
|
-
outline-style: none;
|
|
796
|
-
}
|
|
797
|
-
.novacore\:hover\:bg-\[var\(--tuwa-standart-button-hover\)\] {
|
|
798
|
-
&:hover {
|
|
799
|
-
@media (hover: hover) {
|
|
800
|
-
background-color: var(--tuwa-standart-button-hover);
|
|
801
|
-
}
|
|
802
|
-
}
|
|
803
|
-
}
|
|
804
|
-
.novacore\:disabled\:cursor-not-allowed {
|
|
805
|
-
&:disabled {
|
|
806
|
-
cursor: not-allowed;
|
|
807
|
-
}
|
|
808
|
-
}
|
|
809
|
-
.novacore\:disabled\:opacity-50 {
|
|
810
|
-
&:disabled {
|
|
811
|
-
opacity: 50%;
|
|
812
|
-
}
|
|
813
|
-
}
|
|
814
|
-
.novacore\:sm\:top-\[50\%\] {
|
|
815
|
-
@media (width >= 40rem) {
|
|
816
|
-
top: 50%;
|
|
817
|
-
}
|
|
818
|
-
}
|
|
819
|
-
.novacore\:sm\:bottom-auto {
|
|
820
|
-
@media (width >= 40rem) {
|
|
821
|
-
bottom: auto;
|
|
822
|
-
}
|
|
823
|
-
}
|
|
824
|
-
.novacore\:sm\:left-\[50\%\] {
|
|
825
|
-
@media (width >= 40rem) {
|
|
826
|
-
left: 50%;
|
|
827
|
-
}
|
|
828
|
-
}
|
|
829
|
-
.novacore\:sm\:translate-x-\[-50\%\] {
|
|
830
|
-
@media (width >= 40rem) {
|
|
831
|
-
--tw-translate-x: -50%;
|
|
832
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
833
|
-
}
|
|
834
|
-
}
|
|
835
|
-
.novacore\:sm\:translate-y-\[-50\%\] {
|
|
836
|
-
@media (width >= 40rem) {
|
|
837
|
-
--tw-translate-y: -50%;
|
|
838
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
839
|
-
}
|
|
840
|
-
}
|
|
841
|
-
.novacore\:sm\:flex-row {
|
|
842
|
-
@media (width >= 40rem) {
|
|
843
|
-
flex-direction: row;
|
|
844
|
-
}
|
|
845
|
-
}
|
|
846
|
-
.novacore\:sm\:justify-end {
|
|
847
|
-
@media (width >= 40rem) {
|
|
848
|
-
justify-content: flex-end;
|
|
849
|
-
}
|
|
850
|
-
}
|
|
851
|
-
.novacore\:sm\:space-x-2 {
|
|
852
|
-
@media (width >= 40rem) {
|
|
853
|
-
:where(& > :not(:last-child)) {
|
|
854
|
-
--tw-space-x-reverse: 0;
|
|
855
|
-
margin-inline-start: calc(calc(var(--novacore-spacing) * 2) * var(--tw-space-x-reverse));
|
|
856
|
-
margin-inline-end: calc(calc(var(--novacore-spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
|
|
857
|
-
}
|
|
858
|
-
}
|
|
859
|
-
}
|
|
860
|
-
.novacore\:sm\:rounded-2xl {
|
|
861
|
-
@media (width >= 40rem) {
|
|
862
|
-
border-radius: var(--novacore-radius-2xl);
|
|
863
|
-
}
|
|
864
|
-
}
|
|
865
|
-
.novacore\:sm\:p-4 {
|
|
866
|
-
@media (width >= 40rem) {
|
|
867
|
-
padding: calc(var(--novacore-spacing) * 4);
|
|
868
|
-
}
|
|
869
|
-
}
|
|
870
|
-
}
|
|
871
|
-
:root {
|
|
872
|
-
--tuwa-success-bg: oklch(96.2% 0.044 156.743);
|
|
873
|
-
--tuwa-success-text: oklch(52.7% 0.154 150.069);
|
|
874
|
-
--tuwa-success-icon: oklch(72.3% 0.219 149.579);
|
|
875
|
-
--tuwa-error-bg: oklch(93.6% 0.032 17.717);
|
|
876
|
-
--tuwa-error-text: oklch(50.5% 0.213 27.518);
|
|
877
|
-
--tuwa-error-icon: oklch(63.7% 0.237 25.331);
|
|
878
|
-
--tuwa-pending-bg: oklch(97.3% 0.071 103.193);
|
|
879
|
-
--tuwa-pending-text: oklch(47.6% 0.114 61.907);
|
|
880
|
-
--tuwa-pending-icon: oklch(68.1% 0.162 75.834);
|
|
881
|
-
--tuwa-info-bg: oklch(96.7% 0.003 264.542);
|
|
882
|
-
--tuwa-info-text: oklch(44.6% 0.03 256.802);
|
|
883
|
-
--tuwa-info-icon: oklch(55.1% 0.027 264.364);
|
|
884
|
-
--tuwa-text-primary: oklch(21% 0.034 264.665);
|
|
885
|
-
--tuwa-text-secondary: oklch(55.1% 0.027 264.364);
|
|
886
|
-
--tuwa-text-tertiary: oklch(70.7% 0.022 261.325);
|
|
887
|
-
--tuwa-text-accent: oklch(54.6% 0.245 262.881);
|
|
888
|
-
--tuwa-text-on-accent: #fff;
|
|
889
|
-
--tuwa-bg-primary: #fff;
|
|
890
|
-
--tuwa-bg-secondary: oklch(98.5% 0.002 247.839);
|
|
891
|
-
--tuwa-bg-muted: oklch(96.7% 0.003 264.542);
|
|
892
|
-
--tuwa-border-primary: oklch(92.8% 0.006 264.531);
|
|
893
|
-
--tuwa-border-secondary: oklch(96.7% 0.003 264.542);
|
|
894
|
-
--tuwa-button-gradient-from: oklch(54.6% 0.245 262.881);
|
|
895
|
-
--tuwa-button-gradient-to: oklch(55.8% 0.288 302.321);
|
|
896
|
-
--tuwa-button-gradient-from-hover: oklch(48.8% 0.243 264.376);
|
|
897
|
-
--tuwa-button-gradient-to-hover: oklch(49.6% 0.265 301.924);
|
|
898
|
-
--tuwa-standart-button-bg: oklch(96.7% 0.003 264.542);
|
|
899
|
-
--tuwa-standart-button-hover: oklch(92.8% 0.006 264.531);
|
|
900
|
-
}
|
|
901
|
-
.dark {
|
|
902
|
-
--tuwa-success-bg: oklch(39.3% 0.095 152.535);
|
|
903
|
-
--tuwa-success-text: oklch(87.1% 0.15 154.449);
|
|
904
|
-
--tuwa-success-icon: oklch(79.2% 0.209 151.711);
|
|
905
|
-
--tuwa-error-bg: oklch(39.6% 0.141 25.723);
|
|
906
|
-
--tuwa-error-text: oklch(80.8% 0.114 19.571);
|
|
907
|
-
--tuwa-error-icon: oklch(70.4% 0.191 22.216);
|
|
908
|
-
--tuwa-pending-bg: oklch(42.1% 0.095 57.708);
|
|
909
|
-
--tuwa-pending-text: oklch(90.5% 0.182 98.111);
|
|
910
|
-
--tuwa-pending-icon: oklch(85.2% 0.199 91.936);
|
|
911
|
-
--tuwa-info-bg: oklch(37.3% 0.034 259.733);
|
|
912
|
-
--tuwa-info-text: oklch(87.2% 0.01 258.338);
|
|
913
|
-
--tuwa-info-icon: oklch(70.7% 0.022 261.325);
|
|
914
|
-
--tuwa-text-primary: oklch(98.5% 0.002 247.839);
|
|
915
|
-
--tuwa-text-secondary: oklch(70.7% 0.022 261.325);
|
|
916
|
-
--tuwa-text-tertiary: oklch(55.1% 0.027 264.364);
|
|
917
|
-
--tuwa-text-accent: oklch(70.7% 0.165 254.624);
|
|
918
|
-
--tuwa-text-on-accent: #fff;
|
|
919
|
-
--tuwa-bg-primary: oklch(21% 0.034 264.665);
|
|
920
|
-
--tuwa-bg-secondary: oklch(27.8% 0.033 256.848);
|
|
921
|
-
--tuwa-bg-muted: oklch(37.3% 0.034 259.733);
|
|
922
|
-
--tuwa-border-primary: oklch(37.3% 0.034 259.733);
|
|
923
|
-
--tuwa-border-secondary: oklch(27.8% 0.033 256.848);
|
|
924
|
-
--tuwa-button-gradient-from: oklch(62.3% 0.214 259.815);
|
|
925
|
-
--tuwa-button-gradient-to: oklch(62.7% 0.265 303.9);
|
|
926
|
-
--tuwa-button-gradient-from-hover: oklch(54.6% 0.245 262.881);
|
|
927
|
-
--tuwa-button-gradient-to-hover: oklch(55.8% 0.288 302.321);
|
|
928
|
-
--tuwa-standart-button-bg: oklch(37.3% 0.034 259.733);
|
|
929
|
-
--tuwa-standart-button-hover: oklch(27.8% 0.033 256.848);
|
|
930
|
-
}
|
|
931
|
-
.Toastify {
|
|
932
|
-
pointer-events: auto;
|
|
933
|
-
}
|
|
934
|
-
.Toastify__toast {
|
|
935
|
-
padding: 0;
|
|
936
|
-
background: transparent;
|
|
937
|
-
}
|
|
938
|
-
@media (hover: hover) {
|
|
939
|
-
.NovaNoScrolling {
|
|
940
|
-
scrollbar-width: none;
|
|
941
|
-
}
|
|
942
|
-
.NovaCustomScroll {
|
|
943
|
-
animation: scrolling forwards;
|
|
944
|
-
animation-timeline: scroll(self);
|
|
945
|
-
}
|
|
946
|
-
.NovaCustomScroll::-webkit-scrollbar {
|
|
947
|
-
width: 4px;
|
|
948
|
-
border-radius: 4px;
|
|
949
|
-
background-color: var(--tuwa-border-primary);
|
|
950
|
-
}
|
|
951
|
-
.NovaCustomScroll::-webkit-scrollbar-thumb {
|
|
952
|
-
background-color: var(--tuwa-text-secondary);
|
|
953
|
-
border-radius: 4px;
|
|
954
|
-
}
|
|
955
|
-
.NovaCustomScroll::-webkit-scrollbar-thumb:hover {
|
|
956
|
-
background-color: var(--tuwa-text-primary);
|
|
957
|
-
}
|
|
958
|
-
@keyframes scrolling {
|
|
959
|
-
0%,to {
|
|
960
|
-
padding-right: 2px;
|
|
961
|
-
}
|
|
962
|
-
}
|
|
963
|
-
.NovaCustomScrollNoPadding::-webkit-scrollbar {
|
|
964
|
-
width: 4px;
|
|
965
|
-
border-radius: 4px;
|
|
966
|
-
background-color: var(--tuwa-border-primary);
|
|
967
|
-
}
|
|
968
|
-
.NovaCustomScrollNoPadding::-webkit-scrollbar-thumb {
|
|
969
|
-
background-color: var(--tuwa-text-secondary);
|
|
970
|
-
border-radius: 4px;
|
|
971
|
-
}
|
|
972
|
-
.NovaCustomScrollNoPadding::-webkit-scrollbar-thumb:hover {
|
|
973
|
-
background-color: var(--tuwa-text-primary);
|
|
974
|
-
}
|
|
975
|
-
}
|
|
976
|
-
.NovaModalOpen {
|
|
977
|
-
overflow: hidden;
|
|
978
|
-
}
|
|
979
|
-
@property --tw-leading {
|
|
980
|
-
syntax: "*";
|
|
981
|
-
inherits: false;
|
|
982
|
-
}
|
|
983
|
-
@property --tw-tracking {
|
|
984
|
-
syntax: "*";
|
|
985
|
-
inherits: false;
|
|
986
|
-
}
|
|
987
|
-
@property --tw-backdrop-blur {
|
|
988
|
-
syntax: "*";
|
|
989
|
-
inherits: false;
|
|
990
|
-
}
|
|
991
|
-
@property --tw-backdrop-brightness {
|
|
992
|
-
syntax: "*";
|
|
993
|
-
inherits: false;
|
|
994
|
-
}
|
|
995
|
-
@property --tw-backdrop-contrast {
|
|
996
|
-
syntax: "*";
|
|
997
|
-
inherits: false;
|
|
998
|
-
}
|
|
999
|
-
@property --tw-backdrop-grayscale {
|
|
1000
|
-
syntax: "*";
|
|
1001
|
-
inherits: false;
|
|
1002
|
-
}
|
|
1003
|
-
@property --tw-backdrop-hue-rotate {
|
|
1004
|
-
syntax: "*";
|
|
1005
|
-
inherits: false;
|
|
1006
|
-
}
|
|
1007
|
-
@property --tw-backdrop-invert {
|
|
1008
|
-
syntax: "*";
|
|
1009
|
-
inherits: false;
|
|
1010
|
-
}
|
|
1011
|
-
@property --tw-backdrop-opacity {
|
|
1012
|
-
syntax: "*";
|
|
1013
|
-
inherits: false;
|
|
1014
|
-
}
|
|
1015
|
-
@property --tw-backdrop-saturate {
|
|
1016
|
-
syntax: "*";
|
|
1017
|
-
inherits: false;
|
|
1018
|
-
}
|
|
1019
|
-
@property --tw-backdrop-sepia {
|
|
1020
|
-
syntax: "*";
|
|
1021
|
-
inherits: false;
|
|
1022
|
-
}
|
|
1023
|
-
@property --tw-translate-x {
|
|
1024
|
-
syntax: "*";
|
|
1025
|
-
inherits: false;
|
|
1026
|
-
initial-value: 0;
|
|
1027
|
-
}
|
|
1028
|
-
@property --tw-translate-y {
|
|
1029
|
-
syntax: "*";
|
|
1030
|
-
inherits: false;
|
|
1031
|
-
initial-value: 0;
|
|
1032
|
-
}
|
|
1033
|
-
@property --tw-translate-z {
|
|
1034
|
-
syntax: "*";
|
|
1035
|
-
inherits: false;
|
|
1036
|
-
initial-value: 0;
|
|
1037
|
-
}
|
|
1038
|
-
@property --tw-space-x-reverse {
|
|
1039
|
-
syntax: "*";
|
|
1040
|
-
inherits: false;
|
|
1041
|
-
initial-value: 0;
|
|
1042
|
-
}
|
|
1043
|
-
@layer properties {
|
|
1044
|
-
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
1045
|
-
*, ::before, ::after, ::backdrop {
|
|
1046
|
-
--tw-border-style: solid;
|
|
1047
|
-
--tw-leading: initial;
|
|
1048
|
-
--tw-font-weight: initial;
|
|
1049
|
-
--tw-tracking: initial;
|
|
1050
|
-
--tw-shadow: 0 0 #0000;
|
|
1051
|
-
--tw-shadow-color: initial;
|
|
1052
|
-
--tw-shadow-alpha: 100%;
|
|
1053
|
-
--tw-inset-shadow: 0 0 #0000;
|
|
1054
|
-
--tw-inset-shadow-color: initial;
|
|
1055
|
-
--tw-inset-shadow-alpha: 100%;
|
|
1056
|
-
--tw-ring-color: initial;
|
|
1057
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
1058
|
-
--tw-inset-ring-color: initial;
|
|
1059
|
-
--tw-inset-ring-shadow: 0 0 #0000;
|
|
1060
|
-
--tw-ring-inset: initial;
|
|
1061
|
-
--tw-ring-offset-width: 0px;
|
|
1062
|
-
--tw-ring-offset-color: #fff;
|
|
1063
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1064
|
-
--tw-backdrop-blur: initial;
|
|
1065
|
-
--tw-backdrop-brightness: initial;
|
|
1066
|
-
--tw-backdrop-contrast: initial;
|
|
1067
|
-
--tw-backdrop-grayscale: initial;
|
|
1068
|
-
--tw-backdrop-hue-rotate: initial;
|
|
1069
|
-
--tw-backdrop-invert: initial;
|
|
1070
|
-
--tw-backdrop-opacity: initial;
|
|
1071
|
-
--tw-backdrop-saturate: initial;
|
|
1072
|
-
--tw-backdrop-sepia: initial;
|
|
1073
|
-
--tw-translate-x: 0;
|
|
1074
|
-
--tw-translate-y: 0;
|
|
1075
|
-
--tw-translate-z: 0;
|
|
1076
|
-
--tw-space-x-reverse: 0;
|
|
606
|
+
border-radius: var(--novatx-radius-md);
|
|
1077
607
|
}
|
|
1078
608
|
}
|
|
1079
609
|
}
|
|
@@ -1259,21 +789,6 @@
|
|
|
1259
789
|
--tw-scale-x: 1;
|
|
1260
790
|
--tw-scale-y: 1;
|
|
1261
791
|
--tw-scale-z: 1;
|
|
1262
|
-
--tw-leading: initial;
|
|
1263
|
-
--tw-tracking: initial;
|
|
1264
|
-
--tw-backdrop-blur: initial;
|
|
1265
|
-
--tw-backdrop-brightness: initial;
|
|
1266
|
-
--tw-backdrop-contrast: initial;
|
|
1267
|
-
--tw-backdrop-grayscale: initial;
|
|
1268
|
-
--tw-backdrop-hue-rotate: initial;
|
|
1269
|
-
--tw-backdrop-invert: initial;
|
|
1270
|
-
--tw-backdrop-opacity: initial;
|
|
1271
|
-
--tw-backdrop-saturate: initial;
|
|
1272
|
-
--tw-backdrop-sepia: initial;
|
|
1273
|
-
--tw-translate-x: 0;
|
|
1274
|
-
--tw-translate-y: 0;
|
|
1275
|
-
--tw-translate-z: 0;
|
|
1276
|
-
--tw-space-x-reverse: 0;
|
|
1277
792
|
}
|
|
1278
793
|
}
|
|
1279
794
|
}
|