jett.admin.npmpackage 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css ADDED
@@ -0,0 +1,909 @@
1
+ /* dist/index.css */
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-red-50: oklch(97.1% 0.013 17.38);
25
+ --color-red-100: oklch(93.6% 0.032 17.717);
26
+ --color-red-500: oklch(63.7% 0.237 25.331);
27
+ --color-red-800: oklch(44.4% 0.177 26.899);
28
+ --color-yellow-100: oklch(97.3% 0.071 103.193);
29
+ --color-yellow-800: oklch(47.6% 0.114 61.907);
30
+ --color-green-100: oklch(96.2% 0.044 156.743);
31
+ --color-green-800: oklch(44.8% 0.119 151.328);
32
+ --color-blue-600: oklch(54.6% 0.245 262.881);
33
+ --color-gray-50: oklch(98.5% 0.002 247.839);
34
+ --color-gray-100: oklch(96.7% 0.003 264.542);
35
+ --color-gray-200: oklch(92.8% 0.006 264.531);
36
+ --color-gray-300: oklch(87.2% 0.01 258.338);
37
+ --color-gray-400: oklch(70.7% 0.022 261.325);
38
+ --color-gray-500: oklch(55.1% 0.027 264.364);
39
+ --color-gray-600: oklch(44.6% 0.03 256.802);
40
+ --color-gray-700: oklch(37.3% 0.034 259.733);
41
+ --color-black: #000;
42
+ --color-white: #fff;
43
+ --spacing: 0.25rem;
44
+ --text-xs: 0.75rem;
45
+ --text-xs--line-height: calc(1 / 0.75);
46
+ --text-sm: 0.875rem;
47
+ --text-sm--line-height: calc(1.25 / 0.875);
48
+ --text-lg: 1.125rem;
49
+ --text-lg--line-height: calc(1.75 / 1.125);
50
+ --text-2xl: 1.5rem;
51
+ --text-2xl--line-height: calc(2 / 1.5);
52
+ --font-weight-medium: 500;
53
+ --font-weight-semibold: 600;
54
+ --font-weight-bold: 700;
55
+ --radius-sm: 0.25rem;
56
+ --radius-md: 0.375rem;
57
+ --radius-lg: 0.5rem;
58
+ --default-transition-duration: 150ms;
59
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
60
+ --default-font-family: var(--font-sans);
61
+ --default-mono-font-family: var(--font-mono);
62
+ }
63
+ }
64
+ @layer base {
65
+ *,
66
+ ::after,
67
+ ::before,
68
+ ::backdrop,
69
+ ::file-selector-button {
70
+ box-sizing: border-box;
71
+ margin: 0;
72
+ padding: 0;
73
+ border: 0 solid;
74
+ }
75
+ html,
76
+ :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,
95
+ h2,
96
+ h3,
97
+ h4,
98
+ h5,
99
+ h6 {
100
+ font-size: inherit;
101
+ font-weight: inherit;
102
+ }
103
+ a {
104
+ color: inherit;
105
+ -webkit-text-decoration: inherit;
106
+ text-decoration: inherit;
107
+ }
108
+ b,
109
+ strong {
110
+ font-weight: bolder;
111
+ }
112
+ code,
113
+ kbd,
114
+ samp,
115
+ pre {
116
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
117
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
118
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
119
+ font-size: 1em;
120
+ }
121
+ small {
122
+ font-size: 80%;
123
+ }
124
+ sub,
125
+ sup {
126
+ font-size: 75%;
127
+ line-height: 0;
128
+ position: relative;
129
+ vertical-align: baseline;
130
+ }
131
+ sub {
132
+ bottom: -0.25em;
133
+ }
134
+ sup {
135
+ top: -0.5em;
136
+ }
137
+ table {
138
+ text-indent: 0;
139
+ border-color: inherit;
140
+ border-collapse: collapse;
141
+ }
142
+ :-moz-focusring {
143
+ outline: auto;
144
+ }
145
+ progress {
146
+ vertical-align: baseline;
147
+ }
148
+ summary {
149
+ display: list-item;
150
+ }
151
+ ol,
152
+ ul,
153
+ menu {
154
+ list-style: none;
155
+ }
156
+ img,
157
+ svg,
158
+ video,
159
+ canvas,
160
+ audio,
161
+ iframe,
162
+ embed,
163
+ object {
164
+ display: block;
165
+ vertical-align: middle;
166
+ }
167
+ img,
168
+ video {
169
+ max-width: 100%;
170
+ height: auto;
171
+ }
172
+ button,
173
+ input,
174
+ select,
175
+ optgroup,
176
+ textarea,
177
+ ::file-selector-button {
178
+ font: inherit;
179
+ font-feature-settings: inherit;
180
+ font-variation-settings: inherit;
181
+ letter-spacing: inherit;
182
+ color: inherit;
183
+ border-radius: 0;
184
+ background-color: transparent;
185
+ opacity: 1;
186
+ }
187
+ :where(select:is([multiple], [size])) optgroup {
188
+ font-weight: bolder;
189
+ }
190
+ :where(select:is([multiple], [size])) optgroup option {
191
+ padding-inline-start: 20px;
192
+ }
193
+ ::file-selector-button {
194
+ margin-inline-end: 4px;
195
+ }
196
+ ::placeholder {
197
+ opacity: 1;
198
+ }
199
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
200
+ ::placeholder {
201
+ color: currentcolor;
202
+ @supports (color: color-mix(in lab, red, red)) {
203
+ color: color-mix(in oklab, currentcolor 50%, transparent);
204
+ }
205
+ }
206
+ }
207
+ textarea {
208
+ resize: vertical;
209
+ }
210
+ ::-webkit-search-decoration {
211
+ -webkit-appearance: none;
212
+ }
213
+ ::-webkit-date-and-time-value {
214
+ min-height: 1lh;
215
+ text-align: inherit;
216
+ }
217
+ ::-webkit-datetime-edit {
218
+ display: inline-flex;
219
+ }
220
+ ::-webkit-datetime-edit-fields-wrapper {
221
+ padding: 0;
222
+ }
223
+ ::-webkit-datetime-edit,
224
+ ::-webkit-datetime-edit-year-field,
225
+ ::-webkit-datetime-edit-month-field,
226
+ ::-webkit-datetime-edit-day-field,
227
+ ::-webkit-datetime-edit-hour-field,
228
+ ::-webkit-datetime-edit-minute-field,
229
+ ::-webkit-datetime-edit-second-field,
230
+ ::-webkit-datetime-edit-millisecond-field,
231
+ ::-webkit-datetime-edit-meridiem-field {
232
+ padding-block: 0;
233
+ }
234
+ ::-webkit-calendar-picker-indicator {
235
+ line-height: 1;
236
+ }
237
+ :-moz-ui-invalid {
238
+ box-shadow: none;
239
+ }
240
+ button,
241
+ input:where([type=button], [type=reset], [type=submit]),
242
+ ::file-selector-button {
243
+ appearance: button;
244
+ }
245
+ ::-webkit-inner-spin-button,
246
+ ::-webkit-outer-spin-button {
247
+ height: auto;
248
+ }
249
+ [hidden]:where(:not([hidden=until-found])) {
250
+ display: none !important;
251
+ }
252
+ }
253
+ @layer utilities {
254
+ .absolute {
255
+ position: absolute;
256
+ }
257
+ .relative {
258
+ position: relative;
259
+ }
260
+ .sticky {
261
+ position: sticky;
262
+ }
263
+ .top-full {
264
+ top: 100%;
265
+ }
266
+ .bottom-0 {
267
+ bottom: calc(var(--spacing) * 0);
268
+ }
269
+ .z-10 {
270
+ z-index: 10;
271
+ }
272
+ .mt-1 {
273
+ margin-top: calc(var(--spacing) * 1);
274
+ }
275
+ .mt-4 {
276
+ margin-top: calc(var(--spacing) * 4);
277
+ }
278
+ .mt-auto {
279
+ margin-top: auto;
280
+ }
281
+ .mr-2 {
282
+ margin-right: calc(var(--spacing) * 2);
283
+ }
284
+ .mb-1 {
285
+ margin-bottom: calc(var(--spacing) * 1);
286
+ }
287
+ .mb-2 {
288
+ margin-bottom: calc(var(--spacing) * 2);
289
+ }
290
+ .mb-4 {
291
+ margin-bottom: calc(var(--spacing) * 4);
292
+ }
293
+ .mb-6 {
294
+ margin-bottom: calc(var(--spacing) * 6);
295
+ }
296
+ .ml-\[40px\] {
297
+ margin-left: 40px;
298
+ }
299
+ .ml-auto {
300
+ margin-left: auto;
301
+ }
302
+ .flex {
303
+ display: flex;
304
+ }
305
+ .hidden {
306
+ display: none;
307
+ }
308
+ .inline-block {
309
+ display: inline-block;
310
+ }
311
+ .inline-flex {
312
+ display: inline-flex;
313
+ }
314
+ .h-2 {
315
+ height: calc(var(--spacing) * 2);
316
+ }
317
+ .h-4 {
318
+ height: calc(var(--spacing) * 4);
319
+ }
320
+ .h-6 {
321
+ height: calc(var(--spacing) * 6);
322
+ }
323
+ .h-10 {
324
+ height: calc(var(--spacing) * 10);
325
+ }
326
+ .h-auto {
327
+ height: auto;
328
+ }
329
+ .h-full {
330
+ height: 100%;
331
+ }
332
+ .max-h-0 {
333
+ max-height: calc(var(--spacing) * 0);
334
+ }
335
+ .max-h-60 {
336
+ max-height: calc(var(--spacing) * 60);
337
+ }
338
+ .min-h-10 {
339
+ min-height: calc(var(--spacing) * 10);
340
+ }
341
+ .min-h-\[50px\] {
342
+ min-height: 50px;
343
+ }
344
+ .w-4 {
345
+ width: calc(var(--spacing) * 4);
346
+ }
347
+ .w-6 {
348
+ width: calc(var(--spacing) * 6);
349
+ }
350
+ .w-10 {
351
+ width: calc(var(--spacing) * 10);
352
+ }
353
+ .w-11 {
354
+ width: calc(var(--spacing) * 11);
355
+ }
356
+ .w-24 {
357
+ width: calc(var(--spacing) * 24);
358
+ }
359
+ .w-72 {
360
+ width: calc(var(--spacing) * 72);
361
+ }
362
+ .w-full {
363
+ width: 100%;
364
+ }
365
+ .flex-1 {
366
+ flex: 1;
367
+ }
368
+ .shrink-0 {
369
+ flex-shrink: 0;
370
+ }
371
+ .translate-x-1 {
372
+ --tw-translate-x: calc(var(--spacing) * 1);
373
+ translate: var(--tw-translate-x) var(--tw-translate-y);
374
+ }
375
+ .translate-x-6 {
376
+ --tw-translate-x: calc(var(--spacing) * 6);
377
+ translate: var(--tw-translate-x) var(--tw-translate-y);
378
+ }
379
+ .rotate-180 {
380
+ rotate: 180deg;
381
+ }
382
+ .transform {
383
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
384
+ }
385
+ .cursor-not-allowed {
386
+ cursor: not-allowed;
387
+ }
388
+ .cursor-pointer {
389
+ cursor: pointer;
390
+ }
391
+ .cursor-text {
392
+ cursor: text;
393
+ }
394
+ .flex-col {
395
+ flex-direction: column;
396
+ }
397
+ .flex-wrap {
398
+ flex-wrap: wrap;
399
+ }
400
+ .items-center {
401
+ align-items: center;
402
+ }
403
+ .items-start {
404
+ align-items: flex-start;
405
+ }
406
+ .justify-between {
407
+ justify-content: space-between;
408
+ }
409
+ .justify-center {
410
+ justify-content: center;
411
+ }
412
+ .gap-1 {
413
+ gap: calc(var(--spacing) * 1);
414
+ }
415
+ .gap-2 {
416
+ gap: calc(var(--spacing) * 2);
417
+ }
418
+ .gap-3 {
419
+ gap: calc(var(--spacing) * 3);
420
+ }
421
+ .truncate {
422
+ overflow: hidden;
423
+ text-overflow: ellipsis;
424
+ white-space: nowrap;
425
+ }
426
+ .overflow-hidden {
427
+ overflow: hidden;
428
+ }
429
+ .overflow-y-auto {
430
+ overflow-y: auto;
431
+ }
432
+ .rounded {
433
+ border-radius: 0.25rem;
434
+ }
435
+ .rounded-\[6px\] {
436
+ border-radius: 6px;
437
+ }
438
+ .rounded-full {
439
+ border-radius: calc(infinity * 1px);
440
+ }
441
+ .rounded-lg {
442
+ border-radius: var(--radius-lg);
443
+ }
444
+ .rounded-md {
445
+ border-radius: var(--radius-md);
446
+ }
447
+ .rounded-sm {
448
+ border-radius: var(--radius-sm);
449
+ }
450
+ .border {
451
+ border-style: var(--tw-border-style);
452
+ border-width: 1px;
453
+ }
454
+ .border-2 {
455
+ border-style: var(--tw-border-style);
456
+ border-width: 2px;
457
+ }
458
+ .border-t {
459
+ border-top-style: var(--tw-border-style);
460
+ border-top-width: 1px;
461
+ }
462
+ .border-r {
463
+ border-right-style: var(--tw-border-style);
464
+ border-right-width: 1px;
465
+ }
466
+ .border-b {
467
+ border-bottom-style: var(--tw-border-style);
468
+ border-bottom-width: 1px;
469
+ }
470
+ .border-dashed {
471
+ --tw-border-style: dashed;
472
+ border-style: dashed;
473
+ }
474
+ .border-\[\#e5e5e5\] {
475
+ border-color: #e5e5e5;
476
+ }
477
+ .border-\[hsl\(0_0\%_89\.8\%\)\] {
478
+ border-color: hsl(0 0% 89.8%);
479
+ }
480
+ .border-blue-600 {
481
+ border-color: var(--color-blue-600);
482
+ }
483
+ .border-gray-200 {
484
+ border-color: var(--color-gray-200);
485
+ }
486
+ .border-gray-300 {
487
+ border-color: var(--color-gray-300);
488
+ }
489
+ .border-gray-400 {
490
+ border-color: var(--color-gray-400);
491
+ }
492
+ .border-red-500 {
493
+ border-color: var(--color-red-500);
494
+ }
495
+ .bg-black {
496
+ background-color: var(--color-black);
497
+ }
498
+ .bg-blue-600 {
499
+ background-color: var(--color-blue-600);
500
+ }
501
+ .bg-gray-50 {
502
+ background-color: var(--color-gray-50);
503
+ }
504
+ .bg-gray-100 {
505
+ background-color: var(--color-gray-100);
506
+ }
507
+ .bg-gray-200 {
508
+ background-color: var(--color-gray-200);
509
+ }
510
+ .bg-gray-300 {
511
+ background-color: var(--color-gray-300);
512
+ }
513
+ .bg-green-100 {
514
+ background-color: var(--color-green-100);
515
+ }
516
+ .bg-red-50 {
517
+ background-color: var(--color-red-50);
518
+ }
519
+ .bg-red-100 {
520
+ background-color: var(--color-red-100);
521
+ }
522
+ .bg-transparent {
523
+ background-color: transparent;
524
+ }
525
+ .bg-white {
526
+ background-color: var(--color-white);
527
+ }
528
+ .bg-yellow-100 {
529
+ background-color: var(--color-yellow-100);
530
+ }
531
+ .p-2 {
532
+ padding: calc(var(--spacing) * 2);
533
+ }
534
+ .p-4 {
535
+ padding: calc(var(--spacing) * 4);
536
+ }
537
+ .p-6 {
538
+ padding: calc(var(--spacing) * 6);
539
+ }
540
+ .px-2 {
541
+ padding-inline: calc(var(--spacing) * 2);
542
+ }
543
+ .px-3 {
544
+ padding-inline: calc(var(--spacing) * 3);
545
+ }
546
+ .px-4 {
547
+ padding-inline: calc(var(--spacing) * 4);
548
+ }
549
+ .py-0\.5 {
550
+ padding-block: calc(var(--spacing) * 0.5);
551
+ }
552
+ .py-1 {
553
+ padding-block: calc(var(--spacing) * 1);
554
+ }
555
+ .py-2 {
556
+ padding-block: calc(var(--spacing) * 2);
557
+ }
558
+ .pt-2 {
559
+ padding-top: calc(var(--spacing) * 2);
560
+ }
561
+ .text-center {
562
+ text-align: center;
563
+ }
564
+ .text-2xl {
565
+ font-size: var(--text-2xl);
566
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
567
+ }
568
+ .text-lg {
569
+ font-size: var(--text-lg);
570
+ line-height: var(--tw-leading, var(--text-lg--line-height));
571
+ }
572
+ .text-sm {
573
+ font-size: var(--text-sm);
574
+ line-height: var(--tw-leading, var(--text-sm--line-height));
575
+ }
576
+ .text-xs {
577
+ font-size: var(--text-xs);
578
+ line-height: var(--tw-leading, var(--text-xs--line-height));
579
+ }
580
+ .text-\[12px\] {
581
+ font-size: 12px;
582
+ }
583
+ .text-\[14px\] {
584
+ font-size: 14px;
585
+ }
586
+ .leading-5 {
587
+ --tw-leading: calc(var(--spacing) * 5);
588
+ line-height: calc(var(--spacing) * 5);
589
+ }
590
+ .leading-6 {
591
+ --tw-leading: calc(var(--spacing) * 6);
592
+ line-height: calc(var(--spacing) * 6);
593
+ }
594
+ .font-\[500\] {
595
+ --tw-font-weight: 500;
596
+ font-weight: 500;
597
+ }
598
+ .font-\[600\] {
599
+ --tw-font-weight: 600;
600
+ font-weight: 600;
601
+ }
602
+ .font-bold {
603
+ --tw-font-weight: var(--font-weight-bold);
604
+ font-weight: var(--font-weight-bold);
605
+ }
606
+ .font-medium {
607
+ --tw-font-weight: var(--font-weight-medium);
608
+ font-weight: var(--font-weight-medium);
609
+ }
610
+ .font-semibold {
611
+ --tw-font-weight: var(--font-weight-semibold);
612
+ font-weight: var(--font-weight-semibold);
613
+ }
614
+ .text-\[\#374151\] {
615
+ color: #374151;
616
+ }
617
+ .text-\[\#737373\] {
618
+ color: #737373;
619
+ }
620
+ .text-black {
621
+ color: var(--color-black);
622
+ }
623
+ .text-gray-400 {
624
+ color: var(--color-gray-400);
625
+ }
626
+ .text-gray-500 {
627
+ color: var(--color-gray-500);
628
+ }
629
+ .text-gray-600 {
630
+ color: var(--color-gray-600);
631
+ }
632
+ .text-gray-700 {
633
+ color: var(--color-gray-700);
634
+ }
635
+ .text-green-800 {
636
+ color: var(--color-green-800);
637
+ }
638
+ .text-red-500 {
639
+ color: var(--color-red-500);
640
+ }
641
+ .text-red-800 {
642
+ color: var(--color-red-800);
643
+ }
644
+ .text-white {
645
+ color: var(--color-white);
646
+ }
647
+ .text-yellow-800 {
648
+ color: var(--color-yellow-800);
649
+ }
650
+ .shadow {
651
+ --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));
652
+ box-shadow:
653
+ var(--tw-inset-shadow),
654
+ var(--tw-inset-ring-shadow),
655
+ var(--tw-ring-offset-shadow),
656
+ var(--tw-ring-shadow),
657
+ var(--tw-shadow);
658
+ }
659
+ .shadow-lg {
660
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
661
+ box-shadow:
662
+ var(--tw-inset-shadow),
663
+ var(--tw-inset-ring-shadow),
664
+ var(--tw-ring-offset-shadow),
665
+ var(--tw-ring-shadow),
666
+ var(--tw-shadow);
667
+ }
668
+ .outline-offset-2 {
669
+ outline-offset: 2px;
670
+ }
671
+ .outline-black {
672
+ outline-color: var(--color-black);
673
+ }
674
+ .transition {
675
+ transition-property:
676
+ color,
677
+ background-color,
678
+ border-color,
679
+ outline-color,
680
+ text-decoration-color,
681
+ fill,
682
+ stroke,
683
+ --tw-gradient-from,
684
+ --tw-gradient-via,
685
+ --tw-gradient-to,
686
+ opacity,
687
+ box-shadow,
688
+ transform,
689
+ translate,
690
+ scale,
691
+ rotate,
692
+ filter,
693
+ -webkit-backdrop-filter,
694
+ backdrop-filter,
695
+ display,
696
+ content-visibility,
697
+ overlay,
698
+ pointer-events;
699
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
700
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
701
+ }
702
+ .transition-all {
703
+ transition-property: all;
704
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
705
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
706
+ }
707
+ .transition-colors {
708
+ transition-property:
709
+ color,
710
+ background-color,
711
+ border-color,
712
+ outline-color,
713
+ text-decoration-color,
714
+ fill,
715
+ stroke,
716
+ --tw-gradient-from,
717
+ --tw-gradient-via,
718
+ --tw-gradient-to;
719
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
720
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
721
+ }
722
+ .transition-transform {
723
+ transition-property:
724
+ transform,
725
+ translate,
726
+ scale,
727
+ rotate;
728
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
729
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
730
+ }
731
+ .delay-75 {
732
+ transition-delay: 75ms;
733
+ }
734
+ .duration-300 {
735
+ --tw-duration: 300ms;
736
+ transition-duration: 300ms;
737
+ }
738
+ .select-none {
739
+ -webkit-user-select: none;
740
+ user-select: none;
741
+ }
742
+ .peer-checked\:border-black {
743
+ &:is(:where(.peer):checked ~ *) {
744
+ border-color: var(--color-black);
745
+ }
746
+ }
747
+ .peer-checked\:bg-black {
748
+ &:is(:where(.peer):checked ~ *) {
749
+ background-color: var(--color-black);
750
+ }
751
+ }
752
+ .focus-within\:outline-2 {
753
+ &:focus-within {
754
+ outline-style: var(--tw-outline-style);
755
+ outline-width: 2px;
756
+ }
757
+ }
758
+ .focus-within\:outline-offset-2 {
759
+ &:focus-within {
760
+ outline-offset: 2px;
761
+ }
762
+ }
763
+ .focus-within\:outline-black {
764
+ &:focus-within {
765
+ outline-color: var(--color-black);
766
+ }
767
+ }
768
+ .hover\:border-gray-400 {
769
+ &:hover {
770
+ @media (hover: hover) {
771
+ border-color: var(--color-gray-400);
772
+ }
773
+ }
774
+ }
775
+ .hover\:bg-\[\#f3f4f6\] {
776
+ &:hover {
777
+ @media (hover: hover) {
778
+ background-color: #f3f4f6;
779
+ }
780
+ }
781
+ }
782
+ .hover\:bg-gray-100 {
783
+ &:hover {
784
+ @media (hover: hover) {
785
+ background-color: var(--color-gray-100);
786
+ }
787
+ }
788
+ }
789
+ .hover\:text-gray-700 {
790
+ &:hover {
791
+ @media (hover: hover) {
792
+ color: var(--color-gray-700);
793
+ }
794
+ }
795
+ }
796
+ .focus\:border-black {
797
+ &:focus {
798
+ border-color: var(--color-black);
799
+ }
800
+ }
801
+ .focus\:shadow-none {
802
+ &:focus {
803
+ --tw-shadow: 0 0 #0000;
804
+ box-shadow:
805
+ var(--tw-inset-shadow),
806
+ var(--tw-inset-ring-shadow),
807
+ var(--tw-ring-offset-shadow),
808
+ var(--tw-ring-shadow),
809
+ var(--tw-shadow);
810
+ }
811
+ }
812
+ .focus\:ring-0 {
813
+ &:focus {
814
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
815
+ box-shadow:
816
+ var(--tw-inset-shadow),
817
+ var(--tw-inset-ring-shadow),
818
+ var(--tw-ring-offset-shadow),
819
+ var(--tw-ring-shadow),
820
+ var(--tw-shadow);
821
+ }
822
+ }
823
+ .focus\:outline-2 {
824
+ &:focus {
825
+ outline-style: var(--tw-outline-style);
826
+ outline-width: 2px;
827
+ }
828
+ }
829
+ .focus\:outline-offset-2 {
830
+ &:focus {
831
+ outline-offset: 2px;
832
+ }
833
+ }
834
+ .focus\:outline-black {
835
+ &:focus {
836
+ outline-color: var(--color-black);
837
+ }
838
+ }
839
+ .focus\:outline-none {
840
+ &:focus {
841
+ --tw-outline-style: none;
842
+ outline-style: none;
843
+ }
844
+ }
845
+ }
846
+ @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
847
+ @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
848
+ @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
849
+ @property --tw-rotate-x { syntax: "*"; inherits: false; }
850
+ @property --tw-rotate-y { syntax: "*"; inherits: false; }
851
+ @property --tw-rotate-z { syntax: "*"; inherits: false; }
852
+ @property --tw-skew-x { syntax: "*"; inherits: false; }
853
+ @property --tw-skew-y { syntax: "*"; inherits: false; }
854
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
855
+ @property --tw-leading { syntax: "*"; inherits: false; }
856
+ @property --tw-font-weight { syntax: "*"; inherits: false; }
857
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
858
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
859
+ @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
860
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
861
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
862
+ @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
863
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
864
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
865
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
866
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
867
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
868
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
869
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
870
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
871
+ @property --tw-duration { syntax: "*"; inherits: false; }
872
+ @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
873
+ @layer properties {
874
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
875
+ *,
876
+ ::before,
877
+ ::after,
878
+ ::backdrop {
879
+ --tw-translate-x: 0;
880
+ --tw-translate-y: 0;
881
+ --tw-translate-z: 0;
882
+ --tw-rotate-x: initial;
883
+ --tw-rotate-y: initial;
884
+ --tw-rotate-z: initial;
885
+ --tw-skew-x: initial;
886
+ --tw-skew-y: initial;
887
+ --tw-border-style: solid;
888
+ --tw-leading: initial;
889
+ --tw-font-weight: initial;
890
+ --tw-shadow: 0 0 #0000;
891
+ --tw-shadow-color: initial;
892
+ --tw-shadow-alpha: 100%;
893
+ --tw-inset-shadow: 0 0 #0000;
894
+ --tw-inset-shadow-color: initial;
895
+ --tw-inset-shadow-alpha: 100%;
896
+ --tw-ring-color: initial;
897
+ --tw-ring-shadow: 0 0 #0000;
898
+ --tw-inset-ring-color: initial;
899
+ --tw-inset-ring-shadow: 0 0 #0000;
900
+ --tw-ring-inset: initial;
901
+ --tw-ring-offset-width: 0px;
902
+ --tw-ring-offset-color: #fff;
903
+ --tw-ring-offset-shadow: 0 0 #0000;
904
+ --tw-duration: initial;
905
+ --tw-outline-style: solid;
906
+ }
907
+ }
908
+ }
909
+ /*! tailwindcss v4.1.13 | MIT License | https://tailwindcss.com */