react-toolkits 2.15.5 → 2.15.6
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/CHANGELOG.md +6 -0
- package/lib/index.css +1 -476
- package/lib/index.js +2 -3959
- package/locale/context.js +1 -9
- package/locale/en_GB.js +1 -96
- package/locale/hooks.js +1 -30
- package/locale/index.js +1 -30
- package/locale/ja_JP.js +1 -96
- package/locale/ko_KR.js +1 -96
- package/locale/zh_CN.js +1 -96
- package/package.json +1 -1
- package/lib/index.css.map +0 -1
- package/lib/index.js.map +0 -1
- package/locale/context.js.map +0 -1
- package/locale/en_GB.js.map +0 -1
- package/locale/hooks.js.map +0 -1
- package/locale/index.js.map +0 -1
- package/locale/ja_JP.js.map +0 -1
- package/locale/ko_KR.js.map +0 -1
- package/locale/zh_CN.js.map +0 -1
package/CHANGELOG.md
CHANGED
package/lib/index.css
CHANGED
|
@@ -1,477 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
@layer properties;
|
|
3
|
-
@layer theme, base, components, utilities;
|
|
4
|
-
@layer theme {
|
|
5
|
-
:root,
|
|
6
|
-
:host {
|
|
7
|
-
--font-sans:
|
|
8
|
-
ui-sans-serif,
|
|
9
|
-
system-ui,
|
|
10
|
-
sans-serif,
|
|
11
|
-
"Apple Color Emoji",
|
|
12
|
-
"Segoe UI Emoji",
|
|
13
|
-
"Segoe UI Symbol",
|
|
14
|
-
"Noto Color Emoji";
|
|
15
|
-
--font-mono:
|
|
16
|
-
ui-monospace,
|
|
17
|
-
SFMono-Regular,
|
|
18
|
-
Menlo,
|
|
19
|
-
Monaco,
|
|
20
|
-
Consolas,
|
|
21
|
-
"Liberation Mono",
|
|
22
|
-
"Courier New",
|
|
23
|
-
monospace;
|
|
24
|
-
--color-slate-50: oklch(98.4% 0.003 247.858);
|
|
25
|
-
--spacing: 0.25rem;
|
|
26
|
-
--text-2xl: 1.5rem;
|
|
27
|
-
--text-2xl--line-height: calc(2 / 1.5);
|
|
28
|
-
--font-weight-bold: 700;
|
|
29
|
-
--default-font-family: var(--font-sans);
|
|
30
|
-
--default-mono-font-family: var(--font-mono);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
@layer base {
|
|
34
|
-
*,
|
|
35
|
-
::after,
|
|
36
|
-
::before,
|
|
37
|
-
::backdrop,
|
|
38
|
-
::file-selector-button {
|
|
39
|
-
box-sizing: border-box;
|
|
40
|
-
margin: 0;
|
|
41
|
-
padding: 0;
|
|
42
|
-
border: 0 solid;
|
|
43
|
-
}
|
|
44
|
-
html,
|
|
45
|
-
:host {
|
|
46
|
-
line-height: 1.5;
|
|
47
|
-
-webkit-text-size-adjust: 100%;
|
|
48
|
-
-moz-tab-size: 4;
|
|
49
|
-
-o-tab-size: 4;
|
|
50
|
-
tab-size: 4;
|
|
51
|
-
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
52
|
-
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
53
|
-
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
54
|
-
-webkit-tap-highlight-color: transparent;
|
|
55
|
-
}
|
|
56
|
-
hr {
|
|
57
|
-
height: 0;
|
|
58
|
-
color: inherit;
|
|
59
|
-
border-top-width: 1px;
|
|
60
|
-
}
|
|
61
|
-
abbr:where([title]) {
|
|
62
|
-
-webkit-text-decoration: underline dotted;
|
|
63
|
-
text-decoration: underline dotted;
|
|
64
|
-
}
|
|
65
|
-
h1,
|
|
66
|
-
h2,
|
|
67
|
-
h3,
|
|
68
|
-
h4,
|
|
69
|
-
h5,
|
|
70
|
-
h6 {
|
|
71
|
-
font-size: inherit;
|
|
72
|
-
font-weight: inherit;
|
|
73
|
-
}
|
|
74
|
-
a {
|
|
75
|
-
color: inherit;
|
|
76
|
-
-webkit-text-decoration: inherit;
|
|
77
|
-
text-decoration: inherit;
|
|
78
|
-
}
|
|
79
|
-
b,
|
|
80
|
-
strong {
|
|
81
|
-
font-weight: bolder;
|
|
82
|
-
}
|
|
83
|
-
code,
|
|
84
|
-
kbd,
|
|
85
|
-
samp,
|
|
86
|
-
pre {
|
|
87
|
-
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
88
|
-
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
89
|
-
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
90
|
-
font-size: 1em;
|
|
91
|
-
}
|
|
92
|
-
small {
|
|
93
|
-
font-size: 80%;
|
|
94
|
-
}
|
|
95
|
-
sub,
|
|
96
|
-
sup {
|
|
97
|
-
font-size: 75%;
|
|
98
|
-
line-height: 0;
|
|
99
|
-
position: relative;
|
|
100
|
-
vertical-align: baseline;
|
|
101
|
-
}
|
|
102
|
-
sub {
|
|
103
|
-
bottom: -0.25em;
|
|
104
|
-
}
|
|
105
|
-
sup {
|
|
106
|
-
top: -0.5em;
|
|
107
|
-
}
|
|
108
|
-
table {
|
|
109
|
-
text-indent: 0;
|
|
110
|
-
border-color: inherit;
|
|
111
|
-
border-collapse: collapse;
|
|
112
|
-
}
|
|
113
|
-
:-moz-focusring {
|
|
114
|
-
outline: auto;
|
|
115
|
-
}
|
|
116
|
-
progress {
|
|
117
|
-
vertical-align: baseline;
|
|
118
|
-
}
|
|
119
|
-
summary {
|
|
120
|
-
display: list-item;
|
|
121
|
-
}
|
|
122
|
-
ol,
|
|
123
|
-
ul,
|
|
124
|
-
menu {
|
|
125
|
-
list-style: none;
|
|
126
|
-
}
|
|
127
|
-
img,
|
|
128
|
-
svg,
|
|
129
|
-
video,
|
|
130
|
-
canvas,
|
|
131
|
-
audio,
|
|
132
|
-
iframe,
|
|
133
|
-
embed,
|
|
134
|
-
object {
|
|
135
|
-
display: block;
|
|
136
|
-
vertical-align: middle;
|
|
137
|
-
}
|
|
138
|
-
img,
|
|
139
|
-
video {
|
|
140
|
-
max-width: 100%;
|
|
141
|
-
height: auto;
|
|
142
|
-
}
|
|
143
|
-
button,
|
|
144
|
-
input,
|
|
145
|
-
select,
|
|
146
|
-
optgroup,
|
|
147
|
-
textarea,
|
|
148
|
-
::file-selector-button {
|
|
149
|
-
font: inherit;
|
|
150
|
-
font-feature-settings: inherit;
|
|
151
|
-
font-variation-settings: inherit;
|
|
152
|
-
letter-spacing: inherit;
|
|
153
|
-
color: inherit;
|
|
154
|
-
border-radius: 0;
|
|
155
|
-
background-color: transparent;
|
|
156
|
-
opacity: 1;
|
|
157
|
-
}
|
|
158
|
-
:where(select:is([multiple], [size])) optgroup {
|
|
159
|
-
font-weight: bolder;
|
|
160
|
-
}
|
|
161
|
-
:where(select:is([multiple], [size])) optgroup option {
|
|
162
|
-
padding-inline-start: 20px;
|
|
163
|
-
}
|
|
164
|
-
::file-selector-button {
|
|
165
|
-
margin-inline-end: 4px;
|
|
166
|
-
}
|
|
167
|
-
::-moz-placeholder {
|
|
168
|
-
opacity: 1;
|
|
169
|
-
}
|
|
170
|
-
::placeholder {
|
|
171
|
-
opacity: 1;
|
|
172
|
-
}
|
|
173
|
-
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
174
|
-
::-moz-placeholder {
|
|
175
|
-
color: currentcolor;
|
|
176
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
177
|
-
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
::placeholder {
|
|
181
|
-
color: currentcolor;
|
|
182
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
183
|
-
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
textarea {
|
|
188
|
-
resize: vertical;
|
|
189
|
-
}
|
|
190
|
-
::-webkit-search-decoration {
|
|
191
|
-
-webkit-appearance: none;
|
|
192
|
-
}
|
|
193
|
-
::-webkit-date-and-time-value {
|
|
194
|
-
min-height: 1lh;
|
|
195
|
-
text-align: inherit;
|
|
196
|
-
}
|
|
197
|
-
::-webkit-datetime-edit {
|
|
198
|
-
display: inline-flex;
|
|
199
|
-
}
|
|
200
|
-
::-webkit-datetime-edit-fields-wrapper {
|
|
201
|
-
padding: 0;
|
|
202
|
-
}
|
|
203
|
-
::-webkit-datetime-edit,
|
|
204
|
-
::-webkit-datetime-edit-year-field,
|
|
205
|
-
::-webkit-datetime-edit-month-field,
|
|
206
|
-
::-webkit-datetime-edit-day-field,
|
|
207
|
-
::-webkit-datetime-edit-hour-field,
|
|
208
|
-
::-webkit-datetime-edit-minute-field,
|
|
209
|
-
::-webkit-datetime-edit-second-field,
|
|
210
|
-
::-webkit-datetime-edit-millisecond-field,
|
|
211
|
-
::-webkit-datetime-edit-meridiem-field {
|
|
212
|
-
padding-block: 0;
|
|
213
|
-
}
|
|
214
|
-
:-moz-ui-invalid {
|
|
215
|
-
box-shadow: none;
|
|
216
|
-
}
|
|
217
|
-
button,
|
|
218
|
-
input:where([type=button], [type=reset], [type=submit]),
|
|
219
|
-
::file-selector-button {
|
|
220
|
-
-webkit-appearance: button;
|
|
221
|
-
-moz-appearance: button;
|
|
222
|
-
appearance: button;
|
|
223
|
-
}
|
|
224
|
-
::-webkit-inner-spin-button,
|
|
225
|
-
::-webkit-outer-spin-button {
|
|
226
|
-
height: auto;
|
|
227
|
-
}
|
|
228
|
-
[hidden]:where(:not([hidden=until-found])) {
|
|
229
|
-
display: none !important;
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
@layer utilities {
|
|
233
|
-
.collapse {
|
|
234
|
-
visibility: collapse;
|
|
235
|
-
}
|
|
236
|
-
.absolute {
|
|
237
|
-
position: absolute;
|
|
238
|
-
}
|
|
239
|
-
.fixed {
|
|
240
|
-
position: fixed;
|
|
241
|
-
}
|
|
242
|
-
.relative {
|
|
243
|
-
position: relative;
|
|
244
|
-
}
|
|
245
|
-
.top-0 {
|
|
246
|
-
top: calc(var(--spacing) * 0);
|
|
247
|
-
}
|
|
248
|
-
.top-1\/2 {
|
|
249
|
-
top: calc(1/2 * 100%);
|
|
250
|
-
}
|
|
251
|
-
.top-6 {
|
|
252
|
-
top: calc(var(--spacing) * 6);
|
|
253
|
-
}
|
|
254
|
-
.top-16 {
|
|
255
|
-
top: calc(var(--spacing) * 16);
|
|
256
|
-
}
|
|
257
|
-
.right-0 {
|
|
258
|
-
right: calc(var(--spacing) * 0);
|
|
259
|
-
}
|
|
260
|
-
.right-16 {
|
|
261
|
-
right: calc(var(--spacing) * 16);
|
|
262
|
-
}
|
|
263
|
-
.bottom-0 {
|
|
264
|
-
bottom: calc(var(--spacing) * 0);
|
|
265
|
-
}
|
|
266
|
-
.left-0 {
|
|
267
|
-
left: calc(var(--spacing) * 0);
|
|
268
|
-
}
|
|
269
|
-
.left-14 {
|
|
270
|
-
left: calc(var(--spacing) * 14);
|
|
271
|
-
}
|
|
272
|
-
.z-10 {
|
|
273
|
-
z-index: 10;
|
|
274
|
-
}
|
|
275
|
-
.container {
|
|
276
|
-
width: 100%;
|
|
277
|
-
@media (width >= 40rem) {
|
|
278
|
-
max-width: 40rem;
|
|
279
|
-
}
|
|
280
|
-
@media (width >= 48rem) {
|
|
281
|
-
max-width: 48rem;
|
|
282
|
-
}
|
|
283
|
-
@media (width >= 64rem) {
|
|
284
|
-
max-width: 64rem;
|
|
285
|
-
}
|
|
286
|
-
@media (width >= 80rem) {
|
|
287
|
-
max-width: 80rem;
|
|
288
|
-
}
|
|
289
|
-
@media (width >= 96rem) {
|
|
290
|
-
max-width: 96rem;
|
|
291
|
-
}
|
|
292
|
-
}
|
|
293
|
-
.my-12 {
|
|
294
|
-
margin-block: calc(var(--spacing) * 12);
|
|
295
|
-
}
|
|
296
|
-
.mt-4 {
|
|
297
|
-
margin-top: calc(var(--spacing) * 4);
|
|
298
|
-
}
|
|
299
|
-
.mr-6 {
|
|
300
|
-
margin-right: calc(var(--spacing) * 6);
|
|
301
|
-
}
|
|
302
|
-
.mb-0 {
|
|
303
|
-
margin-bottom: calc(var(--spacing) * 0);
|
|
304
|
-
}
|
|
305
|
-
.mb-4 {
|
|
306
|
-
margin-bottom: calc(var(--spacing) * 4);
|
|
307
|
-
}
|
|
308
|
-
.mb-6 {
|
|
309
|
-
margin-bottom: calc(var(--spacing) * 6);
|
|
310
|
-
}
|
|
311
|
-
.mb-12 {
|
|
312
|
-
margin-bottom: calc(var(--spacing) * 12);
|
|
313
|
-
}
|
|
314
|
-
.ml-2 {
|
|
315
|
-
margin-left: calc(var(--spacing) * 2);
|
|
316
|
-
}
|
|
317
|
-
.ml-4 {
|
|
318
|
-
margin-left: calc(var(--spacing) * 4);
|
|
319
|
-
}
|
|
320
|
-
.block {
|
|
321
|
-
display: block;
|
|
322
|
-
}
|
|
323
|
-
.flex {
|
|
324
|
-
display: flex;
|
|
325
|
-
}
|
|
326
|
-
.hidden {
|
|
327
|
-
display: none;
|
|
328
|
-
}
|
|
329
|
-
.inline {
|
|
330
|
-
display: inline;
|
|
331
|
-
}
|
|
332
|
-
.h-8 {
|
|
333
|
-
height: calc(var(--spacing) * 8);
|
|
334
|
-
}
|
|
335
|
-
.h-10 {
|
|
336
|
-
height: calc(var(--spacing) * 10);
|
|
337
|
-
}
|
|
338
|
-
.h-full {
|
|
339
|
-
height: 100%;
|
|
340
|
-
}
|
|
341
|
-
.h-screen {
|
|
342
|
-
height: 100vh;
|
|
343
|
-
}
|
|
344
|
-
.w-8 {
|
|
345
|
-
width: calc(var(--spacing) * 8);
|
|
346
|
-
}
|
|
347
|
-
.w-10\/12 {
|
|
348
|
-
width: calc(10/12 * 100%);
|
|
349
|
-
}
|
|
350
|
-
.w-\[650px\] {
|
|
351
|
-
width: 650px;
|
|
352
|
-
}
|
|
353
|
-
.w-full {
|
|
354
|
-
width: 100%;
|
|
355
|
-
}
|
|
356
|
-
.w-screen {
|
|
357
|
-
width: 100vw;
|
|
358
|
-
}
|
|
359
|
-
.flex-1 {
|
|
360
|
-
flex: 1;
|
|
361
|
-
}
|
|
362
|
-
.flex-grow-0 {
|
|
363
|
-
flex-grow: 0;
|
|
364
|
-
}
|
|
365
|
-
.-translate-y-1\/2 {
|
|
366
|
-
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
367
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
368
|
-
}
|
|
369
|
-
.-translate-y-10 {
|
|
370
|
-
--tw-translate-y: calc(var(--spacing) * -10);
|
|
371
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
372
|
-
}
|
|
373
|
-
.flex-col {
|
|
374
|
-
flex-direction: column;
|
|
375
|
-
}
|
|
376
|
-
.flex-row {
|
|
377
|
-
flex-direction: row;
|
|
378
|
-
}
|
|
379
|
-
.items-center {
|
|
380
|
-
align-items: center;
|
|
381
|
-
}
|
|
382
|
-
.justify-between {
|
|
383
|
-
justify-content: space-between;
|
|
384
|
-
}
|
|
385
|
-
.justify-center {
|
|
386
|
-
justify-content: center;
|
|
387
|
-
}
|
|
388
|
-
.gap-8 {
|
|
389
|
-
gap: calc(var(--spacing) * 8);
|
|
390
|
-
}
|
|
391
|
-
.overflow-hidden {
|
|
392
|
-
overflow: hidden;
|
|
393
|
-
}
|
|
394
|
-
.bg-slate-50 {
|
|
395
|
-
background-color: var(--color-slate-50);
|
|
396
|
-
}
|
|
397
|
-
.px-6 {
|
|
398
|
-
padding-inline: calc(var(--spacing) * 6);
|
|
399
|
-
}
|
|
400
|
-
.px-36 {
|
|
401
|
-
padding-inline: calc(var(--spacing) * 36);
|
|
402
|
-
}
|
|
403
|
-
.py-4 {
|
|
404
|
-
padding-block: calc(var(--spacing) * 4);
|
|
405
|
-
}
|
|
406
|
-
.text-center {
|
|
407
|
-
text-align: center;
|
|
408
|
-
}
|
|
409
|
-
.text-end {
|
|
410
|
-
text-align: end;
|
|
411
|
-
}
|
|
412
|
-
.text-start {
|
|
413
|
-
text-align: start;
|
|
414
|
-
}
|
|
415
|
-
.text-2xl {
|
|
416
|
-
font-size: var(--text-2xl);
|
|
417
|
-
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
418
|
-
}
|
|
419
|
-
.font-bold {
|
|
420
|
-
--tw-font-weight: var(--font-weight-bold);
|
|
421
|
-
font-weight: var(--font-weight-bold);
|
|
422
|
-
}
|
|
423
|
-
.opacity-0 {
|
|
424
|
-
opacity: 0%;
|
|
425
|
-
}
|
|
426
|
-
.filter {
|
|
427
|
-
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
428
|
-
}
|
|
429
|
-
.delay-200 {
|
|
430
|
-
transition-delay: 200ms;
|
|
431
|
-
}
|
|
432
|
-
}
|
|
433
|
-
@property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
|
|
434
|
-
@property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
|
|
435
|
-
@property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
|
|
436
|
-
@property --tw-font-weight { syntax: "*"; inherits: false; }
|
|
437
|
-
@property --tw-blur { syntax: "*"; inherits: false; }
|
|
438
|
-
@property --tw-brightness { syntax: "*"; inherits: false; }
|
|
439
|
-
@property --tw-contrast { syntax: "*"; inherits: false; }
|
|
440
|
-
@property --tw-grayscale { syntax: "*"; inherits: false; }
|
|
441
|
-
@property --tw-hue-rotate { syntax: "*"; inherits: false; }
|
|
442
|
-
@property --tw-invert { syntax: "*"; inherits: false; }
|
|
443
|
-
@property --tw-opacity { syntax: "*"; inherits: false; }
|
|
444
|
-
@property --tw-saturate { syntax: "*"; inherits: false; }
|
|
445
|
-
@property --tw-sepia { syntax: "*"; inherits: false; }
|
|
446
|
-
@property --tw-drop-shadow { syntax: "*"; inherits: false; }
|
|
447
|
-
@property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
|
|
448
|
-
@property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
|
|
449
|
-
@property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
|
|
450
|
-
@layer properties {
|
|
451
|
-
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
452
|
-
*,
|
|
453
|
-
::before,
|
|
454
|
-
::after,
|
|
455
|
-
::backdrop {
|
|
456
|
-
--tw-translate-x: 0;
|
|
457
|
-
--tw-translate-y: 0;
|
|
458
|
-
--tw-translate-z: 0;
|
|
459
|
-
--tw-font-weight: initial;
|
|
460
|
-
--tw-blur: initial;
|
|
461
|
-
--tw-brightness: initial;
|
|
462
|
-
--tw-contrast: initial;
|
|
463
|
-
--tw-grayscale: initial;
|
|
464
|
-
--tw-hue-rotate: initial;
|
|
465
|
-
--tw-invert: initial;
|
|
466
|
-
--tw-opacity: initial;
|
|
467
|
-
--tw-saturate: initial;
|
|
468
|
-
--tw-sepia: initial;
|
|
469
|
-
--tw-drop-shadow: initial;
|
|
470
|
-
--tw-drop-shadow-color: initial;
|
|
471
|
-
--tw-drop-shadow-alpha: 100%;
|
|
472
|
-
--tw-drop-shadow-size: initial;
|
|
473
|
-
}
|
|
474
|
-
}
|
|
475
|
-
}
|
|
1
|
+
@layer properties{@supports ((-webkit-hyphens:none) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-font-weight:initial;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-slate-50:oklch(98.4% .003 247.858);--spacing:.25rem;--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--font-weight-bold:700;--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::-moz-placeholder{opacity:1}::placeholder{opacity:1}@supports (not (-webkit-appearance:-apple-pay-button)) or (contain-intrinsic-size:1px){::-moz-placeholder{color:currentColor}::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::-moz-placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.collapse{visibility:collapse}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.top-0{top:calc(var(--spacing)*0)}.top-1\/2{top:50%}.top-6{top:calc(var(--spacing)*6)}.top-16{top:calc(var(--spacing)*16)}.right-0{right:calc(var(--spacing)*0)}.right-16{right:calc(var(--spacing)*16)}.bottom-0{bottom:calc(var(--spacing)*0)}.left-0{left:calc(var(--spacing)*0)}.left-14{left:calc(var(--spacing)*14)}.z-10{z-index:10}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.my-12{margin-block:calc(var(--spacing)*12)}.mt-4{margin-top:calc(var(--spacing)*4)}.mr-6{margin-right:calc(var(--spacing)*6)}.mb-0{margin-bottom:calc(var(--spacing)*0)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.mb-12{margin-bottom:calc(var(--spacing)*12)}.ml-2{margin-left:calc(var(--spacing)*2)}.ml-4{margin-left:calc(var(--spacing)*4)}.block{display:block}.flex{display:flex}.hidden{display:none}.inline{display:inline}.h-8{height:calc(var(--spacing)*8)}.h-10{height:calc(var(--spacing)*10)}.h-full{height:100%}.h-screen{height:100vh}.w-8{width:calc(var(--spacing)*8)}.w-10\/12{width:83.3333%}.w-\[650px\]{width:650px}.w-full{width:100%}.w-screen{width:100vw}.flex-1{flex:1}.flex-grow-0{flex-grow:0}.-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-10{--tw-translate-y:calc(var(--spacing)*-10);translate:var(--tw-translate-x)var(--tw-translate-y)}.flex-col{flex-direction:column}.flex-row{flex-direction:row}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-8{gap:calc(var(--spacing)*8)}.overflow-hidden{overflow:hidden}.bg-slate-50{background-color:var(--color-slate-50)}.px-6{padding-inline:calc(var(--spacing)*6)}.px-36{padding-inline:calc(var(--spacing)*36)}.py-4{padding-block:calc(var(--spacing)*4)}.text-center{text-align:center}.text-end{text-align:end}.text-start{text-align:start}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.opacity-0{opacity:0}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.delay-200{transition-delay:.2s}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}
|
|
476
2
|
/*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */
|
|
477
|
-
/*# sourceMappingURL=index.css.map */
|