@uni-ds/ui 0.0.1 → 0.0.2

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.
Files changed (2) hide show
  1. package/package.json +8 -5
  2. package/styles.css +1406 -0
package/package.json CHANGED
@@ -1,16 +1,17 @@
1
1
  {
2
2
  "name": "@uni-ds/ui",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^21.2.0",
6
6
  "class-variance-authority": ">=0.7.0",
7
7
  "clsx": ">=2.0.0",
8
8
  "tailwind-merge": ">=3.0.0"
9
9
  },
10
- "sideEffects": false,
11
- "module": "fesm2022/uni-ds-ui.mjs",
12
- "typings": "types/uni-ds-ui.d.ts",
10
+ "sideEffects": [
11
+ "./styles.css"
12
+ ],
13
13
  "exports": {
14
+ "./styles.css": "./styles.css",
14
15
  "./package.json": {
15
16
  "default": "./package.json"
16
17
  },
@@ -19,8 +20,10 @@
19
20
  "default": "./fesm2022/uni-ds-ui.mjs"
20
21
  }
21
22
  },
23
+ "module": "fesm2022/uni-ds-ui.mjs",
24
+ "typings": "types/uni-ds-ui.d.ts",
22
25
  "type": "module",
23
26
  "dependencies": {
24
27
  "tslib": "^2.3.0"
25
28
  }
26
- }
29
+ }
package/styles.css ADDED
@@ -0,0 +1,1406 @@
1
+ /*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root, :host {
6
+ --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
7
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
8
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
+ "Courier New", monospace;
10
+ --color-black: #000;
11
+ --color-white: #fff;
12
+ --spacing: 0.25rem;
13
+ --text-xs: 0.75rem;
14
+ --text-xs--line-height: calc(1 / 0.75);
15
+ --text-sm: 0.875rem;
16
+ --text-sm--line-height: calc(1.25 / 0.875);
17
+ --text-xl: 1.25rem;
18
+ --text-xl--line-height: calc(1.75 / 1.25);
19
+ --text-4xl: 2.25rem;
20
+ --text-4xl--line-height: calc(2.5 / 2.25);
21
+ --text-5xl: 3rem;
22
+ --text-5xl--line-height: 1;
23
+ --text-6xl: 3.75rem;
24
+ --text-6xl--line-height: 1;
25
+ --text-7xl: 4.5rem;
26
+ --text-7xl--line-height: 1;
27
+ --font-weight-normal: 400;
28
+ --font-weight-medium: 500;
29
+ --font-weight-semibold: 600;
30
+ --font-weight-bold: 700;
31
+ --font-weight-extrabold: 800;
32
+ --tracking-tight: -0.025em;
33
+ --tracking-wide: 0.025em;
34
+ --leading-tight: 1.25;
35
+ --leading-relaxed: 1.625;
36
+ --radius-sm: calc(var(--radius) - 4px);
37
+ --radius-md: calc(var(--radius) - 2px);
38
+ --radius-lg: var(--radius);
39
+ --radius-xl: 0.75rem;
40
+ --ease-out: cubic-bezier(0, 0, 0.2, 1);
41
+ --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
42
+ --animate-spin: spin 1s linear infinite;
43
+ --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
44
+ --default-transition-duration: 150ms;
45
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
46
+ --default-font-family: var(--font-sans);
47
+ --default-mono-font-family: var(--font-mono);
48
+ --color-border: var(--border);
49
+ --color-input: var(--input);
50
+ --color-ring: var(--ring);
51
+ --color-background: var(--background);
52
+ --color-foreground: var(--foreground);
53
+ --color-primary: var(--primary);
54
+ --color-primary-foreground: var(--primary-foreground);
55
+ --color-secondary: var(--secondary);
56
+ --color-secondary-foreground: var(--secondary-foreground);
57
+ --color-destructive: var(--destructive);
58
+ --color-destructive-foreground: var(--destructive-foreground);
59
+ --color-muted: var(--muted);
60
+ --color-muted-foreground: var(--muted-foreground);
61
+ --color-accent: var(--accent);
62
+ --color-accent-foreground: var(--accent-foreground);
63
+ --color-card: var(--card);
64
+ --color-card-foreground: var(--card-foreground);
65
+ --color-success: var(--success);
66
+ --color-success-foreground: var(--success-foreground);
67
+ }
68
+ }
69
+ @layer base {
70
+ *, ::after, ::before, ::backdrop, ::file-selector-button {
71
+ box-sizing: border-box;
72
+ margin: 0;
73
+ padding: 0;
74
+ border: 0 solid;
75
+ }
76
+ html, :host {
77
+ line-height: 1.5;
78
+ -webkit-text-size-adjust: 100%;
79
+ tab-size: 4;
80
+ 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");
81
+ font-feature-settings: var(--default-font-feature-settings, normal);
82
+ font-variation-settings: var(--default-font-variation-settings, normal);
83
+ -webkit-tap-highlight-color: transparent;
84
+ }
85
+ hr {
86
+ height: 0;
87
+ color: inherit;
88
+ border-top-width: 1px;
89
+ }
90
+ abbr:where([title]) {
91
+ -webkit-text-decoration: underline dotted;
92
+ text-decoration: underline dotted;
93
+ }
94
+ h1, h2, h3, h4, h5, h6 {
95
+ font-size: inherit;
96
+ font-weight: inherit;
97
+ }
98
+ a {
99
+ color: inherit;
100
+ -webkit-text-decoration: inherit;
101
+ text-decoration: inherit;
102
+ }
103
+ b, strong {
104
+ font-weight: bolder;
105
+ }
106
+ code, kbd, samp, pre {
107
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
108
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
109
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
110
+ font-size: 1em;
111
+ }
112
+ small {
113
+ font-size: 80%;
114
+ }
115
+ sub, sup {
116
+ font-size: 75%;
117
+ line-height: 0;
118
+ position: relative;
119
+ vertical-align: baseline;
120
+ }
121
+ sub {
122
+ bottom: -0.25em;
123
+ }
124
+ sup {
125
+ top: -0.5em;
126
+ }
127
+ table {
128
+ text-indent: 0;
129
+ border-color: inherit;
130
+ border-collapse: collapse;
131
+ }
132
+ :-moz-focusring {
133
+ outline: auto;
134
+ }
135
+ progress {
136
+ vertical-align: baseline;
137
+ }
138
+ summary {
139
+ display: list-item;
140
+ }
141
+ ol, ul, menu {
142
+ list-style: none;
143
+ }
144
+ img, svg, video, canvas, audio, iframe, embed, object {
145
+ display: block;
146
+ vertical-align: middle;
147
+ }
148
+ img, video {
149
+ max-width: 100%;
150
+ height: auto;
151
+ }
152
+ button, input, select, optgroup, textarea, ::file-selector-button {
153
+ font: inherit;
154
+ font-feature-settings: inherit;
155
+ font-variation-settings: inherit;
156
+ letter-spacing: inherit;
157
+ color: inherit;
158
+ border-radius: 0;
159
+ background-color: transparent;
160
+ opacity: 1;
161
+ }
162
+ :where(select:is([multiple], [size])) optgroup {
163
+ font-weight: bolder;
164
+ }
165
+ :where(select:is([multiple], [size])) optgroup option {
166
+ padding-inline-start: 20px;
167
+ }
168
+ ::file-selector-button {
169
+ margin-inline-end: 4px;
170
+ }
171
+ ::placeholder {
172
+ opacity: 1;
173
+ }
174
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
175
+ ::placeholder {
176
+ color: currentcolor;
177
+ @supports (color: color-mix(in lab, red, red)) {
178
+ color: color-mix(in oklab, currentcolor 50%, transparent);
179
+ }
180
+ }
181
+ }
182
+ textarea {
183
+ resize: vertical;
184
+ }
185
+ ::-webkit-search-decoration {
186
+ -webkit-appearance: none;
187
+ }
188
+ ::-webkit-date-and-time-value {
189
+ min-height: 1lh;
190
+ text-align: inherit;
191
+ }
192
+ ::-webkit-datetime-edit {
193
+ display: inline-flex;
194
+ }
195
+ ::-webkit-datetime-edit-fields-wrapper {
196
+ padding: 0;
197
+ }
198
+ ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
199
+ padding-block: 0;
200
+ }
201
+ ::-webkit-calendar-picker-indicator {
202
+ line-height: 1;
203
+ }
204
+ :-moz-ui-invalid {
205
+ box-shadow: none;
206
+ }
207
+ button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
208
+ appearance: button;
209
+ }
210
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
211
+ height: auto;
212
+ }
213
+ [hidden]:where(:not([hidden="until-found"])) {
214
+ display: none !important;
215
+ }
216
+ }
217
+ @layer utilities {
218
+ .\@container {
219
+ container-type: inline-size;
220
+ }
221
+ .pointer-events-none {
222
+ pointer-events: none;
223
+ }
224
+ .collapse {
225
+ visibility: collapse;
226
+ }
227
+ .invisible {
228
+ visibility: hidden;
229
+ }
230
+ .visible {
231
+ visibility: visible;
232
+ }
233
+ .sr-only {
234
+ position: absolute;
235
+ width: 1px;
236
+ height: 1px;
237
+ padding: 0;
238
+ margin: -1px;
239
+ overflow: hidden;
240
+ clip-path: inset(50%);
241
+ white-space: nowrap;
242
+ border-width: 0;
243
+ }
244
+ .absolute {
245
+ position: absolute;
246
+ }
247
+ .fixed {
248
+ position: fixed;
249
+ }
250
+ .relative {
251
+ position: relative;
252
+ }
253
+ .static {
254
+ position: static;
255
+ }
256
+ .sticky {
257
+ position: sticky;
258
+ }
259
+ .top-0 {
260
+ top: calc(var(--spacing) * 0);
261
+ }
262
+ .top-\[0\.3rem\] {
263
+ top: 0.3rem;
264
+ }
265
+ .right-\[0\.3rem\] {
266
+ right: 0.3rem;
267
+ }
268
+ .isolate {
269
+ isolation: isolate;
270
+ }
271
+ .z-50 {
272
+ z-index: 50;
273
+ }
274
+ .float-left {
275
+ float: left;
276
+ }
277
+ .float-right {
278
+ float: right;
279
+ }
280
+ .\!container {
281
+ width: 100% !important;
282
+ @media (width >= 40rem) {
283
+ max-width: 40rem !important;
284
+ }
285
+ @media (width >= 48rem) {
286
+ max-width: 48rem !important;
287
+ }
288
+ @media (width >= 64rem) {
289
+ max-width: 64rem !important;
290
+ }
291
+ @media (width >= 80rem) {
292
+ max-width: 80rem !important;
293
+ }
294
+ @media (width >= 96rem) {
295
+ max-width: 96rem !important;
296
+ }
297
+ }
298
+ .container {
299
+ width: 100%;
300
+ @media (width >= 40rem) {
301
+ max-width: 40rem;
302
+ }
303
+ @media (width >= 48rem) {
304
+ max-width: 48rem;
305
+ }
306
+ @media (width >= 64rem) {
307
+ max-width: 64rem;
308
+ }
309
+ @media (width >= 80rem) {
310
+ max-width: 80rem;
311
+ }
312
+ @media (width >= 96rem) {
313
+ max-width: 96rem;
314
+ }
315
+ }
316
+ .mx-auto {
317
+ margin-inline: auto;
318
+ }
319
+ .mt-2 {
320
+ margin-top: calc(var(--spacing) * 2);
321
+ }
322
+ .mr-2 {
323
+ margin-right: calc(var(--spacing) * 2);
324
+ }
325
+ .mr-4 {
326
+ margin-right: calc(var(--spacing) * 4);
327
+ }
328
+ .mr-6 {
329
+ margin-right: calc(var(--spacing) * 6);
330
+ }
331
+ .mb-2 {
332
+ margin-bottom: calc(var(--spacing) * 2);
333
+ }
334
+ .\!hidden {
335
+ display: none !important;
336
+ }
337
+ .block {
338
+ display: block;
339
+ }
340
+ .contents {
341
+ display: contents;
342
+ }
343
+ .flex {
344
+ display: flex;
345
+ }
346
+ .grid {
347
+ display: grid;
348
+ }
349
+ .hidden {
350
+ display: none;
351
+ }
352
+ .inline {
353
+ display: inline;
354
+ }
355
+ .inline-block {
356
+ display: inline-block;
357
+ }
358
+ .inline-flex {
359
+ display: inline-flex;
360
+ }
361
+ .inline-grid {
362
+ display: inline-grid;
363
+ }
364
+ .table {
365
+ display: table;
366
+ }
367
+ .table-row {
368
+ display: table-row;
369
+ }
370
+ .h-2 {
371
+ height: calc(var(--spacing) * 2);
372
+ }
373
+ .h-4 {
374
+ height: calc(var(--spacing) * 4);
375
+ }
376
+ .h-5 {
377
+ height: calc(var(--spacing) * 5);
378
+ }
379
+ .h-8 {
380
+ height: calc(var(--spacing) * 8);
381
+ }
382
+ .h-9 {
383
+ height: calc(var(--spacing) * 9);
384
+ }
385
+ .h-10 {
386
+ height: calc(var(--spacing) * 10);
387
+ }
388
+ .h-11 {
389
+ height: calc(var(--spacing) * 11);
390
+ }
391
+ .h-14 {
392
+ height: calc(var(--spacing) * 14);
393
+ }
394
+ .h-full {
395
+ height: 100%;
396
+ }
397
+ .min-h-screen {
398
+ min-height: 100vh;
399
+ }
400
+ .w-2 {
401
+ width: calc(var(--spacing) * 2);
402
+ }
403
+ .w-4 {
404
+ width: calc(var(--spacing) * 4);
405
+ }
406
+ .w-8 {
407
+ width: calc(var(--spacing) * 8);
408
+ }
409
+ .w-10 {
410
+ width: calc(var(--spacing) * 10);
411
+ }
412
+ .w-full {
413
+ width: 100%;
414
+ }
415
+ .max-w-\[42rem\] {
416
+ max-width: 42rem;
417
+ }
418
+ .max-w-\[64rem\] {
419
+ max-width: 64rem;
420
+ }
421
+ .max-w-\[1100px\] {
422
+ max-width: 1100px;
423
+ }
424
+ .flex-1 {
425
+ flex: 1;
426
+ }
427
+ .flex-shrink {
428
+ flex-shrink: 1;
429
+ }
430
+ .shrink {
431
+ flex-shrink: 1;
432
+ }
433
+ .shrink-0 {
434
+ flex-shrink: 0;
435
+ }
436
+ .flex-grow {
437
+ flex-grow: 1;
438
+ }
439
+ .grow {
440
+ flex-grow: 1;
441
+ }
442
+ .transform {
443
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
444
+ }
445
+ .animate-ping {
446
+ animation: var(--animate-ping);
447
+ }
448
+ .resize {
449
+ resize: both;
450
+ }
451
+ .flex-col {
452
+ flex-direction: column;
453
+ }
454
+ .flex-wrap {
455
+ flex-wrap: wrap;
456
+ }
457
+ .items-center {
458
+ align-items: center;
459
+ }
460
+ .justify-between {
461
+ justify-content: space-between;
462
+ }
463
+ .justify-center {
464
+ justify-content: center;
465
+ }
466
+ .justify-start {
467
+ justify-content: flex-start;
468
+ }
469
+ .gap-1 {
470
+ gap: calc(var(--spacing) * 1);
471
+ }
472
+ .gap-1\.5 {
473
+ gap: calc(var(--spacing) * 1.5);
474
+ }
475
+ .gap-2 {
476
+ gap: calc(var(--spacing) * 2);
477
+ }
478
+ .gap-3 {
479
+ gap: calc(var(--spacing) * 3);
480
+ }
481
+ .gap-4 {
482
+ gap: calc(var(--spacing) * 4);
483
+ }
484
+ .gap-5 {
485
+ gap: calc(var(--spacing) * 5);
486
+ }
487
+ .space-y-6 {
488
+ :where(& > :not(:last-child)) {
489
+ --tw-space-y-reverse: 0;
490
+ margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
491
+ margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
492
+ }
493
+ }
494
+ .space-x-2 {
495
+ :where(& > :not(:last-child)) {
496
+ --tw-space-x-reverse: 0;
497
+ margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
498
+ margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
499
+ }
500
+ }
501
+ .space-x-6 {
502
+ :where(& > :not(:last-child)) {
503
+ --tw-space-x-reverse: 0;
504
+ margin-inline-start: calc(calc(var(--spacing) * 6) * var(--tw-space-x-reverse));
505
+ margin-inline-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-x-reverse)));
506
+ }
507
+ }
508
+ .truncate {
509
+ overflow: hidden;
510
+ text-overflow: ellipsis;
511
+ white-space: nowrap;
512
+ }
513
+ .overflow-hidden {
514
+ overflow: hidden;
515
+ }
516
+ .rounded {
517
+ border-radius: 0.25rem;
518
+ }
519
+ .rounded-\[0\.5rem\] {
520
+ border-radius: 0.5rem;
521
+ }
522
+ .rounded-full {
523
+ border-radius: calc(infinity * 1px);
524
+ }
525
+ .rounded-md {
526
+ border-radius: var(--radius-md);
527
+ }
528
+ .rounded-xl {
529
+ border-radius: var(--radius-xl);
530
+ }
531
+ .border {
532
+ border-style: var(--tw-border-style);
533
+ border-width: 1px;
534
+ }
535
+ .border-b {
536
+ border-bottom-style: var(--tw-border-style);
537
+ border-bottom-width: 1px;
538
+ }
539
+ .border-border {
540
+ border-color: var(--color-border);
541
+ }
542
+ .border-input {
543
+ border-color: var(--color-input);
544
+ }
545
+ .bg-background {
546
+ background-color: var(--color-background);
547
+ }
548
+ .bg-background\/95 {
549
+ background-color: var(--color-background);
550
+ @supports (color: color-mix(in lab, red, red)) {
551
+ background-color: color-mix(in oklab, var(--color-background) 95%, transparent);
552
+ }
553
+ }
554
+ .bg-destructive {
555
+ background-color: var(--color-destructive);
556
+ }
557
+ .bg-foreground {
558
+ background-color: var(--color-foreground);
559
+ }
560
+ .bg-muted {
561
+ background-color: var(--color-muted);
562
+ }
563
+ .bg-muted\/50 {
564
+ background-color: var(--color-muted);
565
+ @supports (color: color-mix(in lab, red, red)) {
566
+ background-color: color-mix(in oklab, var(--color-muted) 50%, transparent);
567
+ }
568
+ }
569
+ .bg-primary {
570
+ background-color: var(--color-primary);
571
+ }
572
+ .bg-secondary {
573
+ background-color: var(--color-secondary);
574
+ }
575
+ .bg-success {
576
+ background-color: var(--color-success);
577
+ }
578
+ .px-1\.5 {
579
+ padding-inline: calc(var(--spacing) * 1.5);
580
+ }
581
+ .px-2 {
582
+ padding-inline: calc(var(--spacing) * 2);
583
+ }
584
+ .px-3 {
585
+ padding-inline: calc(var(--spacing) * 3);
586
+ }
587
+ .px-4 {
588
+ padding-inline: calc(var(--spacing) * 4);
589
+ }
590
+ .px-8 {
591
+ padding-inline: calc(var(--spacing) * 8);
592
+ }
593
+ .py-1 {
594
+ padding-block: calc(var(--spacing) * 1);
595
+ }
596
+ .py-2 {
597
+ padding-block: calc(var(--spacing) * 2);
598
+ }
599
+ .pt-16 {
600
+ padding-top: calc(var(--spacing) * 16);
601
+ }
602
+ .pb-8 {
603
+ padding-bottom: calc(var(--spacing) * 8);
604
+ }
605
+ .pb-28 {
606
+ padding-bottom: calc(var(--spacing) * 28);
607
+ }
608
+ .text-center {
609
+ text-align: center;
610
+ }
611
+ .font-mono {
612
+ font-family: var(--font-mono);
613
+ }
614
+ .font-sans {
615
+ font-family: var(--font-sans);
616
+ }
617
+ .text-4xl {
618
+ font-size: var(--text-4xl);
619
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
620
+ }
621
+ .text-sm {
622
+ font-size: var(--text-sm);
623
+ line-height: var(--tw-leading, var(--text-sm--line-height));
624
+ }
625
+ .text-xs {
626
+ font-size: var(--text-xs);
627
+ line-height: var(--tw-leading, var(--text-xs--line-height));
628
+ }
629
+ .text-\[10px\] {
630
+ font-size: 10px;
631
+ }
632
+ .leading-\[1\.1\] {
633
+ --tw-leading: 1.1;
634
+ line-height: 1.1;
635
+ }
636
+ .leading-relaxed {
637
+ --tw-leading: var(--leading-relaxed);
638
+ line-height: var(--leading-relaxed);
639
+ }
640
+ .font-bold {
641
+ --tw-font-weight: var(--font-weight-bold);
642
+ font-weight: var(--font-weight-bold);
643
+ }
644
+ .font-extrabold {
645
+ --tw-font-weight: var(--font-weight-extrabold);
646
+ font-weight: var(--font-weight-extrabold);
647
+ }
648
+ .font-medium {
649
+ --tw-font-weight: var(--font-weight-medium);
650
+ font-weight: var(--font-weight-medium);
651
+ }
652
+ .font-normal {
653
+ --tw-font-weight: var(--font-weight-normal);
654
+ font-weight: var(--font-weight-normal);
655
+ }
656
+ .tracking-tight {
657
+ --tw-tracking: var(--tracking-tight);
658
+ letter-spacing: var(--tracking-tight);
659
+ }
660
+ .text-wrap {
661
+ text-wrap: wrap;
662
+ }
663
+ .whitespace-nowrap {
664
+ white-space: nowrap;
665
+ }
666
+ .text-card-foreground {
667
+ color: var(--color-card-foreground);
668
+ }
669
+ .text-destructive-foreground {
670
+ color: var(--color-destructive-foreground);
671
+ }
672
+ .text-foreground {
673
+ color: var(--color-foreground);
674
+ }
675
+ .text-foreground\/60 {
676
+ color: var(--color-foreground);
677
+ @supports (color: color-mix(in lab, red, red)) {
678
+ color: color-mix(in oklab, var(--color-foreground) 60%, transparent);
679
+ }
680
+ }
681
+ .text-muted-foreground {
682
+ color: var(--color-muted-foreground);
683
+ }
684
+ .text-primary {
685
+ color: var(--color-primary);
686
+ }
687
+ .text-primary-foreground {
688
+ color: var(--color-primary-foreground);
689
+ }
690
+ .text-secondary-foreground {
691
+ color: var(--color-secondary-foreground);
692
+ }
693
+ .text-success-foreground {
694
+ color: var(--color-success-foreground);
695
+ }
696
+ .lowercase {
697
+ text-transform: lowercase;
698
+ }
699
+ .uppercase {
700
+ text-transform: uppercase;
701
+ }
702
+ .italic {
703
+ font-style: italic;
704
+ }
705
+ .ordinal {
706
+ --tw-ordinal: ordinal;
707
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
708
+ }
709
+ .tabular-nums {
710
+ --tw-numeric-spacing: tabular-nums;
711
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
712
+ }
713
+ .overline {
714
+ text-decoration-line: overline;
715
+ }
716
+ .underline {
717
+ text-decoration-line: underline;
718
+ }
719
+ .underline-offset-4 {
720
+ text-underline-offset: 4px;
721
+ }
722
+ .antialiased {
723
+ -webkit-font-smoothing: antialiased;
724
+ -moz-osx-font-smoothing: grayscale;
725
+ }
726
+ .opacity-30 {
727
+ opacity: 30%;
728
+ }
729
+ .opacity-60 {
730
+ opacity: 60%;
731
+ }
732
+ .opacity-70 {
733
+ opacity: 70%;
734
+ }
735
+ .opacity-100 {
736
+ opacity: 100%;
737
+ }
738
+ .shadow {
739
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
740
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
741
+ }
742
+ .shadow-none {
743
+ --tw-shadow: 0 0 #0000;
744
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
745
+ }
746
+ .shadow-sm {
747
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
748
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
749
+ }
750
+ .ring {
751
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
752
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
753
+ }
754
+ .ring-offset-background {
755
+ --tw-ring-offset-color: var(--color-background);
756
+ }
757
+ .outline {
758
+ outline-style: var(--tw-outline-style);
759
+ outline-width: 1px;
760
+ }
761
+ .blur {
762
+ --tw-blur: blur(8px);
763
+ 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,);
764
+ }
765
+ .grayscale {
766
+ --tw-grayscale: grayscale(100%);
767
+ 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,);
768
+ }
769
+ .filter {
770
+ 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,);
771
+ }
772
+ .backdrop-blur {
773
+ --tw-backdrop-blur: blur(8px);
774
+ -webkit-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,);
775
+ 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,);
776
+ }
777
+ .transition {
778
+ 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, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
779
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
780
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
781
+ }
782
+ .transition-colors {
783
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
784
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
785
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
786
+ }
787
+ .ease-in-out {
788
+ --tw-ease: var(--ease-in-out);
789
+ transition-timing-function: var(--ease-in-out);
790
+ }
791
+ .ease-out {
792
+ --tw-ease: var(--ease-out);
793
+ transition-timing-function: var(--ease-out);
794
+ }
795
+ .select-all {
796
+ -webkit-user-select: all;
797
+ user-select: all;
798
+ }
799
+ .select-none {
800
+ -webkit-user-select: none;
801
+ user-select: none;
802
+ }
803
+ .selection\:bg-primary {
804
+ & *::selection {
805
+ background-color: var(--color-primary);
806
+ }
807
+ &::selection {
808
+ background-color: var(--color-primary);
809
+ }
810
+ }
811
+ .selection\:text-primary-foreground {
812
+ & *::selection {
813
+ color: var(--color-primary-foreground);
814
+ }
815
+ &::selection {
816
+ color: var(--color-primary-foreground);
817
+ }
818
+ }
819
+ .hover\:bg-accent {
820
+ &:hover {
821
+ @media (hover: hover) {
822
+ background-color: var(--color-accent);
823
+ }
824
+ }
825
+ }
826
+ .hover\:bg-destructive\/90 {
827
+ &:hover {
828
+ @media (hover: hover) {
829
+ background-color: var(--color-destructive);
830
+ @supports (color: color-mix(in lab, red, red)) {
831
+ background-color: color-mix(in oklab, var(--color-destructive) 90%, transparent);
832
+ }
833
+ }
834
+ }
835
+ }
836
+ .hover\:bg-primary\/90 {
837
+ &:hover {
838
+ @media (hover: hover) {
839
+ background-color: var(--color-primary);
840
+ @supports (color: color-mix(in lab, red, red)) {
841
+ background-color: color-mix(in oklab, var(--color-primary) 90%, transparent);
842
+ }
843
+ }
844
+ }
845
+ }
846
+ .hover\:bg-secondary\/80 {
847
+ &:hover {
848
+ @media (hover: hover) {
849
+ background-color: var(--color-secondary);
850
+ @supports (color: color-mix(in lab, red, red)) {
851
+ background-color: color-mix(in oklab, var(--color-secondary) 80%, transparent);
852
+ }
853
+ }
854
+ }
855
+ }
856
+ .hover\:bg-success\/90 {
857
+ &:hover {
858
+ @media (hover: hover) {
859
+ background-color: var(--color-success);
860
+ @supports (color: color-mix(in lab, red, red)) {
861
+ background-color: color-mix(in oklab, var(--color-success) 90%, transparent);
862
+ }
863
+ }
864
+ }
865
+ }
866
+ .hover\:text-accent-foreground {
867
+ &:hover {
868
+ @media (hover: hover) {
869
+ color: var(--color-accent-foreground);
870
+ }
871
+ }
872
+ }
873
+ .hover\:text-foreground {
874
+ &:hover {
875
+ @media (hover: hover) {
876
+ color: var(--color-foreground);
877
+ }
878
+ }
879
+ }
880
+ .hover\:text-foreground\/80 {
881
+ &:hover {
882
+ @media (hover: hover) {
883
+ color: var(--color-foreground);
884
+ @supports (color: color-mix(in lab, red, red)) {
885
+ color: color-mix(in oklab, var(--color-foreground) 80%, transparent);
886
+ }
887
+ }
888
+ }
889
+ }
890
+ .hover\:underline {
891
+ &:hover {
892
+ @media (hover: hover) {
893
+ text-decoration-line: underline;
894
+ }
895
+ }
896
+ }
897
+ .focus-visible\:ring-1 {
898
+ &:focus-visible {
899
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
900
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
901
+ }
902
+ }
903
+ .focus-visible\:ring-2 {
904
+ &:focus-visible {
905
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
906
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
907
+ }
908
+ }
909
+ .focus-visible\:ring-ring {
910
+ &:focus-visible {
911
+ --tw-ring-color: var(--color-ring);
912
+ }
913
+ }
914
+ .focus-visible\:ring-offset-2 {
915
+ &:focus-visible {
916
+ --tw-ring-offset-width: 2px;
917
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
918
+ }
919
+ }
920
+ .focus-visible\:outline-none {
921
+ &:focus-visible {
922
+ --tw-outline-style: none;
923
+ outline-style: none;
924
+ }
925
+ }
926
+ .disabled\:pointer-events-none {
927
+ &:disabled {
928
+ pointer-events: none;
929
+ }
930
+ }
931
+ .disabled\:opacity-50 {
932
+ &:disabled {
933
+ opacity: 50%;
934
+ }
935
+ }
936
+ .supports-\[backdrop-filter\]\:bg-background\/60 {
937
+ @supports (backdrop-filter: var(--tw)) {
938
+ background-color: var(--color-background);
939
+ @supports (color: color-mix(in lab, red, red)) {
940
+ background-color: color-mix(in oklab, var(--color-background) 60%, transparent);
941
+ }
942
+ }
943
+ }
944
+ .sm\:block {
945
+ @media (width >= 40rem) {
946
+ display: block;
947
+ }
948
+ }
949
+ .sm\:flex {
950
+ @media (width >= 40rem) {
951
+ display: flex;
952
+ }
953
+ }
954
+ .sm\:pr-12 {
955
+ @media (width >= 40rem) {
956
+ padding-right: calc(var(--spacing) * 12);
957
+ }
958
+ }
959
+ .sm\:text-5xl {
960
+ @media (width >= 40rem) {
961
+ font-size: var(--text-5xl);
962
+ line-height: var(--tw-leading, var(--text-5xl--line-height));
963
+ }
964
+ }
965
+ .sm\:text-xl {
966
+ @media (width >= 40rem) {
967
+ font-size: var(--text-xl);
968
+ line-height: var(--tw-leading, var(--text-xl--line-height));
969
+ }
970
+ }
971
+ .sm\:leading-8 {
972
+ @media (width >= 40rem) {
973
+ --tw-leading: calc(var(--spacing) * 8);
974
+ line-height: calc(var(--spacing) * 8);
975
+ }
976
+ }
977
+ .md\:flex {
978
+ @media (width >= 48rem) {
979
+ display: flex;
980
+ }
981
+ }
982
+ .md\:w-40 {
983
+ @media (width >= 48rem) {
984
+ width: calc(var(--spacing) * 40);
985
+ }
986
+ }
987
+ .md\:w-auto {
988
+ @media (width >= 48rem) {
989
+ width: auto;
990
+ }
991
+ }
992
+ .md\:flex-none {
993
+ @media (width >= 48rem) {
994
+ flex: none;
995
+ }
996
+ }
997
+ .md\:justify-end {
998
+ @media (width >= 48rem) {
999
+ justify-content: flex-end;
1000
+ }
1001
+ }
1002
+ .md\:pt-24 {
1003
+ @media (width >= 48rem) {
1004
+ padding-top: calc(var(--spacing) * 24);
1005
+ }
1006
+ }
1007
+ .md\:pb-12 {
1008
+ @media (width >= 48rem) {
1009
+ padding-bottom: calc(var(--spacing) * 12);
1010
+ }
1011
+ }
1012
+ .md\:text-6xl {
1013
+ @media (width >= 48rem) {
1014
+ font-size: var(--text-6xl);
1015
+ line-height: var(--tw-leading, var(--text-6xl--line-height));
1016
+ }
1017
+ }
1018
+ .lg\:hidden {
1019
+ @media (width >= 64rem) {
1020
+ display: none;
1021
+ }
1022
+ }
1023
+ .lg\:inline-flex {
1024
+ @media (width >= 64rem) {
1025
+ display: inline-flex;
1026
+ }
1027
+ }
1028
+ .lg\:w-64 {
1029
+ @media (width >= 64rem) {
1030
+ width: calc(var(--spacing) * 64);
1031
+ }
1032
+ }
1033
+ .lg\:px-8 {
1034
+ @media (width >= 64rem) {
1035
+ padding-inline: calc(var(--spacing) * 8);
1036
+ }
1037
+ }
1038
+ .lg\:py-32 {
1039
+ @media (width >= 64rem) {
1040
+ padding-block: calc(var(--spacing) * 32);
1041
+ }
1042
+ }
1043
+ .lg\:text-7xl {
1044
+ @media (width >= 64rem) {
1045
+ font-size: var(--text-7xl);
1046
+ line-height: var(--tw-leading, var(--text-7xl--line-height));
1047
+ }
1048
+ }
1049
+ }
1050
+ @layer base {
1051
+ :root {
1052
+ --background: #ffffff;
1053
+ --foreground: #09090b;
1054
+ --card: #ffffff;
1055
+ --card-foreground: #09090b;
1056
+ --popover: #ffffff;
1057
+ --popover-foreground: #09090b;
1058
+ --primary: #18181b;
1059
+ --primary-foreground: #fafafa;
1060
+ --secondary: #f4f4f5;
1061
+ --secondary-foreground: #18181b;
1062
+ --muted: #f4f4f5;
1063
+ --muted-foreground: #71717a;
1064
+ --accent: #f4f4f5;
1065
+ --accent-foreground: #18181b;
1066
+ --destructive: #ef4444;
1067
+ --destructive-foreground: #fafafa;
1068
+ --success: #16a34a;
1069
+ --success-foreground: #fafafa;
1070
+ --border: #e4e4e7;
1071
+ --input: #e4e4e7;
1072
+ --ring: #18181b;
1073
+ --radius: 0.5rem;
1074
+ }
1075
+ .dark {
1076
+ --background: #09090b;
1077
+ --foreground: #fafafa;
1078
+ --card: #09090b;
1079
+ --card-foreground: #fafafa;
1080
+ --popover: #09090b;
1081
+ --popover-foreground: #fafafa;
1082
+ --primary: #fafafa;
1083
+ --primary-foreground: #18181b;
1084
+ --secondary: #27272a;
1085
+ --secondary-foreground: #fafafa;
1086
+ --muted: #27272a;
1087
+ --muted-foreground: #a1a1aa;
1088
+ --accent: #27272a;
1089
+ --accent-foreground: #fafafa;
1090
+ --destructive: #7f1d1d;
1091
+ --destructive-foreground: #fafafa;
1092
+ --success: #15803d;
1093
+ --success-foreground: #fafafa;
1094
+ --border: #27272a;
1095
+ --input: #27272a;
1096
+ --ring: #d4d4d8;
1097
+ }
1098
+ * {
1099
+ border-color: var(--color-border);
1100
+ }
1101
+ body {
1102
+ background-color: var(--color-background);
1103
+ color: var(--color-foreground);
1104
+ }
1105
+ }
1106
+ @property --tw-rotate-x {
1107
+ syntax: "*";
1108
+ inherits: false;
1109
+ }
1110
+ @property --tw-rotate-y {
1111
+ syntax: "*";
1112
+ inherits: false;
1113
+ }
1114
+ @property --tw-rotate-z {
1115
+ syntax: "*";
1116
+ inherits: false;
1117
+ }
1118
+ @property --tw-skew-x {
1119
+ syntax: "*";
1120
+ inherits: false;
1121
+ }
1122
+ @property --tw-skew-y {
1123
+ syntax: "*";
1124
+ inherits: false;
1125
+ }
1126
+ @property --tw-space-y-reverse {
1127
+ syntax: "*";
1128
+ inherits: false;
1129
+ initial-value: 0;
1130
+ }
1131
+ @property --tw-space-x-reverse {
1132
+ syntax: "*";
1133
+ inherits: false;
1134
+ initial-value: 0;
1135
+ }
1136
+ @property --tw-border-style {
1137
+ syntax: "*";
1138
+ inherits: false;
1139
+ initial-value: solid;
1140
+ }
1141
+ @property --tw-leading {
1142
+ syntax: "*";
1143
+ inherits: false;
1144
+ }
1145
+ @property --tw-font-weight {
1146
+ syntax: "*";
1147
+ inherits: false;
1148
+ }
1149
+ @property --tw-tracking {
1150
+ syntax: "*";
1151
+ inherits: false;
1152
+ }
1153
+ @property --tw-ordinal {
1154
+ syntax: "*";
1155
+ inherits: false;
1156
+ }
1157
+ @property --tw-slashed-zero {
1158
+ syntax: "*";
1159
+ inherits: false;
1160
+ }
1161
+ @property --tw-numeric-figure {
1162
+ syntax: "*";
1163
+ inherits: false;
1164
+ }
1165
+ @property --tw-numeric-spacing {
1166
+ syntax: "*";
1167
+ inherits: false;
1168
+ }
1169
+ @property --tw-numeric-fraction {
1170
+ syntax: "*";
1171
+ inherits: false;
1172
+ }
1173
+ @property --tw-shadow {
1174
+ syntax: "*";
1175
+ inherits: false;
1176
+ initial-value: 0 0 #0000;
1177
+ }
1178
+ @property --tw-shadow-color {
1179
+ syntax: "*";
1180
+ inherits: false;
1181
+ }
1182
+ @property --tw-shadow-alpha {
1183
+ syntax: "<percentage>";
1184
+ inherits: false;
1185
+ initial-value: 100%;
1186
+ }
1187
+ @property --tw-inset-shadow {
1188
+ syntax: "*";
1189
+ inherits: false;
1190
+ initial-value: 0 0 #0000;
1191
+ }
1192
+ @property --tw-inset-shadow-color {
1193
+ syntax: "*";
1194
+ inherits: false;
1195
+ }
1196
+ @property --tw-inset-shadow-alpha {
1197
+ syntax: "<percentage>";
1198
+ inherits: false;
1199
+ initial-value: 100%;
1200
+ }
1201
+ @property --tw-ring-color {
1202
+ syntax: "*";
1203
+ inherits: false;
1204
+ }
1205
+ @property --tw-ring-shadow {
1206
+ syntax: "*";
1207
+ inherits: false;
1208
+ initial-value: 0 0 #0000;
1209
+ }
1210
+ @property --tw-inset-ring-color {
1211
+ syntax: "*";
1212
+ inherits: false;
1213
+ }
1214
+ @property --tw-inset-ring-shadow {
1215
+ syntax: "*";
1216
+ inherits: false;
1217
+ initial-value: 0 0 #0000;
1218
+ }
1219
+ @property --tw-ring-inset {
1220
+ syntax: "*";
1221
+ inherits: false;
1222
+ }
1223
+ @property --tw-ring-offset-width {
1224
+ syntax: "<length>";
1225
+ inherits: false;
1226
+ initial-value: 0px;
1227
+ }
1228
+ @property --tw-ring-offset-color {
1229
+ syntax: "*";
1230
+ inherits: false;
1231
+ initial-value: #fff;
1232
+ }
1233
+ @property --tw-ring-offset-shadow {
1234
+ syntax: "*";
1235
+ inherits: false;
1236
+ initial-value: 0 0 #0000;
1237
+ }
1238
+ @property --tw-outline-style {
1239
+ syntax: "*";
1240
+ inherits: false;
1241
+ initial-value: solid;
1242
+ }
1243
+ @property --tw-blur {
1244
+ syntax: "*";
1245
+ inherits: false;
1246
+ }
1247
+ @property --tw-brightness {
1248
+ syntax: "*";
1249
+ inherits: false;
1250
+ }
1251
+ @property --tw-contrast {
1252
+ syntax: "*";
1253
+ inherits: false;
1254
+ }
1255
+ @property --tw-grayscale {
1256
+ syntax: "*";
1257
+ inherits: false;
1258
+ }
1259
+ @property --tw-hue-rotate {
1260
+ syntax: "*";
1261
+ inherits: false;
1262
+ }
1263
+ @property --tw-invert {
1264
+ syntax: "*";
1265
+ inherits: false;
1266
+ }
1267
+ @property --tw-opacity {
1268
+ syntax: "*";
1269
+ inherits: false;
1270
+ }
1271
+ @property --tw-saturate {
1272
+ syntax: "*";
1273
+ inherits: false;
1274
+ }
1275
+ @property --tw-sepia {
1276
+ syntax: "*";
1277
+ inherits: false;
1278
+ }
1279
+ @property --tw-drop-shadow {
1280
+ syntax: "*";
1281
+ inherits: false;
1282
+ }
1283
+ @property --tw-drop-shadow-color {
1284
+ syntax: "*";
1285
+ inherits: false;
1286
+ }
1287
+ @property --tw-drop-shadow-alpha {
1288
+ syntax: "<percentage>";
1289
+ inherits: false;
1290
+ initial-value: 100%;
1291
+ }
1292
+ @property --tw-drop-shadow-size {
1293
+ syntax: "*";
1294
+ inherits: false;
1295
+ }
1296
+ @property --tw-backdrop-blur {
1297
+ syntax: "*";
1298
+ inherits: false;
1299
+ }
1300
+ @property --tw-backdrop-brightness {
1301
+ syntax: "*";
1302
+ inherits: false;
1303
+ }
1304
+ @property --tw-backdrop-contrast {
1305
+ syntax: "*";
1306
+ inherits: false;
1307
+ }
1308
+ @property --tw-backdrop-grayscale {
1309
+ syntax: "*";
1310
+ inherits: false;
1311
+ }
1312
+ @property --tw-backdrop-hue-rotate {
1313
+ syntax: "*";
1314
+ inherits: false;
1315
+ }
1316
+ @property --tw-backdrop-invert {
1317
+ syntax: "*";
1318
+ inherits: false;
1319
+ }
1320
+ @property --tw-backdrop-opacity {
1321
+ syntax: "*";
1322
+ inherits: false;
1323
+ }
1324
+ @property --tw-backdrop-saturate {
1325
+ syntax: "*";
1326
+ inherits: false;
1327
+ }
1328
+ @property --tw-backdrop-sepia {
1329
+ syntax: "*";
1330
+ inherits: false;
1331
+ }
1332
+ @property --tw-ease {
1333
+ syntax: "*";
1334
+ inherits: false;
1335
+ }
1336
+ @keyframes spin {
1337
+ to {
1338
+ transform: rotate(360deg);
1339
+ }
1340
+ }
1341
+ @keyframes ping {
1342
+ 75%, 100% {
1343
+ transform: scale(2);
1344
+ opacity: 0;
1345
+ }
1346
+ }
1347
+ @layer properties {
1348
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1349
+ *, ::before, ::after, ::backdrop {
1350
+ --tw-rotate-x: initial;
1351
+ --tw-rotate-y: initial;
1352
+ --tw-rotate-z: initial;
1353
+ --tw-skew-x: initial;
1354
+ --tw-skew-y: initial;
1355
+ --tw-space-y-reverse: 0;
1356
+ --tw-space-x-reverse: 0;
1357
+ --tw-border-style: solid;
1358
+ --tw-leading: initial;
1359
+ --tw-font-weight: initial;
1360
+ --tw-tracking: initial;
1361
+ --tw-ordinal: initial;
1362
+ --tw-slashed-zero: initial;
1363
+ --tw-numeric-figure: initial;
1364
+ --tw-numeric-spacing: initial;
1365
+ --tw-numeric-fraction: initial;
1366
+ --tw-shadow: 0 0 #0000;
1367
+ --tw-shadow-color: initial;
1368
+ --tw-shadow-alpha: 100%;
1369
+ --tw-inset-shadow: 0 0 #0000;
1370
+ --tw-inset-shadow-color: initial;
1371
+ --tw-inset-shadow-alpha: 100%;
1372
+ --tw-ring-color: initial;
1373
+ --tw-ring-shadow: 0 0 #0000;
1374
+ --tw-inset-ring-color: initial;
1375
+ --tw-inset-ring-shadow: 0 0 #0000;
1376
+ --tw-ring-inset: initial;
1377
+ --tw-ring-offset-width: 0px;
1378
+ --tw-ring-offset-color: #fff;
1379
+ --tw-ring-offset-shadow: 0 0 #0000;
1380
+ --tw-outline-style: solid;
1381
+ --tw-blur: initial;
1382
+ --tw-brightness: initial;
1383
+ --tw-contrast: initial;
1384
+ --tw-grayscale: initial;
1385
+ --tw-hue-rotate: initial;
1386
+ --tw-invert: initial;
1387
+ --tw-opacity: initial;
1388
+ --tw-saturate: initial;
1389
+ --tw-sepia: initial;
1390
+ --tw-drop-shadow: initial;
1391
+ --tw-drop-shadow-color: initial;
1392
+ --tw-drop-shadow-alpha: 100%;
1393
+ --tw-drop-shadow-size: initial;
1394
+ --tw-backdrop-blur: initial;
1395
+ --tw-backdrop-brightness: initial;
1396
+ --tw-backdrop-contrast: initial;
1397
+ --tw-backdrop-grayscale: initial;
1398
+ --tw-backdrop-hue-rotate: initial;
1399
+ --tw-backdrop-invert: initial;
1400
+ --tw-backdrop-opacity: initial;
1401
+ --tw-backdrop-saturate: initial;
1402
+ --tw-backdrop-sepia: initial;
1403
+ --tw-ease: initial;
1404
+ }
1405
+ }
1406
+ }