singularity-components 0.1.64 → 0.1.66

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/main.css CHANGED
@@ -1,6 +1,4 @@
1
- @import "tailwindcss" prefix(sg);
2
-
3
- /* src/css/variables.css */
1
+ /* src/tailwind.css */
4
2
  :root {
5
3
  --sg-black: 0 0% 15%;
6
4
  --sg-white: 30 20% 98%;
@@ -28,10 +26,611 @@
28
26
  --sg-spacing-36: 9rem;
29
27
  --sg-spacing-40: 10rem;
30
28
  }
31
-
32
- /* src/tailwind.css */
33
- @plugin "tailwindcss-animate";
34
- @custom-variant dark (&:is(.dark *));
29
+ @layer theme, base, components, utilities;
30
+ @layer theme {
31
+ :root,
32
+ :host {
33
+ --sg-spacing: 0.25rem;
34
+ --sg-text-xs: 0.75rem;
35
+ --sg-text-xs--line-height: calc(1 / 0.75);
36
+ --sg-text-sm: 0.875rem;
37
+ --sg-text-sm--line-height: calc(1.25 / 0.875);
38
+ --sg-text-base: 1rem;
39
+ --sg-text-base--line-height: calc(1.5 / 1);
40
+ --sg-text-lg: 1.125rem;
41
+ --sg-text-lg--line-height: calc(1.75 / 1.125);
42
+ --sg-text-xl: 1.25rem;
43
+ --sg-text-xl--line-height: calc(1.75 / 1.25);
44
+ --sg-text-2xl: 1.5rem;
45
+ --sg-text-2xl--line-height: calc(2 / 1.5);
46
+ --sg-text-3xl: 1.875rem;
47
+ --sg-text-3xl--line-height: calc(2.25 / 1.875);
48
+ --sg-text-4xl: 2.25rem;
49
+ --sg-text-4xl--line-height: calc(2.5 / 2.25);
50
+ --sg-text-5xl: 3rem;
51
+ --sg-text-5xl--line-height: 1;
52
+ --sg-font-weight-normal: 400;
53
+ --sg-font-weight-medium: 500;
54
+ --sg-font-weight-semibold: 600;
55
+ --sg-font-weight-bold: 700;
56
+ --sg-font-weight-extrabold: 800;
57
+ --sg-tracking-tight: -0.025em;
58
+ --sg-default-transition-duration: 150ms;
59
+ --sg-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
60
+ --sg-color-black: var(--sg-color-black);
61
+ --sg-color-white: var(--sg-color-white);
62
+ --sg-color-gray: var(--sg-color-gray);
63
+ --sg-color-purple: var(--sg-color-purple);
64
+ --sg-color-background: var(--sg-color-background);
65
+ --sg-color-foreground: var(--sg-color-foreground);
66
+ }
67
+ }
68
+ @layer base {
69
+ *,
70
+ ::after,
71
+ ::before,
72
+ ::backdrop,
73
+ ::file-selector-button {
74
+ box-sizing: border-box;
75
+ margin: 0;
76
+ padding: 0;
77
+ border: 0 solid;
78
+ }
79
+ html,
80
+ :host {
81
+ line-height: 1.5;
82
+ -webkit-text-size-adjust: 100%;
83
+ tab-size: 4;
84
+ font-family:
85
+ ui-sans-serif,
86
+ system-ui,
87
+ sans-serif,
88
+ "Apple Color Emoji",
89
+ "Segoe UI Emoji",
90
+ "Segoe UI Symbol",
91
+ "Noto Color Emoji";
92
+ font-feature-settings: initial;
93
+ font-variation-settings: initial;
94
+ -webkit-tap-highlight-color: transparent;
95
+ }
96
+ hr {
97
+ height: 0;
98
+ color: inherit;
99
+ border-top-width: 1px;
100
+ }
101
+ abbr:where([title]) {
102
+ -webkit-text-decoration: underline dotted;
103
+ text-decoration: underline dotted;
104
+ }
105
+ h1,
106
+ h2,
107
+ h3,
108
+ h4,
109
+ h5,
110
+ h6 {
111
+ font-size: inherit;
112
+ font-weight: inherit;
113
+ }
114
+ a {
115
+ color: inherit;
116
+ -webkit-text-decoration: inherit;
117
+ text-decoration: inherit;
118
+ }
119
+ b,
120
+ strong {
121
+ font-weight: bolder;
122
+ }
123
+ code,
124
+ kbd,
125
+ samp,
126
+ pre {
127
+ font-family:
128
+ ui-monospace,
129
+ SFMono-Regular,
130
+ Menlo,
131
+ Monaco,
132
+ Consolas,
133
+ "Liberation Mono",
134
+ "Courier New",
135
+ monospace;
136
+ font-feature-settings: initial;
137
+ font-variation-settings: initial;
138
+ font-size: 1em;
139
+ }
140
+ small {
141
+ font-size: 80%;
142
+ }
143
+ sub,
144
+ sup {
145
+ font-size: 75%;
146
+ line-height: 0;
147
+ position: relative;
148
+ vertical-align: baseline;
149
+ }
150
+ sub {
151
+ bottom: -0.25em;
152
+ }
153
+ sup {
154
+ top: -0.5em;
155
+ }
156
+ table {
157
+ text-indent: 0;
158
+ border-color: inherit;
159
+ border-collapse: collapse;
160
+ }
161
+ :-moz-focusring {
162
+ outline: auto;
163
+ }
164
+ progress {
165
+ vertical-align: baseline;
166
+ }
167
+ summary {
168
+ display: list-item;
169
+ }
170
+ ol,
171
+ ul,
172
+ menu {
173
+ list-style: none;
174
+ }
175
+ img,
176
+ svg,
177
+ video,
178
+ canvas,
179
+ audio,
180
+ iframe,
181
+ embed,
182
+ object {
183
+ display: block;
184
+ vertical-align: middle;
185
+ }
186
+ img,
187
+ video {
188
+ max-width: 100%;
189
+ height: auto;
190
+ }
191
+ button,
192
+ input,
193
+ select,
194
+ optgroup,
195
+ textarea,
196
+ ::file-selector-button {
197
+ font: inherit;
198
+ font-feature-settings: inherit;
199
+ font-variation-settings: inherit;
200
+ letter-spacing: inherit;
201
+ color: inherit;
202
+ border-radius: 0;
203
+ background-color: transparent;
204
+ opacity: 1;
205
+ }
206
+ :where(select:is([multiple], [size])) optgroup {
207
+ font-weight: bolder;
208
+ }
209
+ :where(select:is([multiple], [size])) optgroup option {
210
+ padding-inline-start: 20px;
211
+ }
212
+ ::file-selector-button {
213
+ margin-inline-end: 4px;
214
+ }
215
+ ::placeholder {
216
+ opacity: 1;
217
+ }
218
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
219
+ ::placeholder {
220
+ color: color-mix(in oklab, currentColor 50%, transparent);
221
+ }
222
+ }
223
+ textarea {
224
+ resize: vertical;
225
+ }
226
+ ::-webkit-search-decoration {
227
+ -webkit-appearance: none;
228
+ }
229
+ ::-webkit-date-and-time-value {
230
+ min-height: 1lh;
231
+ text-align: inherit;
232
+ }
233
+ ::-webkit-datetime-edit {
234
+ display: inline-flex;
235
+ }
236
+ ::-webkit-datetime-edit-fields-wrapper {
237
+ padding: 0;
238
+ }
239
+ ::-webkit-datetime-edit,
240
+ ::-webkit-datetime-edit-year-field,
241
+ ::-webkit-datetime-edit-month-field,
242
+ ::-webkit-datetime-edit-day-field,
243
+ ::-webkit-datetime-edit-hour-field,
244
+ ::-webkit-datetime-edit-minute-field,
245
+ ::-webkit-datetime-edit-second-field,
246
+ ::-webkit-datetime-edit-millisecond-field,
247
+ ::-webkit-datetime-edit-meridiem-field {
248
+ padding-block: 0;
249
+ }
250
+ :-moz-ui-invalid {
251
+ box-shadow: none;
252
+ }
253
+ button,
254
+ input:where([type=button], [type=reset], [type=submit]),
255
+ ::file-selector-button {
256
+ appearance: button;
257
+ }
258
+ ::-webkit-inner-spin-button,
259
+ ::-webkit-outer-spin-button {
260
+ height: auto;
261
+ }
262
+ [hidden]:where(:not([hidden=until-found])) {
263
+ display: none !important;
264
+ }
265
+ }
266
+ @layer utilities {
267
+ .sg\:pointer-events-none {
268
+ pointer-events: none;
269
+ }
270
+ .sg\:relative {
271
+ position: relative;
272
+ }
273
+ .sg\:mx-auto {
274
+ margin-inline: auto;
275
+ }
276
+ .sg\:mt-4 {
277
+ margin-top: calc(var(--sg-spacing) * 4);
278
+ }
279
+ .sg\:flex {
280
+ display: flex;
281
+ }
282
+ .sg\:grid {
283
+ display: grid;
284
+ }
285
+ .sg\:inline-flex {
286
+ display: inline-flex;
287
+ }
288
+ .sg\:size-4 {
289
+ width: calc(var(--sg-spacing) * 4);
290
+ height: calc(var(--sg-spacing) * 4);
291
+ }
292
+ .sg\:size-9 {
293
+ width: calc(var(--sg-spacing) * 9);
294
+ height: calc(var(--sg-spacing) * 9);
295
+ }
296
+ .sg\:h-8 {
297
+ height: calc(var(--sg-spacing) * 8);
298
+ }
299
+ .sg\:h-9 {
300
+ height: calc(var(--sg-spacing) * 9);
301
+ }
302
+ .sg\:h-10 {
303
+ height: calc(var(--sg-spacing) * 10);
304
+ }
305
+ .sg\:w-fit {
306
+ width: fit-content;
307
+ }
308
+ .sg\:w-full {
309
+ width: 100%;
310
+ }
311
+ .sg\:max-w-\[768px\] {
312
+ max-width: 768px;
313
+ }
314
+ .sg\:min-w-0 {
315
+ min-width: calc(var(--sg-spacing) * 0);
316
+ }
317
+ .sg\:flex-1 {
318
+ flex: 1;
319
+ }
320
+ .sg\:shrink-0 {
321
+ flex-shrink: 0;
322
+ }
323
+ .sg\:caption-bottom {
324
+ caption-side: bottom;
325
+ }
326
+ .sg\:translate-y-0\.5 {
327
+ --tw-translate-y: calc(var(--sg-spacing) * 0.5);
328
+ translate: var(--tw-translate-x) var(--tw-translate-y);
329
+ }
330
+ .sg\:grid-cols-1 {
331
+ grid-template-columns: repeat(1, minmax(0, 1fr));
332
+ }
333
+ .sg\:items-center {
334
+ align-items: center;
335
+ }
336
+ .sg\:items-start {
337
+ align-items: flex-start;
338
+ }
339
+ .sg\:justify-between {
340
+ justify-content: space-between;
341
+ }
342
+ .sg\:justify-center {
343
+ justify-content: center;
344
+ }
345
+ .sg\:gap-1 {
346
+ gap: calc(var(--sg-spacing) * 1);
347
+ }
348
+ .sg\:gap-1\.5 {
349
+ gap: calc(var(--sg-spacing) * 1.5);
350
+ }
351
+ .sg\:gap-2 {
352
+ gap: calc(var(--sg-spacing) * 2);
353
+ }
354
+ .sg\:gap-4 {
355
+ gap: calc(var(--sg-spacing) * 4);
356
+ }
357
+ .sg\:overflow-hidden {
358
+ overflow: hidden;
359
+ }
360
+ .sg\:overflow-x-auto {
361
+ overflow-x: auto;
362
+ }
363
+ .sg\:rounded-md {
364
+ border-radius: calc(var(--radius) - 2px);
365
+ }
366
+ .sg\:border {
367
+ border-style: var(--tw-border-style);
368
+ border-width: 1px;
369
+ }
370
+ .sg\:border-t {
371
+ border-top-style: var(--tw-border-style);
372
+ border-top-width: 1px;
373
+ }
374
+ .sg\:border-b {
375
+ border-bottom-style: var(--tw-border-style);
376
+ border-bottom-width: 1px;
377
+ }
378
+ .sg\:border-input {
379
+ border-color: var(--input);
380
+ }
381
+ .sg\:border-transparent {
382
+ border-color: transparent;
383
+ }
384
+ .sg\:bg-background {
385
+ background-color: var(--sg-color-background);
386
+ }
387
+ .sg\:bg-black {
388
+ background-color: var(--sg-color-black);
389
+ }
390
+ .sg\:bg-destructive {
391
+ background-color: var(--sg-destructive);
392
+ }
393
+ .sg\:bg-foreground {
394
+ background-color: var(--sg-color-foreground);
395
+ }
396
+ .sg\:bg-gray {
397
+ background-color: var(--sg-color-gray);
398
+ }
399
+ .sg\:bg-muted\/50 {
400
+ background-color: color-mix(in oklab, var(--muted) 50%, transparent);
401
+ }
402
+ .sg\:bg-primary {
403
+ background-color: var(--sg-primary);
404
+ }
405
+ .sg\:bg-purple {
406
+ background-color: var(--sg-color-purple);
407
+ }
408
+ .sg\:bg-secondary {
409
+ background-color: var(--sg-secondary);
410
+ }
411
+ .sg\:bg-transparent {
412
+ background-color: transparent;
413
+ }
414
+ .sg\:bg-white {
415
+ background-color: var(--sg-color-white);
416
+ }
417
+ .sg\:p-2 {
418
+ padding: calc(var(--sg-spacing) * 2);
419
+ }
420
+ .sg\:px-2 {
421
+ padding-inline: calc(var(--sg-spacing) * 2);
422
+ }
423
+ .sg\:px-3 {
424
+ padding-inline: calc(var(--sg-spacing) * 3);
425
+ }
426
+ .sg\:px-4 {
427
+ padding-inline: calc(var(--sg-spacing) * 4);
428
+ }
429
+ .sg\:px-6 {
430
+ padding-inline: calc(var(--sg-spacing) * 6);
431
+ }
432
+ .sg\:py-0\.5 {
433
+ padding-block: calc(var(--sg-spacing) * 0.5);
434
+ }
435
+ .sg\:py-1 {
436
+ padding-block: calc(var(--sg-spacing) * 1);
437
+ }
438
+ .sg\:py-2 {
439
+ padding-block: calc(var(--sg-spacing) * 2);
440
+ }
441
+ .sg\:py-4 {
442
+ padding-block: calc(var(--sg-spacing) * 4);
443
+ }
444
+ .sg\:pt-0 {
445
+ padding-top: calc(var(--sg-spacing) * 0);
446
+ }
447
+ .sg\:pb-4 {
448
+ padding-bottom: calc(var(--sg-spacing) * 4);
449
+ }
450
+ .sg\:text-left {
451
+ text-align: left;
452
+ }
453
+ .sg\:align-middle {
454
+ vertical-align: middle;
455
+ }
456
+ .sg\:text-2xl {
457
+ font-size: var(--sg-text-2xl);
458
+ line-height: var(--tw-leading, var(--sg-text-2xl--line-height));
459
+ }
460
+ .sg\:text-3xl {
461
+ font-size: var(--sg-text-3xl);
462
+ line-height: var(--tw-leading, var(--sg-text-3xl--line-height));
463
+ }
464
+ .sg\:text-4xl {
465
+ font-size: var(--sg-text-4xl);
466
+ line-height: var(--tw-leading, var(--sg-text-4xl--line-height));
467
+ }
468
+ .sg\:text-base {
469
+ font-size: var(--sg-text-base);
470
+ line-height: var(--tw-leading, var(--sg-text-base--line-height));
471
+ }
472
+ .sg\:text-lg {
473
+ font-size: var(--sg-text-lg);
474
+ line-height: var(--tw-leading, var(--sg-text-lg--line-height));
475
+ }
476
+ .sg\:text-sm {
477
+ font-size: var(--sg-text-sm);
478
+ line-height: var(--tw-leading, var(--sg-text-sm--line-height));
479
+ }
480
+ .sg\:text-xl {
481
+ font-size: var(--sg-text-xl);
482
+ line-height: var(--tw-leading, var(--sg-text-xl--line-height));
483
+ }
484
+ .sg\:text-xs {
485
+ font-size: var(--sg-text-xs);
486
+ line-height: var(--tw-leading, var(--sg-text-xs--line-height));
487
+ }
488
+ .sg\:font-bold {
489
+ --tw-font-weight: var(--sg-font-weight-bold);
490
+ font-weight: var(--sg-font-weight-bold);
491
+ }
492
+ .sg\:font-extrabold {
493
+ --tw-font-weight: var(--sg-font-weight-extrabold);
494
+ font-weight: var(--sg-font-weight-extrabold);
495
+ }
496
+ .sg\:font-medium {
497
+ --tw-font-weight: var(--sg-font-weight-medium);
498
+ font-weight: var(--sg-font-weight-medium);
499
+ }
500
+ .sg\:font-normal {
501
+ --tw-font-weight: var(--sg-font-weight-normal);
502
+ font-weight: var(--sg-font-weight-normal);
503
+ }
504
+ .sg\:font-semibold {
505
+ --tw-font-weight: var(--sg-font-weight-semibold);
506
+ font-weight: var(--sg-font-weight-semibold);
507
+ }
508
+ .sg\:tracking-tight {
509
+ --tw-tracking: var(--sg-tracking-tight);
510
+ letter-spacing: var(--sg-tracking-tight);
511
+ }
512
+ .sg\:whitespace-nowrap {
513
+ white-space: nowrap;
514
+ }
515
+ .sg\:text-accent-foreground {
516
+ color: var(--accent-foreground);
517
+ }
518
+ .sg\:text-background {
519
+ color: var(--sg-color-background);
520
+ }
521
+ .sg\:text-destructive {
522
+ color: var(--sg-destructive);
523
+ }
524
+ .sg\:text-foreground {
525
+ color: var(--sg-color-foreground);
526
+ }
527
+ .sg\:text-muted-foreground {
528
+ color: var(--muted-foreground);
529
+ }
530
+ .sg\:text-primary {
531
+ color: var(--sg-primary);
532
+ }
533
+ .sg\:text-primary-foreground {
534
+ color: var(--sg-primary-foreground);
535
+ }
536
+ .sg\:text-purple {
537
+ color: var(--sg-color-purple);
538
+ }
539
+ .sg\:text-secondary-foreground {
540
+ color: var(--sg-secondary-foreground);
541
+ }
542
+ .sg\:text-white {
543
+ color: var(--sg-color-white);
544
+ }
545
+ .sg\:underline-offset-4 {
546
+ text-underline-offset: 4px;
547
+ }
548
+ .sg\:shadow-xs {
549
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
550
+ box-shadow:
551
+ var(--tw-inset-shadow),
552
+ var(--tw-inset-ring-shadow),
553
+ var(--tw-ring-offset-shadow),
554
+ var(--tw-ring-shadow),
555
+ var(--tw-shadow);
556
+ }
557
+ .sg\:transition-\[color\,box-shadow\] {
558
+ transition-property: color, box-shadow;
559
+ transition-timing-function: var(--tw-ease, var(--sg-default-transition-timing-function));
560
+ transition-duration: var(--tw-duration, var(--sg-default-transition-duration));
561
+ }
562
+ .sg\:transition-all {
563
+ transition-property: all;
564
+ transition-timing-function: var(--tw-ease, var(--sg-default-transition-timing-function));
565
+ transition-duration: var(--tw-duration, var(--sg-default-transition-duration));
566
+ }
567
+ .sg\:transition-colors {
568
+ transition-property:
569
+ color,
570
+ background-color,
571
+ border-color,
572
+ outline-color,
573
+ text-decoration-color,
574
+ fill,
575
+ stroke,
576
+ --tw-gradient-from,
577
+ --tw-gradient-via,
578
+ --tw-gradient-to;
579
+ transition-timing-function: var(--tw-ease, var(--sg-default-transition-timing-function));
580
+ transition-duration: var(--tw-duration, var(--sg-default-transition-duration));
581
+ }
582
+ .sg\:transition-transform {
583
+ transition-property:
584
+ transform,
585
+ translate,
586
+ scale,
587
+ rotate;
588
+ transition-timing-function: var(--tw-ease, var(--sg-default-transition-timing-function));
589
+ transition-duration: var(--tw-duration, var(--sg-default-transition-duration));
590
+ }
591
+ .sg\:duration-200 {
592
+ --tw-duration: 200ms;
593
+ transition-duration: 200ms;
594
+ }
595
+ .sg\:outline-none {
596
+ --tw-outline-style: none;
597
+ outline-style: none;
598
+ }
599
+ .sg\:duration-200 {
600
+ animation-duration: 200ms;
601
+ }
602
+ .sg\:first\:mt-0 {
603
+ &:first-child {
604
+ margin-top: calc(var(--sg-spacing) * 0);
605
+ }
606
+ }
607
+ .sg\:md\:grid-cols-2 {
608
+ @media (width >= 48rem) {
609
+ grid-template-columns: repeat(2, minmax(0, 1fr));
610
+ }
611
+ }
612
+ .sg\:md\:grid-cols-3 {
613
+ @media (width >= 48rem) {
614
+ grid-template-columns: repeat(3, minmax(0, 1fr));
615
+ }
616
+ }
617
+ .sg\:md\:grid-cols-4 {
618
+ @media (width >= 48rem) {
619
+ grid-template-columns: repeat(4, minmax(0, 1fr));
620
+ }
621
+ }
622
+ .sg\:md\:px-0 {
623
+ @media (width >= 48rem) {
624
+ padding-inline: calc(var(--sg-spacing) * 0);
625
+ }
626
+ }
627
+ .sg\:lg\:text-5xl {
628
+ @media (width >= 64rem) {
629
+ font-size: var(--sg-text-5xl);
630
+ line-height: var(--tw-leading, var(--sg-text-5xl--line-height));
631
+ }
632
+ }
633
+ }
35
634
  :root {
36
635
  --sg-color-black: hsl(var(--sg-black));
37
636
  --sg-color-white: hsl(var(--sg-white));
@@ -105,13 +704,46 @@
105
704
  --sidebar-border: oklch(0.269 0 0);
106
705
  --sidebar-ring: oklch(0.439 0 0);
107
706
  }
108
- @theme inline { --color-*: initial; --color-black: var(--sg-color-black); --color-white: var(--sg-color-white); --color-gray: var(--sg-color-gray); --color-purple: var(--sg-color-purple); --color-background: var(--sg-color-background); --color-foreground: var(--sg-color-foreground); --color-primary: var(--sg-primary); --color-primary-foreground: var(--sg-primary-foreground); --color-secondary: var(--sg-secondary); --color-secondary-foreground: var(--sg-secondary-foreground); --color-destructive: var(--sg-destructive); --color-destructive-foreground: var(--sg-destructive-foreground); --color-card: var(--card); --color-card-foreground: var(--card-foreground); --color-popover: var(--popover); --color-popover-foreground: var(--popover-foreground); --color-muted: var(--muted); --color-muted-foreground: var(--muted-foreground); --color-accent: var(--accent); --color-accent-foreground: var(--accent-foreground); --color-border: var(--border); --color-input: var(--input); --color-ring: var(--ring); --color-chart-1: var(--chart-1); --color-chart-2: var(--chart-2); --color-chart-3: var(--chart-3); --color-chart-4: var(--chart-4); --color-chart-5: var(--chart-5); --radius-sm: calc(var(--radius) - 4px); --radius-md: calc(var(--radius) - 2px); --radius-lg: var(--radius); --radius-xl: calc(var(--radius) + 4px); --color-sidebar: var(--sidebar); --color-sidebar-foreground: var(--sidebar-foreground); --color-sidebar-primary: var(--sidebar-primary); --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); --color-sidebar-accent: var(--sidebar-accent); --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); --color-sidebar-border: var(--sidebar-border); --color-sidebar-ring: var(--sidebar-ring); }
109
707
  @layer base {
110
708
  * {
111
- @apply sg:border-border sg:outline-ring/50;
709
+ border-color: var(--border);
710
+ outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
112
711
  }
113
712
  body {
114
- @apply sg:bg-background sg:text-foreground;
713
+ background-color: var(--sg-color-background);
714
+ color: var(--sg-color-foreground);
715
+ }
716
+ }
717
+ @keyframes enter {
718
+ from {
719
+ opacity: var(--tw-enter-opacity, 1);
720
+ transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
721
+ }
722
+ }
723
+ @keyframes exit {
724
+ to {
725
+ opacity: var(--tw-exit-opacity, 1);
726
+ transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
115
727
  }
116
728
  }
729
+ @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
730
+ @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
731
+ @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
732
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
733
+ @property --tw-font-weight { syntax: "*"; inherits: false; }
734
+ @property --tw-tracking { syntax: "*"; inherits: false; }
735
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
736
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
737
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
738
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
739
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
740
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
741
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
742
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
743
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
744
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
745
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
746
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
747
+ @property --tw-duration { syntax: "*"; inherits: false; }
748
+ /*! tailwindcss v4.0.17 | MIT License | https://tailwindcss.com */
117
749
  /*# sourceMappingURL=main.css.map */