@pactor-app/ui 0.1.0 → 1.1.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/chunk-6B5ZX7L3.js +3537 -0
- package/dist/chunk-6JNCDPGS.js +257 -0
- package/dist/chunk-BVHAP22U.js +3085 -0
- package/dist/{chunk-OH3U6PCM.js → chunk-BZSRLTQQ.js} +60 -66
- package/dist/chunk-F3H23KYG.js +330 -0
- package/dist/{chunk-SNFDI77B.js → chunk-GL7IO22L.js} +94 -5
- package/dist/{chunk-DMK6RSTK.js → chunk-GV5R6TUT.js} +18 -11
- package/dist/components/index.cjs +6134 -471
- package/dist/components/index.d.cts +1561 -30
- package/dist/components/index.d.ts +1561 -30
- package/dist/components/index.js +130 -6
- package/dist/index.cjs +6410 -979
- package/dist/index.d.cts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +132 -10
- package/dist/interaction/index.cjs +152 -77
- package/dist/interaction/index.d.cts +7 -5
- package/dist/interaction/index.d.ts +7 -5
- package/dist/interaction/index.js +2 -3
- package/dist/layout/index.cjs +229 -71
- package/dist/layout/index.js +3 -3
- package/dist/typography-DsGdDBc2.d.cts +24 -0
- package/dist/typography-DsGdDBc2.d.ts +24 -0
- package/dist/ui/index.cjs +2969 -172
- package/dist/ui/index.d.cts +416 -14
- package/dist/ui/index.d.ts +416 -14
- package/dist/ui/index.js +330 -126
- package/package.json +13 -5
- package/styles.css +1202 -6
- package/dist/chunk-57NRUZ5G.js +0 -95
- package/dist/chunk-OUTSIJMO.js +0 -442
- package/dist/chunk-QDTVOJ5P.js +0 -147
- package/dist/chunk-QWZ23QLS.js +0 -68
- package/dist/chunk-XGOTHOI6.js +0 -619
package/styles.css
CHANGED
|
@@ -8,6 +8,10 @@
|
|
|
8
8
|
"Segoe UI Symbol", "Noto Color Emoji";
|
|
9
9
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
10
10
|
"Courier New", monospace;
|
|
11
|
+
--color-amber-400: oklch(82.8% 0.189 84.429);
|
|
12
|
+
--color-amber-600: oklch(66.6% 0.179 58.318);
|
|
13
|
+
--color-green-400: oklch(79.2% 0.209 151.711);
|
|
14
|
+
--color-green-600: oklch(62.7% 0.194 149.214);
|
|
11
15
|
--color-black: #000;
|
|
12
16
|
--spacing: 0.25rem;
|
|
13
17
|
--container-sm: 24rem;
|
|
@@ -16,19 +20,28 @@
|
|
|
16
20
|
--text-xs--line-height: calc(1 / 0.75);
|
|
17
21
|
--text-sm: 0.875rem;
|
|
18
22
|
--text-sm--line-height: calc(1.25 / 0.875);
|
|
23
|
+
--text-base: 1rem;
|
|
24
|
+
--text-base--line-height: calc(1.5 / 1);
|
|
19
25
|
--text-lg: 1.125rem;
|
|
20
26
|
--text-lg--line-height: calc(1.75 / 1.125);
|
|
21
27
|
--text-xl: 1.25rem;
|
|
22
28
|
--text-xl--line-height: calc(1.75 / 1.25);
|
|
23
29
|
--text-2xl: 1.5rem;
|
|
24
30
|
--text-2xl--line-height: calc(2 / 1.5);
|
|
31
|
+
--text-3xl: 1.875rem;
|
|
32
|
+
--text-3xl--line-height: calc(2.25 / 1.875);
|
|
33
|
+
--text-4xl: 2.25rem;
|
|
34
|
+
--text-4xl--line-height: calc(2.5 / 2.25);
|
|
25
35
|
--font-weight-normal: 400;
|
|
26
36
|
--font-weight-medium: 500;
|
|
27
37
|
--font-weight-semibold: 600;
|
|
28
38
|
--font-weight-bold: 700;
|
|
39
|
+
--font-weight-extrabold: 800;
|
|
29
40
|
--tracking-tight: -0.025em;
|
|
30
41
|
--leading-relaxed: 1.625;
|
|
31
42
|
--radius-xs: 0.125rem;
|
|
43
|
+
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
44
|
+
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
32
45
|
--animate-spin: spin 1s linear infinite;
|
|
33
46
|
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
34
47
|
--default-transition-duration: 150ms;
|
|
@@ -189,6 +202,15 @@
|
|
|
189
202
|
.pointer-events-none {
|
|
190
203
|
pointer-events: none;
|
|
191
204
|
}
|
|
205
|
+
.collapse {
|
|
206
|
+
visibility: collapse;
|
|
207
|
+
}
|
|
208
|
+
.invisible {
|
|
209
|
+
visibility: hidden;
|
|
210
|
+
}
|
|
211
|
+
.visible {
|
|
212
|
+
visibility: visible;
|
|
213
|
+
}
|
|
192
214
|
.sr-only {
|
|
193
215
|
position: absolute;
|
|
194
216
|
width: 1px;
|
|
@@ -218,12 +240,21 @@
|
|
|
218
240
|
.inset-0 {
|
|
219
241
|
inset: 0px;
|
|
220
242
|
}
|
|
243
|
+
.inset-x-0 {
|
|
244
|
+
inset-inline: 0px;
|
|
245
|
+
}
|
|
221
246
|
.inset-y-0 {
|
|
222
247
|
inset-block: 0px;
|
|
223
248
|
}
|
|
249
|
+
.-top-12 {
|
|
250
|
+
top: calc(var(--spacing) * -12);
|
|
251
|
+
}
|
|
224
252
|
.top-0 {
|
|
225
253
|
top: 0px;
|
|
226
254
|
}
|
|
255
|
+
.top-1\/2 {
|
|
256
|
+
top: calc(1 / 2 * 100%);
|
|
257
|
+
}
|
|
227
258
|
.top-4 {
|
|
228
259
|
top: calc(var(--spacing) * 4);
|
|
229
260
|
}
|
|
@@ -233,6 +264,12 @@
|
|
|
233
264
|
.top-\[50\%\] {
|
|
234
265
|
top: 50%;
|
|
235
266
|
}
|
|
267
|
+
.top-px {
|
|
268
|
+
top: 1px;
|
|
269
|
+
}
|
|
270
|
+
.-right-12 {
|
|
271
|
+
right: calc(var(--spacing) * -12);
|
|
272
|
+
}
|
|
236
273
|
.right-0 {
|
|
237
274
|
right: 0px;
|
|
238
275
|
}
|
|
@@ -242,9 +279,21 @@
|
|
|
242
279
|
.right-4 {
|
|
243
280
|
right: calc(var(--spacing) * 4);
|
|
244
281
|
}
|
|
282
|
+
.-bottom-12 {
|
|
283
|
+
bottom: calc(var(--spacing) * -12);
|
|
284
|
+
}
|
|
245
285
|
.bottom-0 {
|
|
246
286
|
bottom: 0px;
|
|
247
287
|
}
|
|
288
|
+
.-left-12 {
|
|
289
|
+
left: calc(var(--spacing) * -12);
|
|
290
|
+
}
|
|
291
|
+
.left-0 {
|
|
292
|
+
left: 0px;
|
|
293
|
+
}
|
|
294
|
+
.left-1\/2 {
|
|
295
|
+
left: calc(1 / 2 * 100%);
|
|
296
|
+
}
|
|
248
297
|
.left-\[50\%\] {
|
|
249
298
|
left: 50%;
|
|
250
299
|
}
|
|
@@ -257,12 +306,21 @@
|
|
|
257
306
|
.z-20 {
|
|
258
307
|
z-index: 20;
|
|
259
308
|
}
|
|
309
|
+
.z-40 {
|
|
310
|
+
z-index: 40;
|
|
311
|
+
}
|
|
260
312
|
.z-50 {
|
|
261
313
|
z-index: 50;
|
|
262
314
|
}
|
|
263
315
|
.z-\[100\] {
|
|
264
316
|
z-index: 100;
|
|
265
317
|
}
|
|
318
|
+
.order-first {
|
|
319
|
+
order: -9999;
|
|
320
|
+
}
|
|
321
|
+
.order-last {
|
|
322
|
+
order: 9999;
|
|
323
|
+
}
|
|
266
324
|
.col-start-2 {
|
|
267
325
|
grid-column-start: 2;
|
|
268
326
|
}
|
|
@@ -299,27 +357,63 @@
|
|
|
299
357
|
.my-1 {
|
|
300
358
|
margin-block: var(--spacing);
|
|
301
359
|
}
|
|
360
|
+
.my-6 {
|
|
361
|
+
margin-block: calc(var(--spacing) * 6);
|
|
362
|
+
}
|
|
363
|
+
.-mt-4 {
|
|
364
|
+
margin-top: calc(var(--spacing) * -4);
|
|
365
|
+
}
|
|
366
|
+
.mt-1\.5 {
|
|
367
|
+
margin-top: calc(var(--spacing) * 1.5);
|
|
368
|
+
}
|
|
369
|
+
.mt-2 {
|
|
370
|
+
margin-top: calc(var(--spacing) * 2);
|
|
371
|
+
}
|
|
302
372
|
.mt-3 {
|
|
303
373
|
margin-top: calc(var(--spacing) * 3);
|
|
304
374
|
}
|
|
305
375
|
.mt-4 {
|
|
306
376
|
margin-top: calc(var(--spacing) * 4);
|
|
307
377
|
}
|
|
378
|
+
.mt-6 {
|
|
379
|
+
margin-top: calc(var(--spacing) * 6);
|
|
380
|
+
}
|
|
381
|
+
.mt-auto {
|
|
382
|
+
margin-top: auto;
|
|
383
|
+
}
|
|
308
384
|
.mb-4 {
|
|
309
385
|
margin-bottom: calc(var(--spacing) * 4);
|
|
310
386
|
}
|
|
311
387
|
.mb-5 {
|
|
312
388
|
margin-bottom: calc(var(--spacing) * 5);
|
|
313
389
|
}
|
|
390
|
+
.-ml-4 {
|
|
391
|
+
margin-left: calc(var(--spacing) * -4);
|
|
392
|
+
}
|
|
314
393
|
.ml-1 {
|
|
315
394
|
margin-left: var(--spacing);
|
|
316
395
|
}
|
|
396
|
+
.ml-6 {
|
|
397
|
+
margin-left: calc(var(--spacing) * 6);
|
|
398
|
+
}
|
|
399
|
+
.ml-auto {
|
|
400
|
+
margin-left: auto;
|
|
401
|
+
}
|
|
317
402
|
.line-clamp-1 {
|
|
318
403
|
overflow: hidden;
|
|
319
404
|
display: -webkit-box;
|
|
320
405
|
-webkit-box-orient: vertical;
|
|
321
406
|
-webkit-line-clamp: 1;
|
|
322
407
|
}
|
|
408
|
+
.line-clamp-2 {
|
|
409
|
+
overflow: hidden;
|
|
410
|
+
display: -webkit-box;
|
|
411
|
+
-webkit-box-orient: vertical;
|
|
412
|
+
-webkit-line-clamp: 2;
|
|
413
|
+
}
|
|
414
|
+
.block {
|
|
415
|
+
display: block;
|
|
416
|
+
}
|
|
323
417
|
.flex {
|
|
324
418
|
display: flex;
|
|
325
419
|
}
|
|
@@ -332,6 +426,9 @@
|
|
|
332
426
|
.inline {
|
|
333
427
|
display: inline;
|
|
334
428
|
}
|
|
429
|
+
.inline-block {
|
|
430
|
+
display: inline-block;
|
|
431
|
+
}
|
|
335
432
|
.inline-flex {
|
|
336
433
|
display: inline-flex;
|
|
337
434
|
}
|
|
@@ -350,6 +447,25 @@
|
|
|
350
447
|
.field-sizing-content {
|
|
351
448
|
field-sizing: content;
|
|
352
449
|
}
|
|
450
|
+
.aspect-square {
|
|
451
|
+
aspect-ratio: 1 / 1;
|
|
452
|
+
}
|
|
453
|
+
.size-1\.5 {
|
|
454
|
+
width: calc(var(--spacing) * 1.5);
|
|
455
|
+
height: calc(var(--spacing) * 1.5);
|
|
456
|
+
}
|
|
457
|
+
.size-2 {
|
|
458
|
+
width: calc(var(--spacing) * 2);
|
|
459
|
+
height: calc(var(--spacing) * 2);
|
|
460
|
+
}
|
|
461
|
+
.size-2\.5 {
|
|
462
|
+
width: calc(var(--spacing) * 2.5);
|
|
463
|
+
height: calc(var(--spacing) * 2.5);
|
|
464
|
+
}
|
|
465
|
+
.size-3 {
|
|
466
|
+
width: calc(var(--spacing) * 3);
|
|
467
|
+
height: calc(var(--spacing) * 3);
|
|
468
|
+
}
|
|
353
469
|
.size-3\.5 {
|
|
354
470
|
width: calc(var(--spacing) * 3.5);
|
|
355
471
|
height: calc(var(--spacing) * 3.5);
|
|
@@ -358,6 +474,18 @@
|
|
|
358
474
|
width: calc(var(--spacing) * 4);
|
|
359
475
|
height: calc(var(--spacing) * 4);
|
|
360
476
|
}
|
|
477
|
+
.size-6 {
|
|
478
|
+
width: calc(var(--spacing) * 6);
|
|
479
|
+
height: calc(var(--spacing) * 6);
|
|
480
|
+
}
|
|
481
|
+
.size-7 {
|
|
482
|
+
width: calc(var(--spacing) * 7);
|
|
483
|
+
height: calc(var(--spacing) * 7);
|
|
484
|
+
}
|
|
485
|
+
.size-8 {
|
|
486
|
+
width: calc(var(--spacing) * 8);
|
|
487
|
+
height: calc(var(--spacing) * 8);
|
|
488
|
+
}
|
|
361
489
|
.size-9 {
|
|
362
490
|
width: calc(var(--spacing) * 9);
|
|
363
491
|
height: calc(var(--spacing) * 9);
|
|
@@ -366,6 +494,25 @@
|
|
|
366
494
|
width: calc(var(--spacing) * 10);
|
|
367
495
|
height: calc(var(--spacing) * 10);
|
|
368
496
|
}
|
|
497
|
+
.size-full {
|
|
498
|
+
width: 100%;
|
|
499
|
+
height: 100%;
|
|
500
|
+
}
|
|
501
|
+
.h-1\.5 {
|
|
502
|
+
height: calc(var(--spacing) * 1.5);
|
|
503
|
+
}
|
|
504
|
+
.h-2 {
|
|
505
|
+
height: calc(var(--spacing) * 2);
|
|
506
|
+
}
|
|
507
|
+
.h-4 {
|
|
508
|
+
height: calc(var(--spacing) * 4);
|
|
509
|
+
}
|
|
510
|
+
.h-5 {
|
|
511
|
+
height: calc(var(--spacing) * 5);
|
|
512
|
+
}
|
|
513
|
+
.h-7 {
|
|
514
|
+
height: calc(var(--spacing) * 7);
|
|
515
|
+
}
|
|
369
516
|
.h-8 {
|
|
370
517
|
height: calc(var(--spacing) * 8);
|
|
371
518
|
}
|
|
@@ -378,12 +525,24 @@
|
|
|
378
525
|
.h-14 {
|
|
379
526
|
height: calc(var(--spacing) * 14);
|
|
380
527
|
}
|
|
528
|
+
.h-24 {
|
|
529
|
+
height: calc(var(--spacing) * 24);
|
|
530
|
+
}
|
|
531
|
+
.h-64 {
|
|
532
|
+
height: calc(var(--spacing) * 64);
|
|
533
|
+
}
|
|
534
|
+
.h-\[1\.15rem\] {
|
|
535
|
+
height: 1.15rem;
|
|
536
|
+
}
|
|
381
537
|
.h-\[calc\(100\%-1px\)\] {
|
|
382
538
|
height: calc(100% - 1px);
|
|
383
539
|
}
|
|
384
540
|
.h-\[calc\(100vh-3\.5rem\)\] {
|
|
385
541
|
height: calc(100vh - 3.5rem);
|
|
386
542
|
}
|
|
543
|
+
.h-auto {
|
|
544
|
+
height: auto;
|
|
545
|
+
}
|
|
387
546
|
.h-full {
|
|
388
547
|
height: 100%;
|
|
389
548
|
}
|
|
@@ -393,12 +552,18 @@
|
|
|
393
552
|
.h-screen {
|
|
394
553
|
height: 100vh;
|
|
395
554
|
}
|
|
555
|
+
.max-h-\(--available-height\) {
|
|
556
|
+
max-height: var(--available-height);
|
|
557
|
+
}
|
|
396
558
|
.max-h-96 {
|
|
397
559
|
max-height: calc(var(--spacing) * 96);
|
|
398
560
|
}
|
|
399
561
|
.max-h-\[70vh\] {
|
|
400
562
|
max-height: 70vh;
|
|
401
563
|
}
|
|
564
|
+
.max-h-\[300px\] {
|
|
565
|
+
max-height: 300px;
|
|
566
|
+
}
|
|
402
567
|
.min-h-0 {
|
|
403
568
|
min-height: 0px;
|
|
404
569
|
}
|
|
@@ -408,9 +573,27 @@
|
|
|
408
573
|
.min-h-16 {
|
|
409
574
|
min-height: calc(var(--spacing) * 16);
|
|
410
575
|
}
|
|
576
|
+
.min-h-\[60px\] {
|
|
577
|
+
min-height: 60px;
|
|
578
|
+
}
|
|
411
579
|
.min-h-screen {
|
|
412
580
|
min-height: 100vh;
|
|
413
581
|
}
|
|
582
|
+
.w-2 {
|
|
583
|
+
width: calc(var(--spacing) * 2);
|
|
584
|
+
}
|
|
585
|
+
.w-3 {
|
|
586
|
+
width: calc(var(--spacing) * 3);
|
|
587
|
+
}
|
|
588
|
+
.w-3\/4 {
|
|
589
|
+
width: calc(3 / 4 * 100%);
|
|
590
|
+
}
|
|
591
|
+
.w-8 {
|
|
592
|
+
width: calc(var(--spacing) * 8);
|
|
593
|
+
}
|
|
594
|
+
.w-9 {
|
|
595
|
+
width: calc(var(--spacing) * 9);
|
|
596
|
+
}
|
|
414
597
|
.w-12 {
|
|
415
598
|
width: calc(var(--spacing) * 12);
|
|
416
599
|
}
|
|
@@ -423,14 +606,23 @@
|
|
|
423
606
|
.w-52 {
|
|
424
607
|
width: calc(var(--spacing) * 52);
|
|
425
608
|
}
|
|
609
|
+
.w-60 {
|
|
610
|
+
width: calc(var(--spacing) * 60);
|
|
611
|
+
}
|
|
612
|
+
.w-64 {
|
|
613
|
+
width: calc(var(--spacing) * 64);
|
|
614
|
+
}
|
|
426
615
|
.w-72 {
|
|
427
616
|
width: calc(var(--spacing) * 72);
|
|
428
617
|
}
|
|
429
618
|
.w-80 {
|
|
430
619
|
width: calc(var(--spacing) * 80);
|
|
431
620
|
}
|
|
432
|
-
.w-
|
|
433
|
-
width:
|
|
621
|
+
.w-\[--anchor-width\] {
|
|
622
|
+
width: --anchor-width;
|
|
623
|
+
}
|
|
624
|
+
.w-\[100px\] {
|
|
625
|
+
width: 100px;
|
|
434
626
|
}
|
|
435
627
|
.w-fit {
|
|
436
628
|
width: fit-content;
|
|
@@ -438,11 +630,17 @@
|
|
|
438
630
|
.w-full {
|
|
439
631
|
width: 100%;
|
|
440
632
|
}
|
|
633
|
+
.w-max {
|
|
634
|
+
width: max-content;
|
|
635
|
+
}
|
|
636
|
+
.w-px {
|
|
637
|
+
width: 1px;
|
|
638
|
+
}
|
|
441
639
|
.max-w-\[calc\(100\%-2rem\)\] {
|
|
442
640
|
max-width: calc(100% - 2rem);
|
|
443
641
|
}
|
|
444
|
-
.max-w-
|
|
445
|
-
max-width:
|
|
642
|
+
.max-w-max {
|
|
643
|
+
max-width: max-content;
|
|
446
644
|
}
|
|
447
645
|
.max-w-sm {
|
|
448
646
|
max-width: var(--container-sm);
|
|
@@ -450,6 +648,24 @@
|
|
|
450
648
|
.min-w-0 {
|
|
451
649
|
min-width: 0px;
|
|
452
650
|
}
|
|
651
|
+
.min-w-5 {
|
|
652
|
+
min-width: calc(var(--spacing) * 5);
|
|
653
|
+
}
|
|
654
|
+
.min-w-8 {
|
|
655
|
+
min-width: calc(var(--spacing) * 8);
|
|
656
|
+
}
|
|
657
|
+
.min-w-9 {
|
|
658
|
+
min-width: calc(var(--spacing) * 9);
|
|
659
|
+
}
|
|
660
|
+
.min-w-10 {
|
|
661
|
+
min-width: calc(var(--spacing) * 10);
|
|
662
|
+
}
|
|
663
|
+
.min-w-32 {
|
|
664
|
+
min-width: calc(var(--spacing) * 32);
|
|
665
|
+
}
|
|
666
|
+
.min-w-36 {
|
|
667
|
+
min-width: calc(var(--spacing) * 36);
|
|
668
|
+
}
|
|
453
669
|
.min-w-\[8rem\] {
|
|
454
670
|
min-width: 8rem;
|
|
455
671
|
}
|
|
@@ -459,13 +675,36 @@
|
|
|
459
675
|
.shrink-0 {
|
|
460
676
|
flex-shrink: 0;
|
|
461
677
|
}
|
|
678
|
+
.grow {
|
|
679
|
+
flex-grow: 1;
|
|
680
|
+
}
|
|
681
|
+
.grow-0 {
|
|
682
|
+
flex-grow: 0;
|
|
683
|
+
}
|
|
684
|
+
.basis-full {
|
|
685
|
+
flex-basis: 100%;
|
|
686
|
+
}
|
|
462
687
|
.caption-bottom {
|
|
463
688
|
caption-side: bottom;
|
|
464
689
|
}
|
|
690
|
+
.border-collapse {
|
|
691
|
+
border-collapse: collapse;
|
|
692
|
+
}
|
|
693
|
+
.origin-\(--transform-origin\) {
|
|
694
|
+
transform-origin: var(--transform-origin);
|
|
695
|
+
}
|
|
696
|
+
.-translate-x-1\/2 {
|
|
697
|
+
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
698
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
699
|
+
}
|
|
465
700
|
.translate-x-\[-50\%\] {
|
|
466
701
|
--tw-translate-x: -50%;
|
|
467
702
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
468
703
|
}
|
|
704
|
+
.-translate-y-1\/2 {
|
|
705
|
+
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
706
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
707
|
+
}
|
|
469
708
|
.translate-y-0\.5 {
|
|
470
709
|
--tw-translate-y: calc(var(--spacing) * 0.5);
|
|
471
710
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -474,9 +713,21 @@
|
|
|
474
713
|
--tw-translate-y: -50%;
|
|
475
714
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
476
715
|
}
|
|
716
|
+
.rotate-45 {
|
|
717
|
+
rotate: 45deg;
|
|
718
|
+
}
|
|
719
|
+
.rotate-90 {
|
|
720
|
+
rotate: 90deg;
|
|
721
|
+
}
|
|
722
|
+
.transform {
|
|
723
|
+
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
724
|
+
}
|
|
477
725
|
.animate-\[accordion-\*\] {
|
|
478
726
|
animation: accordion-*;
|
|
479
727
|
}
|
|
728
|
+
.animate-caret-blink {
|
|
729
|
+
animation: caret-blink 1.25s ease-out infinite;
|
|
730
|
+
}
|
|
480
731
|
.animate-pulse {
|
|
481
732
|
animation: var(--animate-pulse);
|
|
482
733
|
}
|
|
@@ -486,9 +737,33 @@
|
|
|
486
737
|
.cursor-default {
|
|
487
738
|
cursor: default;
|
|
488
739
|
}
|
|
740
|
+
.cursor-grab {
|
|
741
|
+
cursor: grab;
|
|
742
|
+
}
|
|
743
|
+
.cursor-not-allowed {
|
|
744
|
+
cursor: not-allowed;
|
|
745
|
+
}
|
|
489
746
|
.cursor-pointer {
|
|
490
747
|
cursor: pointer;
|
|
491
748
|
}
|
|
749
|
+
.touch-none {
|
|
750
|
+
touch-action: none;
|
|
751
|
+
}
|
|
752
|
+
.resize-none {
|
|
753
|
+
resize: none;
|
|
754
|
+
}
|
|
755
|
+
.scroll-m-20 {
|
|
756
|
+
scroll-margin: calc(var(--spacing) * 20);
|
|
757
|
+
}
|
|
758
|
+
.scroll-py-1 {
|
|
759
|
+
scroll-padding-block: var(--spacing);
|
|
760
|
+
}
|
|
761
|
+
.list-disc {
|
|
762
|
+
list-style-type: disc;
|
|
763
|
+
}
|
|
764
|
+
.list-none {
|
|
765
|
+
list-style-type: none;
|
|
766
|
+
}
|
|
492
767
|
.auto-rows-min {
|
|
493
768
|
grid-auto-rows: min-content;
|
|
494
769
|
}
|
|
@@ -507,6 +782,9 @@
|
|
|
507
782
|
.flex-col-reverse {
|
|
508
783
|
flex-direction: column-reverse;
|
|
509
784
|
}
|
|
785
|
+
.flex-row {
|
|
786
|
+
flex-direction: row;
|
|
787
|
+
}
|
|
510
788
|
.flex-wrap {
|
|
511
789
|
flex-wrap: wrap;
|
|
512
790
|
}
|
|
@@ -581,6 +859,11 @@
|
|
|
581
859
|
.justify-self-end {
|
|
582
860
|
justify-self: flex-end;
|
|
583
861
|
}
|
|
862
|
+
.truncate {
|
|
863
|
+
overflow: hidden;
|
|
864
|
+
text-overflow: ellipsis;
|
|
865
|
+
white-space: nowrap;
|
|
866
|
+
}
|
|
584
867
|
.overflow-auto {
|
|
585
868
|
overflow: auto;
|
|
586
869
|
}
|
|
@@ -596,6 +879,21 @@
|
|
|
596
879
|
.overflow-y-auto {
|
|
597
880
|
overflow-y: auto;
|
|
598
881
|
}
|
|
882
|
+
.rounded {
|
|
883
|
+
border-radius: 0.25rem;
|
|
884
|
+
}
|
|
885
|
+
.rounded-\[2px\] {
|
|
886
|
+
border-radius: 2px;
|
|
887
|
+
}
|
|
888
|
+
.rounded-\[4px\] {
|
|
889
|
+
border-radius: 4px;
|
|
890
|
+
}
|
|
891
|
+
.rounded-\[inherit\] {
|
|
892
|
+
border-radius: inherit;
|
|
893
|
+
}
|
|
894
|
+
.rounded-full {
|
|
895
|
+
border-radius: calc(infinity * 1px);
|
|
896
|
+
}
|
|
599
897
|
.rounded-lg {
|
|
600
898
|
border-radius: var(--radius);
|
|
601
899
|
}
|
|
@@ -619,6 +917,14 @@
|
|
|
619
917
|
border-style: var(--tw-border-style);
|
|
620
918
|
border-width: 1px;
|
|
621
919
|
}
|
|
920
|
+
.border-0 {
|
|
921
|
+
border-style: var(--tw-border-style);
|
|
922
|
+
border-width: 0px;
|
|
923
|
+
}
|
|
924
|
+
.border-y {
|
|
925
|
+
border-block-style: var(--tw-border-style);
|
|
926
|
+
border-block-width: 1px;
|
|
927
|
+
}
|
|
622
928
|
.border-t {
|
|
623
929
|
border-top-style: var(--tw-border-style);
|
|
624
930
|
border-top-width: 1px;
|
|
@@ -639,6 +945,10 @@
|
|
|
639
945
|
border-left-style: var(--tw-border-style);
|
|
640
946
|
border-left-width: 1px;
|
|
641
947
|
}
|
|
948
|
+
.border-l-2 {
|
|
949
|
+
border-left-style: var(--tw-border-style);
|
|
950
|
+
border-left-width: 2px;
|
|
951
|
+
}
|
|
642
952
|
.border-l-4 {
|
|
643
953
|
border-left-style: var(--tw-border-style);
|
|
644
954
|
border-left-width: 4px;
|
|
@@ -665,6 +975,12 @@
|
|
|
665
975
|
.border-input {
|
|
666
976
|
border-color: var(--input);
|
|
667
977
|
}
|
|
978
|
+
.border-primary {
|
|
979
|
+
border-color: var(--primary);
|
|
980
|
+
}
|
|
981
|
+
.border-sidebar-border {
|
|
982
|
+
border-color: var(--sidebar-border);
|
|
983
|
+
}
|
|
668
984
|
.border-success\/50 {
|
|
669
985
|
border-color: var(--success);
|
|
670
986
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -680,6 +996,9 @@
|
|
|
680
996
|
border-color: color-mix(in oklab, var(--warning) 50%, transparent);
|
|
681
997
|
}
|
|
682
998
|
}
|
|
999
|
+
.border-t-transparent {
|
|
1000
|
+
border-top-color: transparent;
|
|
1001
|
+
}
|
|
683
1002
|
.border-l-destructive {
|
|
684
1003
|
border-left-color: var(--destructive);
|
|
685
1004
|
}
|
|
@@ -689,6 +1008,9 @@
|
|
|
689
1008
|
.border-l-success {
|
|
690
1009
|
border-left-color: var(--success);
|
|
691
1010
|
}
|
|
1011
|
+
.border-l-transparent {
|
|
1012
|
+
border-left-color: transparent;
|
|
1013
|
+
}
|
|
692
1014
|
.border-l-warning {
|
|
693
1015
|
border-left-color: var(--warning);
|
|
694
1016
|
}
|
|
@@ -704,6 +1026,12 @@
|
|
|
704
1026
|
background-color: color-mix(in oklab, var(--background) 60%, transparent);
|
|
705
1027
|
}
|
|
706
1028
|
}
|
|
1029
|
+
.bg-black\/40 {
|
|
1030
|
+
background-color: color-mix(in srgb, #000 40%, transparent);
|
|
1031
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1032
|
+
background-color: color-mix(in oklab, var(--color-black) 40%, transparent);
|
|
1033
|
+
}
|
|
1034
|
+
}
|
|
707
1035
|
.bg-black\/50 {
|
|
708
1036
|
background-color: color-mix(in srgb, #000 50%, transparent);
|
|
709
1037
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -719,6 +1047,9 @@
|
|
|
719
1047
|
.bg-destructive {
|
|
720
1048
|
background-color: var(--destructive);
|
|
721
1049
|
}
|
|
1050
|
+
.bg-foreground {
|
|
1051
|
+
background-color: var(--foreground);
|
|
1052
|
+
}
|
|
722
1053
|
.bg-muted {
|
|
723
1054
|
background-color: var(--muted);
|
|
724
1055
|
}
|
|
@@ -743,15 +1074,33 @@
|
|
|
743
1074
|
.bg-secondary {
|
|
744
1075
|
background-color: var(--secondary);
|
|
745
1076
|
}
|
|
1077
|
+
.bg-sidebar {
|
|
1078
|
+
background-color: var(--sidebar);
|
|
1079
|
+
}
|
|
746
1080
|
.bg-transparent {
|
|
747
1081
|
background-color: transparent;
|
|
748
1082
|
}
|
|
1083
|
+
.fill-primary {
|
|
1084
|
+
fill: var(--primary);
|
|
1085
|
+
}
|
|
1086
|
+
.object-contain {
|
|
1087
|
+
object-fit: contain;
|
|
1088
|
+
}
|
|
1089
|
+
.object-cover {
|
|
1090
|
+
object-fit: cover;
|
|
1091
|
+
}
|
|
1092
|
+
.p-0 {
|
|
1093
|
+
padding: 0px;
|
|
1094
|
+
}
|
|
749
1095
|
.p-1 {
|
|
750
1096
|
padding: var(--spacing);
|
|
751
1097
|
}
|
|
752
1098
|
.p-2 {
|
|
753
1099
|
padding: calc(var(--spacing) * 2);
|
|
754
1100
|
}
|
|
1101
|
+
.p-3 {
|
|
1102
|
+
padding: calc(var(--spacing) * 3);
|
|
1103
|
+
}
|
|
755
1104
|
.p-4 {
|
|
756
1105
|
padding: calc(var(--spacing) * 4);
|
|
757
1106
|
}
|
|
@@ -764,15 +1113,24 @@
|
|
|
764
1113
|
.p-\[3px\] {
|
|
765
1114
|
padding: 3px;
|
|
766
1115
|
}
|
|
1116
|
+
.p-px {
|
|
1117
|
+
padding: 1px;
|
|
1118
|
+
}
|
|
767
1119
|
.px-0 {
|
|
768
1120
|
padding-inline: 0px;
|
|
769
1121
|
}
|
|
1122
|
+
.px-1 {
|
|
1123
|
+
padding-inline: var(--spacing);
|
|
1124
|
+
}
|
|
770
1125
|
.px-1\.5 {
|
|
771
1126
|
padding-inline: calc(var(--spacing) * 1.5);
|
|
772
1127
|
}
|
|
773
1128
|
.px-2 {
|
|
774
1129
|
padding-inline: calc(var(--spacing) * 2);
|
|
775
1130
|
}
|
|
1131
|
+
.px-2\.5 {
|
|
1132
|
+
padding-inline: calc(var(--spacing) * 2.5);
|
|
1133
|
+
}
|
|
776
1134
|
.px-3 {
|
|
777
1135
|
padding-inline: calc(var(--spacing) * 3);
|
|
778
1136
|
}
|
|
@@ -782,6 +1140,12 @@
|
|
|
782
1140
|
.px-6 {
|
|
783
1141
|
padding-inline: calc(var(--spacing) * 6);
|
|
784
1142
|
}
|
|
1143
|
+
.px-7 {
|
|
1144
|
+
padding-inline: calc(var(--spacing) * 7);
|
|
1145
|
+
}
|
|
1146
|
+
.px-\[0\.3rem\] {
|
|
1147
|
+
padding-inline: 0.3rem;
|
|
1148
|
+
}
|
|
785
1149
|
.py-0\.5 {
|
|
786
1150
|
padding-block: calc(var(--spacing) * 0.5);
|
|
787
1151
|
}
|
|
@@ -806,18 +1170,33 @@
|
|
|
806
1170
|
.py-8 {
|
|
807
1171
|
padding-block: calc(var(--spacing) * 8);
|
|
808
1172
|
}
|
|
1173
|
+
.py-\[0\.2rem\] {
|
|
1174
|
+
padding-block: 0.2rem;
|
|
1175
|
+
}
|
|
809
1176
|
.pt-0 {
|
|
810
1177
|
padding-top: 0px;
|
|
811
1178
|
}
|
|
812
1179
|
.pt-2 {
|
|
813
1180
|
padding-top: calc(var(--spacing) * 2);
|
|
814
1181
|
}
|
|
1182
|
+
.pt-3 {
|
|
1183
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1184
|
+
}
|
|
1185
|
+
.pt-4 {
|
|
1186
|
+
padding-top: calc(var(--spacing) * 4);
|
|
1187
|
+
}
|
|
1188
|
+
.pr-3 {
|
|
1189
|
+
padding-right: calc(var(--spacing) * 3);
|
|
1190
|
+
}
|
|
815
1191
|
.pr-8 {
|
|
816
1192
|
padding-right: calc(var(--spacing) * 8);
|
|
817
1193
|
}
|
|
818
1194
|
.pb-1 {
|
|
819
1195
|
padding-bottom: var(--spacing);
|
|
820
1196
|
}
|
|
1197
|
+
.pb-2 {
|
|
1198
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1199
|
+
}
|
|
821
1200
|
.pb-4 {
|
|
822
1201
|
padding-bottom: calc(var(--spacing) * 4);
|
|
823
1202
|
}
|
|
@@ -827,6 +1206,12 @@
|
|
|
827
1206
|
.pl-3 {
|
|
828
1207
|
padding-left: calc(var(--spacing) * 3);
|
|
829
1208
|
}
|
|
1209
|
+
.pl-4 {
|
|
1210
|
+
padding-left: calc(var(--spacing) * 4);
|
|
1211
|
+
}
|
|
1212
|
+
.pl-6 {
|
|
1213
|
+
padding-left: calc(var(--spacing) * 6);
|
|
1214
|
+
}
|
|
830
1215
|
.text-center {
|
|
831
1216
|
text-align: center;
|
|
832
1217
|
}
|
|
@@ -836,10 +1221,28 @@
|
|
|
836
1221
|
.align-middle {
|
|
837
1222
|
vertical-align: middle;
|
|
838
1223
|
}
|
|
1224
|
+
.font-mono {
|
|
1225
|
+
font-family: var(--font-mono);
|
|
1226
|
+
}
|
|
1227
|
+
.font-sans {
|
|
1228
|
+
font-family: var(--font-sans);
|
|
1229
|
+
}
|
|
839
1230
|
.text-2xl {
|
|
840
1231
|
font-size: var(--text-2xl);
|
|
841
1232
|
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
842
1233
|
}
|
|
1234
|
+
.text-3xl {
|
|
1235
|
+
font-size: var(--text-3xl);
|
|
1236
|
+
line-height: var(--tw-leading, var(--text-3xl--line-height));
|
|
1237
|
+
}
|
|
1238
|
+
.text-4xl {
|
|
1239
|
+
font-size: var(--text-4xl);
|
|
1240
|
+
line-height: var(--tw-leading, var(--text-4xl--line-height));
|
|
1241
|
+
}
|
|
1242
|
+
.text-base {
|
|
1243
|
+
font-size: var(--text-base);
|
|
1244
|
+
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
1245
|
+
}
|
|
843
1246
|
.text-lg {
|
|
844
1247
|
font-size: var(--text-lg);
|
|
845
1248
|
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
@@ -856,6 +1259,13 @@
|
|
|
856
1259
|
font-size: var(--text-xs);
|
|
857
1260
|
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
858
1261
|
}
|
|
1262
|
+
.text-\[0\.8rem\] {
|
|
1263
|
+
font-size: 0.8rem;
|
|
1264
|
+
}
|
|
1265
|
+
.leading-7 {
|
|
1266
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1267
|
+
line-height: calc(var(--spacing) * 7);
|
|
1268
|
+
}
|
|
859
1269
|
.leading-none {
|
|
860
1270
|
--tw-leading: 1;
|
|
861
1271
|
line-height: 1;
|
|
@@ -864,6 +1274,10 @@
|
|
|
864
1274
|
--tw-font-weight: var(--font-weight-bold);
|
|
865
1275
|
font-weight: var(--font-weight-bold);
|
|
866
1276
|
}
|
|
1277
|
+
.font-extrabold {
|
|
1278
|
+
--tw-font-weight: var(--font-weight-extrabold);
|
|
1279
|
+
font-weight: var(--font-weight-extrabold);
|
|
1280
|
+
}
|
|
867
1281
|
.font-medium {
|
|
868
1282
|
--tw-font-weight: var(--font-weight-medium);
|
|
869
1283
|
font-weight: var(--font-weight-medium);
|
|
@@ -880,15 +1294,27 @@
|
|
|
880
1294
|
--tw-tracking: var(--tracking-tight);
|
|
881
1295
|
letter-spacing: var(--tracking-tight);
|
|
882
1296
|
}
|
|
1297
|
+
.text-balance {
|
|
1298
|
+
text-wrap: balance;
|
|
1299
|
+
}
|
|
1300
|
+
.break-words {
|
|
1301
|
+
overflow-wrap: break-word;
|
|
1302
|
+
}
|
|
883
1303
|
.whitespace-nowrap {
|
|
884
1304
|
white-space: nowrap;
|
|
885
1305
|
}
|
|
886
1306
|
.text-accent-foreground {
|
|
887
1307
|
color: var(--accent-foreground);
|
|
888
1308
|
}
|
|
1309
|
+
.text-amber-600 {
|
|
1310
|
+
color: var(--color-amber-600);
|
|
1311
|
+
}
|
|
889
1312
|
.text-card-foreground {
|
|
890
1313
|
color: var(--card-foreground);
|
|
891
1314
|
}
|
|
1315
|
+
.text-current {
|
|
1316
|
+
color: currentcolor;
|
|
1317
|
+
}
|
|
892
1318
|
.text-destructive {
|
|
893
1319
|
color: var(--destructive);
|
|
894
1320
|
}
|
|
@@ -898,6 +1324,9 @@
|
|
|
898
1324
|
.text-foreground {
|
|
899
1325
|
color: var(--foreground);
|
|
900
1326
|
}
|
|
1327
|
+
.text-green-600 {
|
|
1328
|
+
color: var(--color-green-600);
|
|
1329
|
+
}
|
|
901
1330
|
.text-info {
|
|
902
1331
|
color: var(--info);
|
|
903
1332
|
}
|
|
@@ -916,16 +1345,40 @@
|
|
|
916
1345
|
.text-secondary-foreground {
|
|
917
1346
|
color: var(--secondary-foreground);
|
|
918
1347
|
}
|
|
1348
|
+
.text-sidebar-foreground {
|
|
1349
|
+
color: var(--sidebar-foreground);
|
|
1350
|
+
}
|
|
1351
|
+
.text-sidebar-foreground\/60 {
|
|
1352
|
+
color: var(--sidebar-foreground);
|
|
1353
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1354
|
+
color: color-mix(in oklab, var(--sidebar-foreground) 60%, transparent);
|
|
1355
|
+
}
|
|
1356
|
+
}
|
|
1357
|
+
.text-sidebar-foreground\/70 {
|
|
1358
|
+
color: var(--sidebar-foreground);
|
|
1359
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1360
|
+
color: color-mix(in oklab, var(--sidebar-foreground) 70%, transparent);
|
|
1361
|
+
}
|
|
1362
|
+
}
|
|
919
1363
|
.text-success {
|
|
920
1364
|
color: var(--success);
|
|
921
1365
|
}
|
|
922
1366
|
.text-warning {
|
|
923
1367
|
color: var(--warning);
|
|
924
1368
|
}
|
|
1369
|
+
.italic {
|
|
1370
|
+
font-style: italic;
|
|
1371
|
+
}
|
|
925
1372
|
.tabular-nums {
|
|
926
1373
|
--tw-numeric-spacing: tabular-nums;
|
|
927
1374
|
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
928
1375
|
}
|
|
1376
|
+
.line-through {
|
|
1377
|
+
text-decoration-line: line-through;
|
|
1378
|
+
}
|
|
1379
|
+
.underline {
|
|
1380
|
+
text-decoration-line: underline;
|
|
1381
|
+
}
|
|
929
1382
|
.underline-offset-4 {
|
|
930
1383
|
text-underline-offset: 4px;
|
|
931
1384
|
}
|
|
@@ -955,10 +1408,51 @@
|
|
|
955
1408
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
956
1409
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
957
1410
|
}
|
|
1411
|
+
.outline-hidden {
|
|
1412
|
+
--tw-outline-style: none;
|
|
1413
|
+
outline-style: none;
|
|
1414
|
+
@media (forced-colors: active) {
|
|
1415
|
+
outline: 2px solid transparent;
|
|
1416
|
+
outline-offset: 2px;
|
|
1417
|
+
}
|
|
1418
|
+
}
|
|
958
1419
|
.outline {
|
|
959
1420
|
outline-style: var(--tw-outline-style);
|
|
960
1421
|
outline-width: 1px;
|
|
961
1422
|
}
|
|
1423
|
+
.filter {
|
|
1424
|
+
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,);
|
|
1425
|
+
}
|
|
1426
|
+
.transition {
|
|
1427
|
+
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;
|
|
1428
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1429
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1430
|
+
}
|
|
1431
|
+
.transition-\[height\] {
|
|
1432
|
+
transition-property: height;
|
|
1433
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1434
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1435
|
+
}
|
|
1436
|
+
.transition-\[opacity\,transform\] {
|
|
1437
|
+
transition-property: opacity,transform;
|
|
1438
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1439
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1440
|
+
}
|
|
1441
|
+
.transition-\[width\,transform\] {
|
|
1442
|
+
transition-property: width,transform;
|
|
1443
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1444
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1445
|
+
}
|
|
1446
|
+
.transition-\[width\] {
|
|
1447
|
+
transition-property: width;
|
|
1448
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1449
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1450
|
+
}
|
|
1451
|
+
.transition-all {
|
|
1452
|
+
transition-property: all;
|
|
1453
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1454
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1455
|
+
}
|
|
962
1456
|
.transition-colors {
|
|
963
1457
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
964
1458
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -969,6 +1463,11 @@
|
|
|
969
1463
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
970
1464
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
971
1465
|
}
|
|
1466
|
+
.transition-shadow {
|
|
1467
|
+
transition-property: box-shadow;
|
|
1468
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1469
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1470
|
+
}
|
|
972
1471
|
.transition-transform {
|
|
973
1472
|
transition-property: transform, translate, scale, rotate;
|
|
974
1473
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -978,6 +1477,22 @@
|
|
|
978
1477
|
--tw-duration: 200ms;
|
|
979
1478
|
transition-duration: 200ms;
|
|
980
1479
|
}
|
|
1480
|
+
.duration-300 {
|
|
1481
|
+
--tw-duration: 300ms;
|
|
1482
|
+
transition-duration: 300ms;
|
|
1483
|
+
}
|
|
1484
|
+
.duration-1000 {
|
|
1485
|
+
--tw-duration: 1000ms;
|
|
1486
|
+
transition-duration: 1000ms;
|
|
1487
|
+
}
|
|
1488
|
+
.ease-in-out {
|
|
1489
|
+
--tw-ease: var(--ease-in-out);
|
|
1490
|
+
transition-timing-function: var(--ease-in-out);
|
|
1491
|
+
}
|
|
1492
|
+
.ease-out {
|
|
1493
|
+
--tw-ease: var(--ease-out);
|
|
1494
|
+
transition-timing-function: var(--ease-out);
|
|
1495
|
+
}
|
|
981
1496
|
.outline-none {
|
|
982
1497
|
--tw-outline-style: none;
|
|
983
1498
|
outline-style: none;
|
|
@@ -992,6 +1507,12 @@
|
|
|
992
1507
|
.group-data-\[disabled\=true\]\:opacity-50:is(:where(.group)[data-disabled="true"] *) {
|
|
993
1508
|
opacity: 50%;
|
|
994
1509
|
}
|
|
1510
|
+
.group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:block:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="bottom"] *) {
|
|
1511
|
+
display: block;
|
|
1512
|
+
}
|
|
1513
|
+
.group-data-open\/navigation-menu-trigger\:rotate-180:is(:where(.group\/navigation-menu-trigger):where([data-open]:not([data-open='false'])) *) {
|
|
1514
|
+
rotate: 180deg;
|
|
1515
|
+
}
|
|
995
1516
|
.peer-disabled\:cursor-not-allowed:is(:where(.peer):disabled ~ *) {
|
|
996
1517
|
cursor: not-allowed;
|
|
997
1518
|
}
|
|
@@ -1001,14 +1522,71 @@
|
|
|
1001
1522
|
.placeholder\:text-muted-foreground::placeholder {
|
|
1002
1523
|
color: var(--muted-foreground);
|
|
1003
1524
|
}
|
|
1525
|
+
.after\:absolute::after {
|
|
1526
|
+
content: var(--tw-content);
|
|
1527
|
+
position: absolute;
|
|
1528
|
+
}
|
|
1529
|
+
.after\:inset-y-0::after {
|
|
1530
|
+
content: var(--tw-content);
|
|
1531
|
+
inset-block: 0px;
|
|
1532
|
+
}
|
|
1533
|
+
.after\:left-1\/2::after {
|
|
1534
|
+
content: var(--tw-content);
|
|
1535
|
+
left: calc(1 / 2 * 100%);
|
|
1536
|
+
}
|
|
1537
|
+
.after\:w-1::after {
|
|
1538
|
+
content: var(--tw-content);
|
|
1539
|
+
width: var(--spacing);
|
|
1540
|
+
}
|
|
1541
|
+
.after\:-translate-x-1\/2::after {
|
|
1542
|
+
content: var(--tw-content);
|
|
1543
|
+
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
1544
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1545
|
+
}
|
|
1546
|
+
.first\:rounded-l-md:first-child {
|
|
1547
|
+
border-top-left-radius: calc(var(--radius) * 0.8);
|
|
1548
|
+
border-bottom-left-radius: calc(var(--radius) * 0.8);
|
|
1549
|
+
}
|
|
1550
|
+
.first\:border-l:first-child {
|
|
1551
|
+
border-left-style: var(--tw-border-style);
|
|
1552
|
+
border-left-width: 1px;
|
|
1553
|
+
}
|
|
1554
|
+
.first\:pt-1:first-child {
|
|
1555
|
+
padding-top: var(--spacing);
|
|
1556
|
+
}
|
|
1557
|
+
.last\:rounded-r-md:last-child {
|
|
1558
|
+
border-top-right-radius: calc(var(--radius) * 0.8);
|
|
1559
|
+
border-bottom-right-radius: calc(var(--radius) * 0.8);
|
|
1560
|
+
}
|
|
1004
1561
|
.last\:border-b-0:last-child {
|
|
1005
1562
|
border-bottom-style: var(--tw-border-style);
|
|
1006
1563
|
border-bottom-width: 0px;
|
|
1007
1564
|
}
|
|
1565
|
+
.focus-within\:border-ring:focus-within {
|
|
1566
|
+
border-color: var(--ring);
|
|
1567
|
+
}
|
|
1568
|
+
.focus-within\:ring-\[3px\]:focus-within {
|
|
1569
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1570
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1571
|
+
}
|
|
1572
|
+
.focus-within\:ring-ring\/50:focus-within {
|
|
1573
|
+
--tw-ring-color: var(--ring);
|
|
1574
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1575
|
+
--tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
1576
|
+
}
|
|
1577
|
+
}
|
|
1008
1578
|
@media (hover: hover) {
|
|
1009
1579
|
.hover\:bg-accent:hover {
|
|
1010
1580
|
background-color: var(--accent);
|
|
1011
1581
|
}
|
|
1582
|
+
.hover\:bg-accent\/50:hover {
|
|
1583
|
+
background-color: var(--accent);
|
|
1584
|
+
}
|
|
1585
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1586
|
+
.hover\:bg-accent\/50:hover {
|
|
1587
|
+
background-color: color-mix(in oklab, var(--accent) 50%, transparent);
|
|
1588
|
+
}
|
|
1589
|
+
}
|
|
1012
1590
|
.hover\:bg-destructive\/90:hover {
|
|
1013
1591
|
background-color: var(--destructive);
|
|
1014
1592
|
}
|
|
@@ -1017,6 +1595,9 @@
|
|
|
1017
1595
|
background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
|
|
1018
1596
|
}
|
|
1019
1597
|
}
|
|
1598
|
+
.hover\:bg-muted:hover {
|
|
1599
|
+
background-color: var(--muted);
|
|
1600
|
+
}
|
|
1020
1601
|
.hover\:bg-muted\/50:hover {
|
|
1021
1602
|
background-color: var(--muted);
|
|
1022
1603
|
}
|
|
@@ -1041,6 +1622,9 @@
|
|
|
1041
1622
|
background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
|
|
1042
1623
|
}
|
|
1043
1624
|
}
|
|
1625
|
+
.hover\:bg-sidebar-accent:hover {
|
|
1626
|
+
background-color: var(--sidebar-accent);
|
|
1627
|
+
}
|
|
1044
1628
|
.hover\:bg-transparent:hover {
|
|
1045
1629
|
background-color: transparent;
|
|
1046
1630
|
}
|
|
@@ -1053,6 +1637,15 @@
|
|
|
1053
1637
|
.hover\:text-foreground:hover {
|
|
1054
1638
|
color: var(--foreground);
|
|
1055
1639
|
}
|
|
1640
|
+
.hover\:text-muted-foreground:hover {
|
|
1641
|
+
color: var(--muted-foreground);
|
|
1642
|
+
}
|
|
1643
|
+
.hover\:text-sidebar-accent-foreground:hover {
|
|
1644
|
+
color: var(--sidebar-accent-foreground);
|
|
1645
|
+
}
|
|
1646
|
+
.hover\:text-sidebar-foreground:hover {
|
|
1647
|
+
color: var(--sidebar-foreground);
|
|
1648
|
+
}
|
|
1056
1649
|
.hover\:underline:hover {
|
|
1057
1650
|
text-decoration-line: underline;
|
|
1058
1651
|
}
|
|
@@ -1060,15 +1653,32 @@
|
|
|
1060
1653
|
opacity: 100%;
|
|
1061
1654
|
}
|
|
1062
1655
|
}
|
|
1656
|
+
.focus\:z-10:focus {
|
|
1657
|
+
z-index: 10;
|
|
1658
|
+
}
|
|
1063
1659
|
.focus\:bg-accent:focus {
|
|
1064
1660
|
background-color: var(--accent);
|
|
1065
1661
|
}
|
|
1066
1662
|
.focus\:text-accent-foreground:focus {
|
|
1067
1663
|
color: var(--accent-foreground);
|
|
1068
1664
|
}
|
|
1665
|
+
.focus-visible\:z-10:focus-visible {
|
|
1666
|
+
z-index: 10;
|
|
1667
|
+
}
|
|
1069
1668
|
.focus-visible\:border-ring:focus-visible {
|
|
1070
1669
|
border-color: var(--ring);
|
|
1071
1670
|
}
|
|
1671
|
+
.focus-visible\:border-transparent:focus-visible {
|
|
1672
|
+
border-color: transparent;
|
|
1673
|
+
}
|
|
1674
|
+
.focus-visible\:ring-0:focus-visible {
|
|
1675
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1676
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1677
|
+
}
|
|
1678
|
+
.focus-visible\:ring-1:focus-visible {
|
|
1679
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1680
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1681
|
+
}
|
|
1072
1682
|
.focus-visible\:ring-\[3px\]:focus-visible {
|
|
1073
1683
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1074
1684
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1079,12 +1689,19 @@
|
|
|
1079
1689
|
--tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
1080
1690
|
}
|
|
1081
1691
|
}
|
|
1692
|
+
.focus-visible\:ring-ring:focus-visible {
|
|
1693
|
+
--tw-ring-color: var(--ring);
|
|
1694
|
+
}
|
|
1082
1695
|
.focus-visible\:ring-ring\/50:focus-visible {
|
|
1083
1696
|
--tw-ring-color: var(--ring);
|
|
1084
1697
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1085
1698
|
--tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
1086
1699
|
}
|
|
1087
1700
|
}
|
|
1701
|
+
.focus-visible\:ring-offset-1:focus-visible {
|
|
1702
|
+
--tw-ring-offset-width: 1px;
|
|
1703
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1704
|
+
}
|
|
1088
1705
|
.focus-visible\:outline-1:focus-visible {
|
|
1089
1706
|
outline-style: var(--tw-outline-style);
|
|
1090
1707
|
outline-width: 1px;
|
|
@@ -1093,6 +1710,9 @@
|
|
|
1093
1710
|
--tw-outline-style: none;
|
|
1094
1711
|
outline-style: none;
|
|
1095
1712
|
}
|
|
1713
|
+
.active\:cursor-grabbing:active {
|
|
1714
|
+
cursor: grabbing;
|
|
1715
|
+
}
|
|
1096
1716
|
.disabled\:pointer-events-none:disabled {
|
|
1097
1717
|
pointer-events: none;
|
|
1098
1718
|
}
|
|
@@ -1102,6 +1722,9 @@
|
|
|
1102
1722
|
.disabled\:opacity-50:disabled {
|
|
1103
1723
|
opacity: 50%;
|
|
1104
1724
|
}
|
|
1725
|
+
.has-disabled\:opacity-50:has(:disabled) {
|
|
1726
|
+
opacity: 50%;
|
|
1727
|
+
}
|
|
1105
1728
|
.has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\]:has([data-slot="card-action"]) {
|
|
1106
1729
|
grid-template-columns: 1fr auto;
|
|
1107
1730
|
}
|
|
@@ -1111,8 +1734,77 @@
|
|
|
1111
1734
|
.has-\[\>svg\]\:gap-x-3:has( > svg) {
|
|
1112
1735
|
column-gap: calc(var(--spacing) * 3);
|
|
1113
1736
|
}
|
|
1114
|
-
.
|
|
1115
|
-
|
|
1737
|
+
.aria-selected\:text-muted-foreground[aria-selected="true"] {
|
|
1738
|
+
color: var(--muted-foreground);
|
|
1739
|
+
}
|
|
1740
|
+
.aria-selected\:opacity-100[aria-selected="true"] {
|
|
1741
|
+
opacity: 100%;
|
|
1742
|
+
}
|
|
1743
|
+
.data-checked\:translate-x-\[calc\(100\%-2px\)\][data-checked] {
|
|
1744
|
+
--tw-translate-x: calc(100% - 2px);
|
|
1745
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1746
|
+
}
|
|
1747
|
+
.data-checked\:border-primary[data-checked] {
|
|
1748
|
+
border-color: var(--primary);
|
|
1749
|
+
}
|
|
1750
|
+
.data-checked\:bg-primary[data-checked] {
|
|
1751
|
+
background-color: var(--primary);
|
|
1752
|
+
}
|
|
1753
|
+
.data-checked\:text-primary-foreground[data-checked] {
|
|
1754
|
+
color: var(--primary-foreground);
|
|
1755
|
+
}
|
|
1756
|
+
.data-ending-style\:animate-toast-out[data-ending-style] {
|
|
1757
|
+
animation: toast-out 150ms ease-in;
|
|
1758
|
+
}
|
|
1759
|
+
.data-ending-style\:opacity-0[data-ending-style] {
|
|
1760
|
+
opacity: 0%;
|
|
1761
|
+
}
|
|
1762
|
+
.data-pressed\:bg-accent[data-pressed] {
|
|
1763
|
+
background-color: var(--accent);
|
|
1764
|
+
}
|
|
1765
|
+
.data-pressed\:text-accent-foreground[data-pressed] {
|
|
1766
|
+
color: var(--accent-foreground);
|
|
1767
|
+
}
|
|
1768
|
+
.data-starting-style\:animate-toast-in[data-starting-style] {
|
|
1769
|
+
animation: toast-in 200ms ease-out;
|
|
1770
|
+
}
|
|
1771
|
+
.data-starting-style\:opacity-0[data-starting-style] {
|
|
1772
|
+
opacity: 0%;
|
|
1773
|
+
}
|
|
1774
|
+
.data-unchecked\:translate-x-0[data-unchecked] {
|
|
1775
|
+
--tw-translate-x: 0px;
|
|
1776
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1777
|
+
}
|
|
1778
|
+
.data-unchecked\:bg-input[data-unchecked] {
|
|
1779
|
+
background-color: var(--input);
|
|
1780
|
+
}
|
|
1781
|
+
.data-\[active\=true\]\:z-10[data-active="true"] {
|
|
1782
|
+
z-index: 10;
|
|
1783
|
+
}
|
|
1784
|
+
.data-\[active\=true\]\:border-ring[data-active="true"] {
|
|
1785
|
+
border-color: var(--ring);
|
|
1786
|
+
}
|
|
1787
|
+
.data-\[active\=true\]\:ring-\[3px\][data-active="true"] {
|
|
1788
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1789
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1790
|
+
}
|
|
1791
|
+
.data-\[active\=true\]\:ring-ring\/50[data-active="true"] {
|
|
1792
|
+
--tw-ring-color: var(--ring);
|
|
1793
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1794
|
+
--tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
1795
|
+
}
|
|
1796
|
+
}
|
|
1797
|
+
.data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"] {
|
|
1798
|
+
pointer-events: none;
|
|
1799
|
+
}
|
|
1800
|
+
.data-\[disabled\=true\]\:opacity-50[data-disabled="true"] {
|
|
1801
|
+
opacity: 50%;
|
|
1802
|
+
}
|
|
1803
|
+
.data-\[instant\]\:transition-none[data-instant] {
|
|
1804
|
+
transition-property: none;
|
|
1805
|
+
}
|
|
1806
|
+
.data-\[orientation\=horizontal\]\:h-px[data-orientation="horizontal"] {
|
|
1807
|
+
height: 1px;
|
|
1116
1808
|
}
|
|
1117
1809
|
.data-\[orientation\=horizontal\]\:w-full[data-orientation="horizontal"] {
|
|
1118
1810
|
width: 100%;
|
|
@@ -1120,22 +1812,188 @@
|
|
|
1120
1812
|
.data-\[orientation\=vertical\]\:h-full[data-orientation="vertical"] {
|
|
1121
1813
|
height: 100%;
|
|
1122
1814
|
}
|
|
1815
|
+
.data-\[orientation\=vertical\]\:h-px[data-orientation="vertical"] {
|
|
1816
|
+
height: 1px;
|
|
1817
|
+
}
|
|
1818
|
+
.data-\[orientation\=vertical\]\:w-full[data-orientation="vertical"] {
|
|
1819
|
+
width: 100%;
|
|
1820
|
+
}
|
|
1123
1821
|
.data-\[orientation\=vertical\]\:w-px[data-orientation="vertical"] {
|
|
1124
1822
|
width: 1px;
|
|
1125
1823
|
}
|
|
1824
|
+
.data-\[orientation\=vertical\]\:flex-col[data-orientation="vertical"] {
|
|
1825
|
+
flex-direction: column;
|
|
1826
|
+
}
|
|
1827
|
+
.data-\[orientation\=vertical\]\:after\:left-0[data-orientation="vertical"]::after {
|
|
1828
|
+
content: var(--tw-content);
|
|
1829
|
+
left: 0px;
|
|
1830
|
+
}
|
|
1831
|
+
.data-\[orientation\=vertical\]\:after\:h-1[data-orientation="vertical"]::after {
|
|
1832
|
+
content: var(--tw-content);
|
|
1833
|
+
height: var(--spacing);
|
|
1834
|
+
}
|
|
1835
|
+
.data-\[orientation\=vertical\]\:after\:w-full[data-orientation="vertical"]::after {
|
|
1836
|
+
content: var(--tw-content);
|
|
1837
|
+
width: 100%;
|
|
1838
|
+
}
|
|
1839
|
+
.data-\[orientation\=vertical\]\:after\:translate-x-0[data-orientation="vertical"]::after {
|
|
1840
|
+
content: var(--tw-content);
|
|
1841
|
+
--tw-translate-x: 0px;
|
|
1842
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1843
|
+
}
|
|
1844
|
+
.data-\[orientation\=vertical\]\:after\:-translate-y-1\/2[data-orientation="vertical"]::after {
|
|
1845
|
+
content: var(--tw-content);
|
|
1846
|
+
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
1847
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1848
|
+
}
|
|
1126
1849
|
.data-\[placeholder\]\:text-muted-foreground[data-placeholder] {
|
|
1127
1850
|
color: var(--muted-foreground);
|
|
1128
1851
|
}
|
|
1852
|
+
.data-\[selected\=true\]\:bg-accent[data-selected="true"] {
|
|
1853
|
+
background-color: var(--accent);
|
|
1854
|
+
}
|
|
1855
|
+
.data-\[selected\=true\]\:text-accent-foreground[data-selected="true"] {
|
|
1856
|
+
color: var(--accent-foreground);
|
|
1857
|
+
}
|
|
1858
|
+
.data-\[side\=bottom\]\:-top-1[data-side="bottom"] {
|
|
1859
|
+
top: calc(var(--spacing) * -1);
|
|
1860
|
+
}
|
|
1861
|
+
.data-\[side\=left\]\:-right-1[data-side="left"] {
|
|
1862
|
+
right: calc(var(--spacing) * -1);
|
|
1863
|
+
}
|
|
1864
|
+
.data-\[side\=right\]\:-left-1[data-side="right"] {
|
|
1865
|
+
left: calc(var(--spacing) * -1);
|
|
1866
|
+
}
|
|
1867
|
+
.data-\[side\=top\]\:-bottom-1[data-side="top"] {
|
|
1868
|
+
bottom: calc(var(--spacing) * -1);
|
|
1869
|
+
}
|
|
1129
1870
|
.data-\[size\=default\]\:h-9[data-size="default"] {
|
|
1130
1871
|
height: calc(var(--spacing) * 9);
|
|
1131
1872
|
}
|
|
1132
1873
|
.data-\[size\=sm\]\:h-8[data-size="sm"] {
|
|
1133
1874
|
height: calc(var(--spacing) * 8);
|
|
1134
1875
|
}
|
|
1876
|
+
:is(.\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:ring-0 *)[data-slot="navigation-menu-link"]:focus {
|
|
1877
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1878
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1879
|
+
}
|
|
1880
|
+
:is(.\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:outline-none *)[data-slot="navigation-menu-link"]:focus {
|
|
1881
|
+
--tw-outline-style: none;
|
|
1882
|
+
outline-style: none;
|
|
1883
|
+
}
|
|
1135
1884
|
.data-\[state\=selected\]\:bg-muted[data-state="selected"] {
|
|
1136
1885
|
background-color: var(--muted);
|
|
1137
1886
|
}
|
|
1887
|
+
.data-\[variant\=destructive\]\:text-destructive[data-variant="destructive"] {
|
|
1888
|
+
color: var(--destructive);
|
|
1889
|
+
}
|
|
1890
|
+
.data-\[variant\=destructive\]\:focus\:bg-destructive\/10[data-variant="destructive"]:focus {
|
|
1891
|
+
background-color: var(--destructive);
|
|
1892
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1893
|
+
background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
|
|
1894
|
+
}
|
|
1895
|
+
}
|
|
1896
|
+
.data-\[variant\=destructive\]\:focus\:text-destructive[data-variant="destructive"]:focus {
|
|
1897
|
+
color: var(--destructive);
|
|
1898
|
+
}
|
|
1899
|
+
.data-\[vaul-drawer-direction\=bottom\]\:inset-x-0[data-vaul-drawer-direction="bottom"] {
|
|
1900
|
+
inset-inline: 0px;
|
|
1901
|
+
}
|
|
1902
|
+
.data-\[vaul-drawer-direction\=bottom\]\:bottom-0[data-vaul-drawer-direction="bottom"] {
|
|
1903
|
+
bottom: 0px;
|
|
1904
|
+
}
|
|
1905
|
+
.data-\[vaul-drawer-direction\=bottom\]\:mt-24[data-vaul-drawer-direction="bottom"] {
|
|
1906
|
+
margin-top: calc(var(--spacing) * 24);
|
|
1907
|
+
}
|
|
1908
|
+
.data-\[vaul-drawer-direction\=bottom\]\:max-h-\[80vh\][data-vaul-drawer-direction="bottom"] {
|
|
1909
|
+
max-height: 80vh;
|
|
1910
|
+
}
|
|
1911
|
+
.data-\[vaul-drawer-direction\=bottom\]\:rounded-t-lg[data-vaul-drawer-direction="bottom"] {
|
|
1912
|
+
border-top-left-radius: var(--radius);
|
|
1913
|
+
border-top-right-radius: var(--radius);
|
|
1914
|
+
}
|
|
1915
|
+
.data-\[vaul-drawer-direction\=bottom\]\:border-t[data-vaul-drawer-direction="bottom"] {
|
|
1916
|
+
border-top-style: var(--tw-border-style);
|
|
1917
|
+
border-top-width: 1px;
|
|
1918
|
+
}
|
|
1919
|
+
.data-\[vaul-drawer-direction\=left\]\:inset-y-0[data-vaul-drawer-direction="left"] {
|
|
1920
|
+
inset-block: 0px;
|
|
1921
|
+
}
|
|
1922
|
+
.data-\[vaul-drawer-direction\=left\]\:left-0[data-vaul-drawer-direction="left"] {
|
|
1923
|
+
left: 0px;
|
|
1924
|
+
}
|
|
1925
|
+
.data-\[vaul-drawer-direction\=left\]\:w-3\/4[data-vaul-drawer-direction="left"] {
|
|
1926
|
+
width: calc(3 / 4 * 100%);
|
|
1927
|
+
}
|
|
1928
|
+
.data-\[vaul-drawer-direction\=left\]\:border-r[data-vaul-drawer-direction="left"] {
|
|
1929
|
+
border-right-style: var(--tw-border-style);
|
|
1930
|
+
border-right-width: 1px;
|
|
1931
|
+
}
|
|
1932
|
+
.data-\[vaul-drawer-direction\=right\]\:inset-y-0[data-vaul-drawer-direction="right"] {
|
|
1933
|
+
inset-block: 0px;
|
|
1934
|
+
}
|
|
1935
|
+
.data-\[vaul-drawer-direction\=right\]\:right-0[data-vaul-drawer-direction="right"] {
|
|
1936
|
+
right: 0px;
|
|
1937
|
+
}
|
|
1938
|
+
.data-\[vaul-drawer-direction\=right\]\:w-3\/4[data-vaul-drawer-direction="right"] {
|
|
1939
|
+
width: calc(3 / 4 * 100%);
|
|
1940
|
+
}
|
|
1941
|
+
.data-\[vaul-drawer-direction\=right\]\:border-l[data-vaul-drawer-direction="right"] {
|
|
1942
|
+
border-left-style: var(--tw-border-style);
|
|
1943
|
+
border-left-width: 1px;
|
|
1944
|
+
}
|
|
1945
|
+
.data-\[vaul-drawer-direction\=top\]\:inset-x-0[data-vaul-drawer-direction="top"] {
|
|
1946
|
+
inset-inline: 0px;
|
|
1947
|
+
}
|
|
1948
|
+
.data-\[vaul-drawer-direction\=top\]\:top-0[data-vaul-drawer-direction="top"] {
|
|
1949
|
+
top: 0px;
|
|
1950
|
+
}
|
|
1951
|
+
.data-\[vaul-drawer-direction\=top\]\:mb-24[data-vaul-drawer-direction="top"] {
|
|
1952
|
+
margin-bottom: calc(var(--spacing) * 24);
|
|
1953
|
+
}
|
|
1954
|
+
.data-\[vaul-drawer-direction\=top\]\:max-h-\[80vh\][data-vaul-drawer-direction="top"] {
|
|
1955
|
+
max-height: 80vh;
|
|
1956
|
+
}
|
|
1957
|
+
.data-\[vaul-drawer-direction\=top\]\:rounded-b-lg[data-vaul-drawer-direction="top"] {
|
|
1958
|
+
border-bottom-right-radius: var(--radius);
|
|
1959
|
+
border-bottom-left-radius: var(--radius);
|
|
1960
|
+
}
|
|
1961
|
+
.data-\[vaul-drawer-direction\=top\]\:border-b[data-vaul-drawer-direction="top"] {
|
|
1962
|
+
border-bottom-style: var(--tw-border-style);
|
|
1963
|
+
border-bottom-width: 1px;
|
|
1964
|
+
}
|
|
1965
|
+
@media (width < 48rem) {
|
|
1966
|
+
.max-md\:fixed {
|
|
1967
|
+
position: fixed;
|
|
1968
|
+
}
|
|
1969
|
+
.max-md\:inset-y-0 {
|
|
1970
|
+
inset-block: 0px;
|
|
1971
|
+
}
|
|
1972
|
+
.max-md\:left-0 {
|
|
1973
|
+
left: 0px;
|
|
1974
|
+
}
|
|
1975
|
+
.max-md\:z-50 {
|
|
1976
|
+
z-index: 50;
|
|
1977
|
+
}
|
|
1978
|
+
.max-md\:hidden {
|
|
1979
|
+
display: none;
|
|
1980
|
+
}
|
|
1981
|
+
.max-md\:w-60 {
|
|
1982
|
+
width: calc(var(--spacing) * 60);
|
|
1983
|
+
}
|
|
1984
|
+
.max-md\:-translate-x-full {
|
|
1985
|
+
--tw-translate-x: -100%;
|
|
1986
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1987
|
+
}
|
|
1988
|
+
.max-md\:data-\[open\=true\]\:translate-x-0[data-open="true"] {
|
|
1989
|
+
--tw-translate-x: 0px;
|
|
1990
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1991
|
+
}
|
|
1992
|
+
}
|
|
1138
1993
|
@media (width >= 40rem) {
|
|
1994
|
+
.sm\:block {
|
|
1995
|
+
display: block;
|
|
1996
|
+
}
|
|
1139
1997
|
.sm\:max-w-lg {
|
|
1140
1998
|
max-width: var(--container-lg);
|
|
1141
1999
|
}
|
|
@@ -1151,9 +2009,44 @@
|
|
|
1151
2009
|
.sm\:justify-end {
|
|
1152
2010
|
justify-content: flex-end;
|
|
1153
2011
|
}
|
|
2012
|
+
.sm\:gap-2\.5 {
|
|
2013
|
+
gap: calc(var(--spacing) * 2.5);
|
|
2014
|
+
}
|
|
2015
|
+
.sm\:pr-2\.5 {
|
|
2016
|
+
padding-right: calc(var(--spacing) * 2.5);
|
|
2017
|
+
}
|
|
2018
|
+
.sm\:pl-2\.5 {
|
|
2019
|
+
padding-left: calc(var(--spacing) * 2.5);
|
|
2020
|
+
}
|
|
1154
2021
|
.sm\:text-left {
|
|
1155
2022
|
text-align: left;
|
|
1156
2023
|
}
|
|
2024
|
+
.data-\[vaul-drawer-direction\=left\]\:sm\:max-w-sm[data-vaul-drawer-direction="left"] {
|
|
2025
|
+
max-width: var(--container-sm);
|
|
2026
|
+
}
|
|
2027
|
+
.data-\[vaul-drawer-direction\=right\]\:sm\:max-w-sm[data-vaul-drawer-direction="right"] {
|
|
2028
|
+
max-width: var(--container-sm);
|
|
2029
|
+
}
|
|
2030
|
+
}
|
|
2031
|
+
@media (width >= 48rem) {
|
|
2032
|
+
.md\:hidden {
|
|
2033
|
+
display: none;
|
|
2034
|
+
}
|
|
2035
|
+
.md\:flex-row {
|
|
2036
|
+
flex-direction: row;
|
|
2037
|
+
}
|
|
2038
|
+
.md\:text-sm {
|
|
2039
|
+
font-size: var(--text-sm);
|
|
2040
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
2041
|
+
}
|
|
2042
|
+
}
|
|
2043
|
+
@media (prefers-color-scheme: dark) {
|
|
2044
|
+
.dark\:text-amber-400 {
|
|
2045
|
+
color: var(--color-amber-400);
|
|
2046
|
+
}
|
|
2047
|
+
.dark\:text-green-400 {
|
|
2048
|
+
color: var(--color-green-400);
|
|
2049
|
+
}
|
|
1157
2050
|
}
|
|
1158
2051
|
.data-open\:animate-accordion-down:where([data-open]:not([data-open='false'])) {
|
|
1159
2052
|
animation: accordion-down 200ms ease-out;
|
|
@@ -1161,6 +2054,22 @@
|
|
|
1161
2054
|
.data-open\:animate-in:where([data-open]:not([data-open='false'])) {
|
|
1162
2055
|
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
1163
2056
|
}
|
|
2057
|
+
.data-open\:bg-accent:where([data-open]:not([data-open='false'])) {
|
|
2058
|
+
background-color: var(--accent);
|
|
2059
|
+
}
|
|
2060
|
+
.data-open\:bg-accent\/50:where([data-open]:not([data-open='false'])) {
|
|
2061
|
+
background-color: var(--accent);
|
|
2062
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2063
|
+
background-color: color-mix(in oklab, var(--accent) 50%, transparent);
|
|
2064
|
+
}
|
|
2065
|
+
}
|
|
2066
|
+
.data-open\:text-accent-foreground:where([data-open]:not([data-open='false'])) {
|
|
2067
|
+
color: var(--accent-foreground);
|
|
2068
|
+
}
|
|
2069
|
+
.data-open\:duration-300:where([data-open]:not([data-open='false'])) {
|
|
2070
|
+
--tw-duration: 300ms;
|
|
2071
|
+
transition-duration: 300ms;
|
|
2072
|
+
}
|
|
1164
2073
|
.data-open\:fade-in-0:where([data-open]:not([data-open='false'])) {
|
|
1165
2074
|
--tw-enter-opacity: calc(0/100);
|
|
1166
2075
|
--tw-enter-opacity: 0;
|
|
@@ -1169,12 +2078,28 @@
|
|
|
1169
2078
|
--tw-enter-scale: calc(95*1%);
|
|
1170
2079
|
--tw-enter-scale: .95;
|
|
1171
2080
|
}
|
|
2081
|
+
.data-open\:slide-in-from-bottom:where([data-open]:not([data-open='false'])) {
|
|
2082
|
+
--tw-enter-translate-y: 100%;
|
|
2083
|
+
}
|
|
2084
|
+
.data-open\:slide-in-from-left:where([data-open]:not([data-open='false'])) {
|
|
2085
|
+
--tw-enter-translate-x: -100%;
|
|
2086
|
+
}
|
|
2087
|
+
.data-open\:slide-in-from-right:where([data-open]:not([data-open='false'])) {
|
|
2088
|
+
--tw-enter-translate-x: 100%;
|
|
2089
|
+
}
|
|
2090
|
+
.data-open\:slide-in-from-top:where([data-open]:not([data-open='false'])) {
|
|
2091
|
+
--tw-enter-translate-y: -100%;
|
|
2092
|
+
}
|
|
1172
2093
|
.data-closed\:animate-accordion-up:where([data-closed]:not([data-closed='false'])) {
|
|
1173
2094
|
animation: accordion-up 200ms ease-out;
|
|
1174
2095
|
}
|
|
1175
2096
|
.data-closed\:animate-out:where([data-closed]:not([data-closed='false'])) {
|
|
1176
2097
|
animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
1177
2098
|
}
|
|
2099
|
+
.data-closed\:duration-200:where([data-closed]:not([data-closed='false'])) {
|
|
2100
|
+
--tw-duration: 200ms;
|
|
2101
|
+
transition-duration: 200ms;
|
|
2102
|
+
}
|
|
1178
2103
|
.data-closed\:fade-out-0:where([data-closed]:not([data-closed='false'])) {
|
|
1179
2104
|
--tw-exit-opacity: calc(0/100);
|
|
1180
2105
|
--tw-exit-opacity: 0;
|
|
@@ -1183,12 +2108,33 @@
|
|
|
1183
2108
|
--tw-exit-scale: calc(95*1%);
|
|
1184
2109
|
--tw-exit-scale: .95;
|
|
1185
2110
|
}
|
|
2111
|
+
.data-closed\:slide-out-to-bottom:where([data-closed]:not([data-closed='false'])) {
|
|
2112
|
+
--tw-exit-translate-y: 100%;
|
|
2113
|
+
}
|
|
2114
|
+
.data-closed\:slide-out-to-left:where([data-closed]:not([data-closed='false'])) {
|
|
2115
|
+
--tw-exit-translate-x: -100%;
|
|
2116
|
+
}
|
|
2117
|
+
.data-closed\:slide-out-to-right:where([data-closed]:not([data-closed='false'])) {
|
|
2118
|
+
--tw-exit-translate-x: 100%;
|
|
2119
|
+
}
|
|
2120
|
+
.data-closed\:slide-out-to-top:where([data-closed]:not([data-closed='false'])) {
|
|
2121
|
+
--tw-exit-translate-y: -100%;
|
|
2122
|
+
}
|
|
1186
2123
|
.data-active\:border-border:where([data-active]:not([data-active='false'])) {
|
|
1187
2124
|
border-color: var(--border);
|
|
1188
2125
|
}
|
|
2126
|
+
.data-active\:bg-accent\/50:where([data-active]:not([data-active='false'])) {
|
|
2127
|
+
background-color: var(--accent);
|
|
2128
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2129
|
+
background-color: color-mix(in oklab, var(--accent) 50%, transparent);
|
|
2130
|
+
}
|
|
2131
|
+
}
|
|
1189
2132
|
.data-active\:bg-background:where([data-active]:not([data-active='false'])) {
|
|
1190
2133
|
background-color: var(--background);
|
|
1191
2134
|
}
|
|
2135
|
+
.data-active\:text-accent-foreground:where([data-active]:not([data-active='false'])) {
|
|
2136
|
+
color: var(--accent-foreground);
|
|
2137
|
+
}
|
|
1192
2138
|
.data-active\:shadow-sm:where([data-active]:not([data-active='false'])) {
|
|
1193
2139
|
--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));
|
|
1194
2140
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1199,6 +2145,41 @@
|
|
|
1199
2145
|
.data-disabled\:opacity-50:where([data-disabled]:not([data-disabled='false'])) {
|
|
1200
2146
|
opacity: 50%;
|
|
1201
2147
|
}
|
|
2148
|
+
.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading] {
|
|
2149
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
2150
|
+
}
|
|
2151
|
+
.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading] {
|
|
2152
|
+
padding-block: calc(var(--spacing) * 1.5);
|
|
2153
|
+
}
|
|
2154
|
+
.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading] {
|
|
2155
|
+
font-size: var(--text-xs);
|
|
2156
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
2157
|
+
}
|
|
2158
|
+
.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading] {
|
|
2159
|
+
--tw-font-weight: var(--font-weight-medium);
|
|
2160
|
+
font-weight: var(--font-weight-medium);
|
|
2161
|
+
}
|
|
2162
|
+
.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading] {
|
|
2163
|
+
color: var(--muted-foreground);
|
|
2164
|
+
}
|
|
2165
|
+
.\[\&_\[data-slot\=input\]\]\:min-w-0 [data-slot=input] {
|
|
2166
|
+
min-width: 0px;
|
|
2167
|
+
}
|
|
2168
|
+
.\[\&_\[data-slot\=input\]\]\:flex-1 [data-slot=input] {
|
|
2169
|
+
flex: 1;
|
|
2170
|
+
}
|
|
2171
|
+
.\[\&_\[data-slot\=input\]\]\:border-0 [data-slot=input] {
|
|
2172
|
+
border-style: var(--tw-border-style);
|
|
2173
|
+
border-width: 0px;
|
|
2174
|
+
}
|
|
2175
|
+
.\[\&_\[data-slot\=input\]\]\:shadow-none [data-slot=input] {
|
|
2176
|
+
--tw-shadow: 0 0 #0000;
|
|
2177
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2178
|
+
}
|
|
2179
|
+
.\[\&_\[data-slot\=input\]\]\:focus-visible\:ring-0 [data-slot=input]:focus-visible {
|
|
2180
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2181
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2182
|
+
}
|
|
1202
2183
|
.\[\&_p\]\:leading-relaxed p {
|
|
1203
2184
|
--tw-leading: var(--leading-relaxed);
|
|
1204
2185
|
line-height: var(--leading-relaxed);
|
|
@@ -1206,6 +2187,10 @@
|
|
|
1206
2187
|
.\[\&_svg\]\:pointer-events-none svg {
|
|
1207
2188
|
pointer-events: none;
|
|
1208
2189
|
}
|
|
2190
|
+
.\[\&_svg\]\:size-3\.5 svg {
|
|
2191
|
+
width: calc(var(--spacing) * 3.5);
|
|
2192
|
+
height: calc(var(--spacing) * 3.5);
|
|
2193
|
+
}
|
|
1209
2194
|
.\[\&_svg\]\:shrink-0 svg {
|
|
1210
2195
|
flex-shrink: 0;
|
|
1211
2196
|
}
|
|
@@ -1213,6 +2198,10 @@
|
|
|
1213
2198
|
width: calc(var(--spacing) * 4);
|
|
1214
2199
|
height: calc(var(--spacing) * 4);
|
|
1215
2200
|
}
|
|
2201
|
+
.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-5 svg:not([class*='size-']) {
|
|
2202
|
+
width: calc(var(--spacing) * 5);
|
|
2203
|
+
height: calc(var(--spacing) * 5);
|
|
2204
|
+
}
|
|
1216
2205
|
.\[\&_tr\]\:border-b tr {
|
|
1217
2206
|
border-bottom-style: var(--tw-border-style);
|
|
1218
2207
|
border-bottom-width: 1px;
|
|
@@ -1233,6 +2222,73 @@
|
|
|
1233
2222
|
.\[\.border-t\]\:pt-6:is(.border-t) {
|
|
1234
2223
|
padding-top: calc(var(--spacing) * 6);
|
|
1235
2224
|
}
|
|
2225
|
+
.\[\&\>\*\]\:focus-visible\:relative > *:focus-visible {
|
|
2226
|
+
position: relative;
|
|
2227
|
+
}
|
|
2228
|
+
.\[\&\>\*\]\:focus-visible\:z-10 > *:focus-visible {
|
|
2229
|
+
z-index: 10;
|
|
2230
|
+
}
|
|
2231
|
+
.\[\&\>\[data-slot\=button\]\]\:shrink-0 > [data-slot=button] {
|
|
2232
|
+
flex-shrink: 0;
|
|
2233
|
+
}
|
|
2234
|
+
.\[\&\>\[data-slot\=button\]\]\:rounded-none > [data-slot=button] {
|
|
2235
|
+
border-radius: 0;
|
|
2236
|
+
}
|
|
2237
|
+
.\[\&\>\[data-slot\=button\]\]\:first\:rounded-l-md > [data-slot=button]:first-child {
|
|
2238
|
+
border-top-left-radius: calc(var(--radius) * 0.8);
|
|
2239
|
+
border-bottom-left-radius: calc(var(--radius) * 0.8);
|
|
2240
|
+
}
|
|
2241
|
+
.\[\&\>\[data-slot\=button\]\]\:last\:rounded-r-md > [data-slot=button]:last-child {
|
|
2242
|
+
border-top-right-radius: calc(var(--radius) * 0.8);
|
|
2243
|
+
border-bottom-right-radius: calc(var(--radius) * 0.8);
|
|
2244
|
+
}
|
|
2245
|
+
.\[\&\>\[data-slot\=button\]\:not\(\:first-child\)\]\:-ml-px > [data-slot=button]:not(:first-child) {
|
|
2246
|
+
margin-left: -1px;
|
|
2247
|
+
}
|
|
2248
|
+
.\[\&\>\[data-slot\=text\]\]\:shrink-0 > [data-slot=text] {
|
|
2249
|
+
flex-shrink: 0;
|
|
2250
|
+
}
|
|
2251
|
+
.\[\&\>\[data-slot\=text\]\]\:px-3 > [data-slot=text] {
|
|
2252
|
+
padding-inline: calc(var(--spacing) * 3);
|
|
2253
|
+
}
|
|
2254
|
+
.\[\&\>\[data-slot\=text\]\]\:text-sm > [data-slot=text] {
|
|
2255
|
+
font-size: var(--text-sm);
|
|
2256
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
2257
|
+
}
|
|
2258
|
+
.\[\&\>\[data-slot\=text\]\]\:text-muted-foreground > [data-slot=text] {
|
|
2259
|
+
color: var(--muted-foreground);
|
|
2260
|
+
}
|
|
2261
|
+
.\[\&\>\[data-slot\=toggle\]\]\:rounded-none > [data-slot=toggle] {
|
|
2262
|
+
border-radius: 0;
|
|
2263
|
+
}
|
|
2264
|
+
.\[\&\>\[data-slot\=toggle\]\]\:first\:rounded-l-md > [data-slot=toggle]:first-child {
|
|
2265
|
+
border-top-left-radius: calc(var(--radius) * 0.8);
|
|
2266
|
+
border-bottom-left-radius: calc(var(--radius) * 0.8);
|
|
2267
|
+
}
|
|
2268
|
+
.\[\&\>\[data-slot\=toggle\]\]\:last\:rounded-r-md > [data-slot=toggle]:last-child {
|
|
2269
|
+
border-top-right-radius: calc(var(--radius) * 0.8);
|
|
2270
|
+
border-bottom-right-radius: calc(var(--radius) * 0.8);
|
|
2271
|
+
}
|
|
2272
|
+
.\[\&\>button\]\:bg-accent > button {
|
|
2273
|
+
background-color: var(--accent);
|
|
2274
|
+
}
|
|
2275
|
+
.\[\&\>button\]\:bg-primary > button {
|
|
2276
|
+
background-color: var(--primary);
|
|
2277
|
+
}
|
|
2278
|
+
.\[\&\>button\]\:text-accent-foreground > button {
|
|
2279
|
+
color: var(--accent-foreground);
|
|
2280
|
+
}
|
|
2281
|
+
.\[\&\>button\]\:text-primary-foreground > button {
|
|
2282
|
+
color: var(--primary-foreground);
|
|
2283
|
+
}
|
|
2284
|
+
@media (hover: hover) {
|
|
2285
|
+
.\[\&\>button\]\:hover\:bg-primary > button:hover {
|
|
2286
|
+
background-color: var(--primary);
|
|
2287
|
+
}
|
|
2288
|
+
}
|
|
2289
|
+
.\[\&\>li\]\:mt-2 > li {
|
|
2290
|
+
margin-top: calc(var(--spacing) * 2);
|
|
2291
|
+
}
|
|
1236
2292
|
.\[\&\>svg\]\:pointer-events-none > svg {
|
|
1237
2293
|
pointer-events: none;
|
|
1238
2294
|
}
|
|
@@ -1240,6 +2296,10 @@
|
|
|
1240
2296
|
width: calc(var(--spacing) * 3);
|
|
1241
2297
|
height: calc(var(--spacing) * 3);
|
|
1242
2298
|
}
|
|
2299
|
+
.\[\&\>svg\]\:size-3\.5 > svg {
|
|
2300
|
+
width: calc(var(--spacing) * 3.5);
|
|
2301
|
+
height: calc(var(--spacing) * 3.5);
|
|
2302
|
+
}
|
|
1243
2303
|
.\[\&\>svg\]\:size-4 > svg {
|
|
1244
2304
|
width: calc(var(--spacing) * 4);
|
|
1245
2305
|
height: calc(var(--spacing) * 4);
|
|
@@ -1258,6 +2318,12 @@
|
|
|
1258
2318
|
.\[\&\[aria-expanded\=true\]\>svg\]\:rotate-180[aria-expanded=true] > svg {
|
|
1259
2319
|
rotate: 180deg;
|
|
1260
2320
|
}
|
|
2321
|
+
.\[\&\[data-orientation\=vertical\]\>div\]\:rotate-90[data-orientation=vertical] > div {
|
|
2322
|
+
rotate: 90deg;
|
|
2323
|
+
}
|
|
2324
|
+
.\[\&\[data-panel-open\]\>svg\]\:rotate-180[data-panel-open] > svg {
|
|
2325
|
+
rotate: 180deg;
|
|
2326
|
+
}
|
|
1261
2327
|
}
|
|
1262
2328
|
@property --tw-animation-delay {
|
|
1263
2329
|
syntax: "*";
|
|
@@ -1446,6 +2512,26 @@
|
|
|
1446
2512
|
inherits: false;
|
|
1447
2513
|
initial-value: 0;
|
|
1448
2514
|
}
|
|
2515
|
+
@property --tw-rotate-x {
|
|
2516
|
+
syntax: "*";
|
|
2517
|
+
inherits: false;
|
|
2518
|
+
}
|
|
2519
|
+
@property --tw-rotate-y {
|
|
2520
|
+
syntax: "*";
|
|
2521
|
+
inherits: false;
|
|
2522
|
+
}
|
|
2523
|
+
@property --tw-rotate-z {
|
|
2524
|
+
syntax: "*";
|
|
2525
|
+
inherits: false;
|
|
2526
|
+
}
|
|
2527
|
+
@property --tw-skew-x {
|
|
2528
|
+
syntax: "*";
|
|
2529
|
+
inherits: false;
|
|
2530
|
+
}
|
|
2531
|
+
@property --tw-skew-y {
|
|
2532
|
+
syntax: "*";
|
|
2533
|
+
inherits: false;
|
|
2534
|
+
}
|
|
1449
2535
|
@property --tw-space-y-reverse {
|
|
1450
2536
|
syntax: "*";
|
|
1451
2537
|
inherits: false;
|
|
@@ -1558,10 +2644,72 @@
|
|
|
1558
2644
|
inherits: false;
|
|
1559
2645
|
initial-value: solid;
|
|
1560
2646
|
}
|
|
2647
|
+
@property --tw-blur {
|
|
2648
|
+
syntax: "*";
|
|
2649
|
+
inherits: false;
|
|
2650
|
+
}
|
|
2651
|
+
@property --tw-brightness {
|
|
2652
|
+
syntax: "*";
|
|
2653
|
+
inherits: false;
|
|
2654
|
+
}
|
|
2655
|
+
@property --tw-contrast {
|
|
2656
|
+
syntax: "*";
|
|
2657
|
+
inherits: false;
|
|
2658
|
+
}
|
|
2659
|
+
@property --tw-grayscale {
|
|
2660
|
+
syntax: "*";
|
|
2661
|
+
inherits: false;
|
|
2662
|
+
}
|
|
2663
|
+
@property --tw-hue-rotate {
|
|
2664
|
+
syntax: "*";
|
|
2665
|
+
inherits: false;
|
|
2666
|
+
}
|
|
2667
|
+
@property --tw-invert {
|
|
2668
|
+
syntax: "*";
|
|
2669
|
+
inherits: false;
|
|
2670
|
+
}
|
|
2671
|
+
@property --tw-opacity {
|
|
2672
|
+
syntax: "*";
|
|
2673
|
+
inherits: false;
|
|
2674
|
+
}
|
|
2675
|
+
@property --tw-saturate {
|
|
2676
|
+
syntax: "*";
|
|
2677
|
+
inherits: false;
|
|
2678
|
+
}
|
|
2679
|
+
@property --tw-sepia {
|
|
2680
|
+
syntax: "*";
|
|
2681
|
+
inherits: false;
|
|
2682
|
+
}
|
|
2683
|
+
@property --tw-drop-shadow {
|
|
2684
|
+
syntax: "*";
|
|
2685
|
+
inherits: false;
|
|
2686
|
+
}
|
|
2687
|
+
@property --tw-drop-shadow-color {
|
|
2688
|
+
syntax: "*";
|
|
2689
|
+
inherits: false;
|
|
2690
|
+
}
|
|
2691
|
+
@property --tw-drop-shadow-alpha {
|
|
2692
|
+
syntax: "<percentage>";
|
|
2693
|
+
inherits: false;
|
|
2694
|
+
initial-value: 100%;
|
|
2695
|
+
}
|
|
2696
|
+
@property --tw-drop-shadow-size {
|
|
2697
|
+
syntax: "*";
|
|
2698
|
+
inherits: false;
|
|
2699
|
+
}
|
|
1561
2700
|
@property --tw-duration {
|
|
1562
2701
|
syntax: "*";
|
|
1563
2702
|
inherits: false;
|
|
1564
2703
|
}
|
|
2704
|
+
@property --tw-ease {
|
|
2705
|
+
syntax: "*";
|
|
2706
|
+
inherits: false;
|
|
2707
|
+
}
|
|
2708
|
+
@property --tw-content {
|
|
2709
|
+
syntax: "*";
|
|
2710
|
+
initial-value: "";
|
|
2711
|
+
inherits: false;
|
|
2712
|
+
}
|
|
1565
2713
|
@keyframes spin {
|
|
1566
2714
|
to {
|
|
1567
2715
|
transform: rotate(360deg);
|
|
@@ -1602,6 +2750,14 @@
|
|
|
1602
2750
|
height: 0;
|
|
1603
2751
|
}
|
|
1604
2752
|
}
|
|
2753
|
+
@keyframes caret-blink {
|
|
2754
|
+
0%,70%,100% {
|
|
2755
|
+
opacity: 1;
|
|
2756
|
+
}
|
|
2757
|
+
20%,50% {
|
|
2758
|
+
opacity: 0;
|
|
2759
|
+
}
|
|
2760
|
+
}
|
|
1605
2761
|
@keyframes accordion-down {
|
|
1606
2762
|
from {
|
|
1607
2763
|
height: 0;
|
|
@@ -1618,12 +2774,37 @@
|
|
|
1618
2774
|
height: 0;
|
|
1619
2775
|
}
|
|
1620
2776
|
}
|
|
2777
|
+
@keyframes toast-in {
|
|
2778
|
+
from {
|
|
2779
|
+
opacity: 0;
|
|
2780
|
+
transform: translateY(-8px) scale(0.98);
|
|
2781
|
+
}
|
|
2782
|
+
to {
|
|
2783
|
+
opacity: 1;
|
|
2784
|
+
transform: translateY(0) scale(1);
|
|
2785
|
+
}
|
|
2786
|
+
}
|
|
2787
|
+
@keyframes toast-out {
|
|
2788
|
+
from {
|
|
2789
|
+
opacity: 1;
|
|
2790
|
+
transform: translateY(0) scale(1);
|
|
2791
|
+
}
|
|
2792
|
+
to {
|
|
2793
|
+
opacity: 0;
|
|
2794
|
+
transform: translateY(-8px) scale(0.98);
|
|
2795
|
+
}
|
|
2796
|
+
}
|
|
1621
2797
|
@layer properties {
|
|
1622
2798
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
1623
2799
|
*, ::before, ::after, ::backdrop {
|
|
1624
2800
|
--tw-translate-x: 0;
|
|
1625
2801
|
--tw-translate-y: 0;
|
|
1626
2802
|
--tw-translate-z: 0;
|
|
2803
|
+
--tw-rotate-x: initial;
|
|
2804
|
+
--tw-rotate-y: initial;
|
|
2805
|
+
--tw-rotate-z: initial;
|
|
2806
|
+
--tw-skew-x: initial;
|
|
2807
|
+
--tw-skew-y: initial;
|
|
1627
2808
|
--tw-space-y-reverse: 0;
|
|
1628
2809
|
--tw-border-style: solid;
|
|
1629
2810
|
--tw-leading: initial;
|
|
@@ -1649,7 +2830,22 @@
|
|
|
1649
2830
|
--tw-ring-offset-color: #fff;
|
|
1650
2831
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1651
2832
|
--tw-outline-style: solid;
|
|
2833
|
+
--tw-blur: initial;
|
|
2834
|
+
--tw-brightness: initial;
|
|
2835
|
+
--tw-contrast: initial;
|
|
2836
|
+
--tw-grayscale: initial;
|
|
2837
|
+
--tw-hue-rotate: initial;
|
|
2838
|
+
--tw-invert: initial;
|
|
2839
|
+
--tw-opacity: initial;
|
|
2840
|
+
--tw-saturate: initial;
|
|
2841
|
+
--tw-sepia: initial;
|
|
2842
|
+
--tw-drop-shadow: initial;
|
|
2843
|
+
--tw-drop-shadow-color: initial;
|
|
2844
|
+
--tw-drop-shadow-alpha: 100%;
|
|
2845
|
+
--tw-drop-shadow-size: initial;
|
|
1652
2846
|
--tw-duration: initial;
|
|
2847
|
+
--tw-ease: initial;
|
|
2848
|
+
--tw-content: "";
|
|
1653
2849
|
--tw-animation-delay: 0s;
|
|
1654
2850
|
--tw-animation-direction: normal;
|
|
1655
2851
|
--tw-animation-duration: initial;
|