ikoncomponents 1.6.3 → 1.6.4

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/styles.css CHANGED
@@ -1,8 +1,9 @@
1
- /*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.16 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  @layer theme, base, components, utilities;
4
4
  @layer theme {
5
5
  :root, :host {
6
+ --color-red-200: oklch(88.5% 0.062 18.334);
6
7
  --color-red-500: oklch(63.7% 0.237 25.331);
7
8
  --color-red-800: oklch(44.4% 0.177 26.899);
8
9
  --color-blue-50: oklch(97% 0.014 254.604);
@@ -41,18 +42,25 @@
41
42
  --text-base--line-height: calc(1.5 / 1);
42
43
  --text-lg: 1.125rem;
43
44
  --text-lg--line-height: calc(1.75 / 1.125);
45
+ --text-xl: 1.25rem;
46
+ --text-xl--line-height: calc(1.75 / 1.25);
44
47
  --text-2xl: 1.5rem;
45
48
  --text-2xl--line-height: calc(2 / 1.5);
46
49
  --text-3xl: 1.875rem;
47
50
  --text-3xl--line-height: calc(2.25 / 1.875);
51
+ --text-4xl: 2.25rem;
52
+ --text-4xl--line-height: calc(2.5 / 2.25);
48
53
  --font-weight-normal: 400;
49
54
  --font-weight-medium: 500;
50
55
  --font-weight-semibold: 600;
51
56
  --font-weight-bold: 700;
57
+ --font-weight-extrabold: 800;
52
58
  --tracking-tight: -0.025em;
53
59
  --tracking-widest: 0.1em;
54
60
  --leading-relaxed: 1.625;
55
61
  --radius-xs: 0.125rem;
62
+ --radius-3xl: 1.5rem;
63
+ --ease-out: cubic-bezier(0, 0, 0.2, 1);
56
64
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
57
65
  --animate-spin: spin 1s linear infinite;
58
66
  --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
@@ -215,6 +223,9 @@
215
223
  container-type: inline-size;
216
224
  container-name: card-header;
217
225
  }
226
+ .\@container {
227
+ container-type: inline-size;
228
+ }
218
229
  .pointer-events-none {
219
230
  pointer-events: none;
220
231
  }
@@ -259,6 +270,9 @@
259
270
  .inset-y-0 {
260
271
  inset-block: calc(var(--spacing) * 0);
261
272
  }
273
+ .-top-12 {
274
+ top: calc(var(--spacing) * -12);
275
+ }
262
276
  .top-0 {
263
277
  top: calc(var(--spacing) * 0);
264
278
  }
@@ -292,6 +306,9 @@
292
306
  .right-1 {
293
307
  right: calc(var(--spacing) * 1);
294
308
  }
309
+ .right-1\.5 {
310
+ right: calc(var(--spacing) * 1.5);
311
+ }
295
312
  .right-2 {
296
313
  right: calc(var(--spacing) * 2);
297
314
  }
@@ -331,15 +348,30 @@
331
348
  .z-\[1\] {
332
349
  z-index: 1;
333
350
  }
351
+ .col-span-full {
352
+ grid-column: 1 / -1;
353
+ }
354
+ .col-start-1 {
355
+ grid-column-start: 1;
356
+ }
334
357
  .col-start-2 {
335
358
  grid-column-start: 2;
336
359
  }
360
+ .col-start-3 {
361
+ grid-column-start: 3;
362
+ }
337
363
  .row-span-2 {
338
364
  grid-row: span 2 / span 2;
339
365
  }
340
366
  .row-start-1 {
341
367
  grid-row-start: 1;
342
368
  }
369
+ .row-start-2 {
370
+ grid-row-start: 2;
371
+ }
372
+ .row-start-3 {
373
+ grid-row-start: 3;
374
+ }
343
375
  .container {
344
376
  width: 100%;
345
377
  @media (width >= 40rem) {
@@ -358,6 +390,9 @@
358
390
  max-width: 96rem;
359
391
  }
360
392
  }
393
+ .m-0 {
394
+ margin: calc(var(--spacing) * 0);
395
+ }
361
396
  .m-2 {
362
397
  margin: calc(var(--spacing) * 2);
363
398
  }
@@ -379,6 +414,9 @@
379
414
  .mx-2 {
380
415
  margin-inline: calc(var(--spacing) * 2);
381
416
  }
417
+ .mx-3 {
418
+ margin-inline: calc(var(--spacing) * 3);
419
+ }
382
420
  .mx-3\.5 {
383
421
  margin-inline: calc(var(--spacing) * 3.5);
384
422
  }
@@ -391,6 +429,15 @@
391
429
  .my-1 {
392
430
  margin-block: calc(var(--spacing) * 1);
393
431
  }
432
+ .my-4 {
433
+ margin-block: calc(var(--spacing) * 4);
434
+ }
435
+ .my-5 {
436
+ margin-block: calc(var(--spacing) * 5);
437
+ }
438
+ .my-auto {
439
+ margin-block: auto;
440
+ }
394
441
  .mt-1 {
395
442
  margin-top: calc(var(--spacing) * 1);
396
443
  }
@@ -406,18 +453,30 @@
406
453
  .mt-4 {
407
454
  margin-top: calc(var(--spacing) * 4);
408
455
  }
456
+ .mt-5 {
457
+ margin-top: calc(var(--spacing) * 5);
458
+ }
409
459
  .mt-6 {
410
460
  margin-top: calc(var(--spacing) * 6);
411
461
  }
462
+ .mt-8 {
463
+ margin-top: calc(var(--spacing) * 8);
464
+ }
412
465
  .mt-auto {
413
466
  margin-top: auto;
414
467
  }
468
+ .-mr-1 {
469
+ margin-right: calc(var(--spacing) * -1);
470
+ }
415
471
  .-mr-2 {
416
472
  margin-right: calc(var(--spacing) * -2);
417
473
  }
418
474
  .mr-2 {
419
475
  margin-right: calc(var(--spacing) * 2);
420
476
  }
477
+ .mb-1 {
478
+ margin-bottom: calc(var(--spacing) * 1);
479
+ }
421
480
  .mb-2 {
422
481
  margin-bottom: calc(var(--spacing) * 2);
423
482
  }
@@ -427,15 +486,27 @@
427
486
  .mb-4 {
428
487
  margin-bottom: calc(var(--spacing) * 4);
429
488
  }
489
+ .mb-5 {
490
+ margin-bottom: calc(var(--spacing) * 5);
491
+ }
492
+ .mb-8 {
493
+ margin-bottom: calc(var(--spacing) * 8);
494
+ }
430
495
  .-ml-1 {
431
496
  margin-left: calc(var(--spacing) * -1);
432
497
  }
498
+ .-ml-2 {
499
+ margin-left: calc(var(--spacing) * -2);
500
+ }
433
501
  .ml-1 {
434
502
  margin-left: calc(var(--spacing) * 1);
435
503
  }
436
504
  .ml-2 {
437
505
  margin-left: calc(var(--spacing) * 2);
438
506
  }
507
+ .ml-6 {
508
+ margin-left: calc(var(--spacing) * 6);
509
+ }
439
510
  .ml-12 {
440
511
  margin-left: calc(var(--spacing) * 12);
441
512
  }
@@ -451,6 +522,12 @@
451
522
  -webkit-box-orient: vertical;
452
523
  -webkit-line-clamp: 1;
453
524
  }
525
+ .line-clamp-2 {
526
+ overflow: hidden;
527
+ display: -webkit-box;
528
+ -webkit-box-orient: vertical;
529
+ -webkit-line-clamp: 2;
530
+ }
454
531
  .\!block {
455
532
  display: block !important;
456
533
  }
@@ -517,6 +594,14 @@
517
594
  width: calc(var(--spacing) * 4);
518
595
  height: calc(var(--spacing) * 4);
519
596
  }
597
+ .size-5 {
598
+ width: calc(var(--spacing) * 5);
599
+ height: calc(var(--spacing) * 5);
600
+ }
601
+ .size-6 {
602
+ width: calc(var(--spacing) * 6);
603
+ height: calc(var(--spacing) * 6);
604
+ }
520
605
  .size-7 {
521
606
  width: calc(var(--spacing) * 7);
522
607
  height: calc(var(--spacing) * 7);
@@ -525,6 +610,10 @@
525
610
  width: calc(var(--spacing) * 8);
526
611
  height: calc(var(--spacing) * 8);
527
612
  }
613
+ .size-8\.5 {
614
+ width: calc(var(--spacing) * 8.5);
615
+ height: calc(var(--spacing) * 8.5);
616
+ }
528
617
  .size-9 {
529
618
  width: calc(var(--spacing) * 9);
530
619
  height: calc(var(--spacing) * 9);
@@ -533,6 +622,14 @@
533
622
  width: calc(var(--spacing) * 10);
534
623
  height: calc(var(--spacing) * 10);
535
624
  }
625
+ .size-14 {
626
+ width: calc(var(--spacing) * 14);
627
+ height: calc(var(--spacing) * 14);
628
+ }
629
+ .size-\[34px\] {
630
+ width: 34px;
631
+ height: 34px;
632
+ }
536
633
  .size-auto {
537
634
  width: auto;
538
635
  height: auto;
@@ -631,9 +728,18 @@
631
728
  .max-h-\(--radix-select-content-available-height\) {
632
729
  max-height: var(--radix-select-content-available-height);
633
730
  }
731
+ .max-h-32 {
732
+ max-height: calc(var(--spacing) * 32);
733
+ }
634
734
  .max-h-60 {
635
735
  max-height: calc(var(--spacing) * 60);
636
736
  }
737
+ .max-h-\[80dvh\] {
738
+ max-height: 80dvh;
739
+ }
740
+ .max-h-\[80vh\] {
741
+ max-height: 80vh;
742
+ }
637
743
  .max-h-\[200px\] {
638
744
  max-height: 200px;
639
745
  }
@@ -658,6 +764,9 @@
658
764
  .min-h-16 {
659
765
  min-height: calc(var(--spacing) * 16);
660
766
  }
767
+ .min-h-\[60px\] {
768
+ min-height: 60px;
769
+ }
661
770
  .min-h-screen {
662
771
  min-height: 100vh;
663
772
  }
@@ -784,6 +893,9 @@
784
893
  .max-w-3xl {
785
894
  max-width: var(--container-3xl);
786
895
  }
896
+ .max-w-7\/8 {
897
+ max-width: calc(7/8 * 100%);
898
+ }
787
899
  .max-w-20 {
788
900
  max-width: calc(var(--spacing) * 20);
789
901
  }
@@ -802,6 +914,9 @@
802
914
  .max-w-\[calc\(100\%-2rem\)\] {
803
915
  max-width: calc(100% - 2rem);
804
916
  }
917
+ .max-w-\[var\(--thread-max-width\)\] {
918
+ max-width: var(--thread-max-width);
919
+ }
805
920
  .max-w-full {
806
921
  max-width: 100%;
807
922
  }
@@ -868,6 +983,14 @@
868
983
  .border-collapse {
869
984
  border-collapse: collapse;
870
985
  }
986
+ .border-separate {
987
+ border-collapse: separate;
988
+ }
989
+ .border-spacing-0 {
990
+ --tw-border-spacing-x: calc(var(--spacing) * 0);
991
+ --tw-border-spacing-y: calc(var(--spacing) * 0);
992
+ border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
993
+ }
871
994
  .origin-\(--radix-dropdown-menu-content-transform-origin\) {
872
995
  transform-origin: var(--radix-dropdown-menu-content-transform-origin);
873
996
  }
@@ -887,6 +1010,10 @@
887
1010
  --tw-translate-x: calc(calc(1/2 * 100%) * -1);
888
1011
  translate: var(--tw-translate-x) var(--tw-translate-y);
889
1012
  }
1013
+ .-translate-x-full {
1014
+ --tw-translate-x: -100%;
1015
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1016
+ }
890
1017
  .-translate-x-px {
891
1018
  --tw-translate-x: -1px;
892
1019
  translate: var(--tw-translate-x) var(--tw-translate-y);
@@ -957,15 +1084,30 @@
957
1084
  .resize {
958
1085
  resize: both;
959
1086
  }
1087
+ .resize-none {
1088
+ resize: none;
1089
+ }
1090
+ .scroll-m-20 {
1091
+ scroll-margin: calc(var(--spacing) * 20);
1092
+ }
960
1093
  .scroll-my-1 {
961
1094
  scroll-margin-block: calc(var(--spacing) * 1);
962
1095
  }
963
1096
  .scroll-py-1 {
964
1097
  scroll-padding-block: calc(var(--spacing) * 1);
965
1098
  }
1099
+ .list-decimal {
1100
+ list-style-type: decimal;
1101
+ }
1102
+ .list-disc {
1103
+ list-style-type: disc;
1104
+ }
966
1105
  .list-none {
967
1106
  list-style-type: none;
968
1107
  }
1108
+ .auto-rows-auto {
1109
+ grid-auto-rows: auto;
1110
+ }
969
1111
  .auto-rows-min {
970
1112
  grid-auto-rows: min-content;
971
1113
  }
@@ -975,6 +1117,9 @@
975
1117
  .grid-cols-\[0_1fr\] {
976
1118
  grid-template-columns: 0 1fr;
977
1119
  }
1120
+ .grid-cols-\[minmax\(72px\,1fr\)_auto\] {
1121
+ grid-template-columns: minmax(72px,1fr) auto;
1122
+ }
978
1123
  .grid-rows-\[auto_auto\] {
979
1124
  grid-template-rows: auto auto;
980
1125
  }
@@ -993,6 +1138,9 @@
993
1138
  .flex-wrap {
994
1139
  flex-wrap: wrap;
995
1140
  }
1141
+ .content-start {
1142
+ align-content: flex-start;
1143
+ }
996
1144
  .items-center {
997
1145
  align-items: center;
998
1146
  }
@@ -1079,6 +1227,12 @@
1079
1227
  .gap-y-0\.5 {
1080
1228
  row-gap: calc(var(--spacing) * 0.5);
1081
1229
  }
1230
+ .gap-y-2 {
1231
+ row-gap: calc(var(--spacing) * 2);
1232
+ }
1233
+ .self-center {
1234
+ align-self: center;
1235
+ }
1082
1236
  .self-end {
1083
1237
  align-self: flex-end;
1084
1238
  }
@@ -1099,21 +1253,39 @@
1099
1253
  .overflow-hidden {
1100
1254
  overflow: hidden;
1101
1255
  }
1256
+ .overflow-visible {
1257
+ overflow: visible;
1258
+ }
1259
+ .overflow-x-auto {
1260
+ overflow-x: auto;
1261
+ }
1102
1262
  .overflow-x-hidden {
1103
1263
  overflow-x: hidden;
1104
1264
  }
1105
1265
  .overflow-y-auto {
1106
1266
  overflow-y: auto;
1107
1267
  }
1268
+ .overflow-y-scroll {
1269
+ overflow-y: scroll;
1270
+ }
1271
+ .scroll-smooth {
1272
+ scroll-behavior: smooth;
1273
+ }
1108
1274
  .rounded {
1109
1275
  border-radius: 0.25rem;
1110
1276
  }
1277
+ .rounded-3xl {
1278
+ border-radius: var(--radius-3xl);
1279
+ }
1111
1280
  .rounded-\[2px\] {
1112
1281
  border-radius: 2px;
1113
1282
  }
1114
1283
  .rounded-\[4px\] {
1115
1284
  border-radius: 4px;
1116
1285
  }
1286
+ .rounded-\[14px\] {
1287
+ border-radius: 14px;
1288
+ }
1117
1289
  .rounded-\[inherit\] {
1118
1290
  border-radius: inherit;
1119
1291
  }
@@ -1146,6 +1318,14 @@
1146
1318
  border-start-end-radius: 0;
1147
1319
  border-end-end-radius: 0;
1148
1320
  }
1321
+ .rounded-t-3xl {
1322
+ border-top-left-radius: var(--radius-3xl);
1323
+ border-top-right-radius: var(--radius-3xl);
1324
+ }
1325
+ .rounded-t-lg {
1326
+ border-top-left-radius: var(--radius);
1327
+ border-top-right-radius: var(--radius);
1328
+ }
1149
1329
  .rounded-l-md {
1150
1330
  border-top-left-radius: calc(var(--radius) - 2px);
1151
1331
  border-bottom-left-radius: calc(var(--radius) - 2px);
@@ -1217,6 +1397,10 @@
1217
1397
  border-left-style: var(--tw-border-style);
1218
1398
  border-left-width: 1px;
1219
1399
  }
1400
+ .border-l-2 {
1401
+ border-left-style: var(--tw-border-style);
1402
+ border-left-width: 2px;
1403
+ }
1220
1404
  .border-l-4 {
1221
1405
  border-left-style: var(--tw-border-style);
1222
1406
  border-left-width: 4px;
@@ -1251,6 +1435,15 @@
1251
1435
  .border-border {
1252
1436
  border-color: var(--border);
1253
1437
  }
1438
+ .border-destructive {
1439
+ border-color: var(--destructive);
1440
+ }
1441
+ .border-foreground\/20 {
1442
+ border-color: var(--foreground);
1443
+ @supports (color: color-mix(in lab, red, red)) {
1444
+ border-color: color-mix(in oklab, var(--foreground) 20%, transparent);
1445
+ }
1446
+ }
1254
1447
  .border-gray-300 {
1255
1448
  border-color: var(--color-gray-300);
1256
1449
  }
@@ -1260,6 +1453,18 @@
1260
1453
  .border-input {
1261
1454
  border-color: var(--input);
1262
1455
  }
1456
+ .border-muted-foreground\/30 {
1457
+ border-color: var(--muted-foreground);
1458
+ @supports (color: color-mix(in lab, red, red)) {
1459
+ border-color: color-mix(in oklab, var(--muted-foreground) 30%, transparent);
1460
+ }
1461
+ }
1462
+ .border-muted-foreground\/60 {
1463
+ border-color: var(--muted-foreground);
1464
+ @supports (color: color-mix(in lab, red, red)) {
1465
+ border-color: color-mix(in oklab, var(--muted-foreground) 60%, transparent);
1466
+ }
1467
+ }
1263
1468
  .border-neutral-600 {
1264
1469
  border-color: var(--color-neutral-600);
1265
1470
  }
@@ -1362,6 +1567,12 @@
1362
1567
  .bg-destructive {
1363
1568
  background-color: var(--destructive);
1364
1569
  }
1570
+ .bg-destructive\/10 {
1571
+ background-color: var(--destructive);
1572
+ @supports (color: color-mix(in lab, red, red)) {
1573
+ background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
1574
+ }
1575
+ }
1365
1576
  .bg-foreground {
1366
1577
  background-color: var(--foreground);
1367
1578
  }
@@ -1374,6 +1585,18 @@
1374
1585
  .bg-muted {
1375
1586
  background-color: var(--muted);
1376
1587
  }
1588
+ .bg-muted-foreground\/15 {
1589
+ background-color: var(--muted-foreground);
1590
+ @supports (color: color-mix(in lab, red, red)) {
1591
+ background-color: color-mix(in oklab, var(--muted-foreground) 15%, transparent);
1592
+ }
1593
+ }
1594
+ .bg-muted\/30 {
1595
+ background-color: var(--muted);
1596
+ @supports (color: color-mix(in lab, red, red)) {
1597
+ background-color: color-mix(in oklab, var(--muted) 30%, transparent);
1598
+ }
1599
+ }
1377
1600
  .bg-muted\/50 {
1378
1601
  background-color: var(--muted);
1379
1602
  @supports (color: color-mix(in lab, red, red)) {
@@ -1422,6 +1645,18 @@
1422
1645
  .fill-primary {
1423
1646
  fill: var(--primary);
1424
1647
  }
1648
+ .fill-white {
1649
+ fill: var(--color-white);
1650
+ }
1651
+ .stroke-\[1\.5px\] {
1652
+ stroke-width: 1.5px;
1653
+ }
1654
+ .object-contain {
1655
+ object-fit: contain;
1656
+ }
1657
+ .object-cover {
1658
+ object-fit: cover;
1659
+ }
1425
1660
  .p-0 {
1426
1661
  padding: calc(var(--spacing) * 0);
1427
1662
  }
@@ -1473,6 +1708,9 @@
1473
1708
  .px-3 {
1474
1709
  padding-inline: calc(var(--spacing) * 3);
1475
1710
  }
1711
+ .px-3\.5 {
1712
+ padding-inline: calc(var(--spacing) * 3.5);
1713
+ }
1476
1714
  .px-4 {
1477
1715
  padding-inline: calc(var(--spacing) * 4);
1478
1716
  }
@@ -1482,6 +1720,9 @@
1482
1720
  .px-6 {
1483
1721
  padding-inline: calc(var(--spacing) * 6);
1484
1722
  }
1723
+ .px-8 {
1724
+ padding-inline: calc(var(--spacing) * 8);
1725
+ }
1485
1726
  .px-16 {
1486
1727
  padding-inline: calc(var(--spacing) * 16);
1487
1728
  }
@@ -1497,6 +1738,9 @@
1497
1738
  .py-2 {
1498
1739
  padding-block: calc(var(--spacing) * 2);
1499
1740
  }
1741
+ .py-2\.5 {
1742
+ padding-block: calc(var(--spacing) * 2.5);
1743
+ }
1500
1744
  .py-3 {
1501
1745
  padding-block: calc(var(--spacing) * 3);
1502
1746
  }
@@ -1512,9 +1756,18 @@
1512
1756
  .pt-0 {
1513
1757
  padding-top: calc(var(--spacing) * 0);
1514
1758
  }
1759
+ .pt-0\.5 {
1760
+ padding-top: calc(var(--spacing) * 0.5);
1761
+ }
1515
1762
  .pt-1 {
1516
1763
  padding-top: calc(var(--spacing) * 1);
1517
1764
  }
1765
+ .pt-1\.5 {
1766
+ padding-top: calc(var(--spacing) * 1.5);
1767
+ }
1768
+ .pt-2 {
1769
+ padding-top: calc(var(--spacing) * 2);
1770
+ }
1518
1771
  .pt-4 {
1519
1772
  padding-top: calc(var(--spacing) * 4);
1520
1773
  }
@@ -1539,6 +1792,9 @@
1539
1792
  .pb-2 {
1540
1793
  padding-bottom: calc(var(--spacing) * 2);
1541
1794
  }
1795
+ .pb-3 {
1796
+ padding-bottom: calc(var(--spacing) * 3);
1797
+ }
1542
1798
  .pb-4 {
1543
1799
  padding-bottom: calc(var(--spacing) * 4);
1544
1800
  }
@@ -1548,6 +1804,9 @@
1548
1804
  .pl-2 {
1549
1805
  padding-left: calc(var(--spacing) * 2);
1550
1806
  }
1807
+ .pl-6 {
1808
+ padding-left: calc(var(--spacing) * 6);
1809
+ }
1551
1810
  .pl-8 {
1552
1811
  padding-left: calc(var(--spacing) * 8);
1553
1812
  }
@@ -1563,6 +1822,9 @@
1563
1822
  .text-right {
1564
1823
  text-align: right;
1565
1824
  }
1825
+ .text-start {
1826
+ text-align: start;
1827
+ }
1566
1828
  .align-middle {
1567
1829
  vertical-align: middle;
1568
1830
  }
@@ -1580,6 +1842,10 @@
1580
1842
  font-size: var(--text-3xl);
1581
1843
  line-height: var(--tw-leading, var(--text-3xl--line-height));
1582
1844
  }
1845
+ .text-4xl {
1846
+ font-size: var(--text-4xl);
1847
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
1848
+ }
1583
1849
  .text-base {
1584
1850
  font-size: var(--text-base);
1585
1851
  line-height: var(--tw-leading, var(--text-base--line-height));
@@ -1592,6 +1858,10 @@
1592
1858
  font-size: var(--text-sm);
1593
1859
  line-height: var(--tw-leading, var(--text-sm--line-height));
1594
1860
  }
1861
+ .text-xl {
1862
+ font-size: var(--text-xl);
1863
+ line-height: var(--tw-leading, var(--text-xl--line-height));
1864
+ }
1595
1865
  .text-xs {
1596
1866
  font-size: var(--text-xs);
1597
1867
  line-height: var(--tw-leading, var(--text-xs--line-height));
@@ -1599,6 +1869,10 @@
1599
1869
  .text-\[0\.8rem\] {
1600
1870
  font-size: 0.8rem;
1601
1871
  }
1872
+ .leading-7 {
1873
+ --tw-leading: calc(var(--spacing) * 7);
1874
+ line-height: calc(var(--spacing) * 7);
1875
+ }
1602
1876
  .leading-8 {
1603
1877
  --tw-leading: calc(var(--spacing) * 8);
1604
1878
  line-height: calc(var(--spacing) * 8);
@@ -1615,6 +1889,10 @@
1615
1889
  --tw-font-weight: var(--font-weight-bold);
1616
1890
  font-weight: var(--font-weight-bold);
1617
1891
  }
1892
+ .font-extrabold {
1893
+ --tw-font-weight: var(--font-weight-extrabold);
1894
+ font-weight: var(--font-weight-extrabold);
1895
+ }
1618
1896
  .font-medium {
1619
1897
  --tw-font-weight: var(--font-weight-medium);
1620
1898
  font-weight: var(--font-weight-medium);
@@ -1647,6 +1925,9 @@
1647
1925
  .whitespace-nowrap {
1648
1926
  white-space: nowrap;
1649
1927
  }
1928
+ .whitespace-pre-wrap {
1929
+ white-space: pre-wrap;
1930
+ }
1650
1931
  .text-\[\#6A77D9\] {
1651
1932
  color: #6A77D9;
1652
1933
  }
@@ -1716,6 +1997,12 @@
1716
1997
  color: color-mix(in oklab, var(--muted-foreground) 60%, transparent);
1717
1998
  }
1718
1999
  }
2000
+ .text-muted-foreground\/65 {
2001
+ color: var(--muted-foreground);
2002
+ @supports (color: color-mix(in lab, red, red)) {
2003
+ color: color-mix(in oklab, var(--muted-foreground) 65%, transparent);
2004
+ }
2005
+ }
1719
2006
  .text-neutral-400 {
1720
2007
  color: var(--color-neutral-400);
1721
2008
  }
@@ -1755,10 +2042,19 @@
1755
2042
  .text-zinc-950 {
1756
2043
  color: var(--color-zinc-950);
1757
2044
  }
2045
+ .lowercase {
2046
+ text-transform: lowercase;
2047
+ }
2048
+ .italic {
2049
+ font-style: italic;
2050
+ }
1758
2051
  .tabular-nums {
1759
2052
  --tw-numeric-spacing: tabular-nums;
1760
2053
  font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
1761
2054
  }
2055
+ .line-through {
2056
+ text-decoration-line: line-through;
2057
+ }
1762
2058
  .underline {
1763
2059
  text-decoration-line: underline;
1764
2060
  }
@@ -1954,6 +2250,10 @@
1954
2250
  --tw-ease: linear;
1955
2251
  transition-timing-function: linear;
1956
2252
  }
2253
+ .ease-out {
2254
+ --tw-ease: var(--ease-out);
2255
+ transition-timing-function: var(--ease-out);
2256
+ }
1957
2257
  .fade-in-0 {
1958
2258
  --tw-enter-opacity: calc(0/100);
1959
2259
  --tw-enter-opacity: 0;
@@ -1977,6 +2277,15 @@
1977
2277
  .\[--cell-size\:2rem\] {
1978
2278
  --cell-size: 2rem;
1979
2279
  }
2280
+ .fade-in {
2281
+ --tw-enter-opacity: 0;
2282
+ }
2283
+ .running {
2284
+ animation-play-state: running;
2285
+ }
2286
+ .slide-in-from-bottom-1 {
2287
+ --tw-enter-translate-y: calc(1*var(--spacing));
2288
+ }
1980
2289
  .group-focus-within\/menu-item\:opacity-100 {
1981
2290
  &:is(:where(.group\/menu-item):focus-within *) {
1982
2291
  opacity: 100%;
@@ -2441,30 +2750,67 @@
2441
2750
  }
2442
2751
  }
2443
2752
  }
2753
+ .first\:mt-0 {
2754
+ &:first-child {
2755
+ margin-top: calc(var(--spacing) * 0);
2756
+ }
2757
+ }
2444
2758
  .first\:rounded-l-md {
2445
2759
  &:first-child {
2446
2760
  border-top-left-radius: calc(var(--radius) - 2px);
2447
2761
  border-bottom-left-radius: calc(var(--radius) - 2px);
2448
2762
  }
2449
2763
  }
2764
+ .first\:rounded-tl-lg {
2765
+ &:first-child {
2766
+ border-top-left-radius: var(--radius);
2767
+ }
2768
+ }
2769
+ .first\:border-t {
2770
+ &:first-child {
2771
+ border-top-style: var(--tw-border-style);
2772
+ border-top-width: 1px;
2773
+ }
2774
+ }
2450
2775
  .first\:border-l {
2451
2776
  &:first-child {
2452
2777
  border-left-style: var(--tw-border-style);
2453
2778
  border-left-width: 1px;
2454
2779
  }
2455
2780
  }
2781
+ .last\:mb-0 {
2782
+ &:last-child {
2783
+ margin-bottom: calc(var(--spacing) * 0);
2784
+ }
2785
+ }
2456
2786
  .last\:rounded-r-md {
2457
2787
  &:last-child {
2458
2788
  border-top-right-radius: calc(var(--radius) - 2px);
2459
2789
  border-bottom-right-radius: calc(var(--radius) - 2px);
2460
2790
  }
2461
2791
  }
2792
+ .last\:rounded-tr-lg {
2793
+ &:last-child {
2794
+ border-top-right-radius: var(--radius);
2795
+ }
2796
+ }
2797
+ .last\:border-r {
2798
+ &:last-child {
2799
+ border-right-style: var(--tw-border-style);
2800
+ border-right-width: 1px;
2801
+ }
2802
+ }
2462
2803
  .last\:border-b-0 {
2463
2804
  &:last-child {
2464
2805
  border-bottom-style: var(--tw-border-style);
2465
2806
  border-bottom-width: 0px;
2466
2807
  }
2467
2808
  }
2809
+ .empty\:hidden {
2810
+ &:empty {
2811
+ display: none;
2812
+ }
2813
+ }
2468
2814
  .hover\:border-primary {
2469
2815
  &:hover {
2470
2816
  @media (hover: hover) {
@@ -2527,6 +2873,16 @@
2527
2873
  }
2528
2874
  }
2529
2875
  }
2876
+ .hover\:bg-accent\/50 {
2877
+ &:hover {
2878
+ @media (hover: hover) {
2879
+ background-color: var(--accent);
2880
+ @supports (color: color-mix(in lab, red, red)) {
2881
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
2882
+ }
2883
+ }
2884
+ }
2885
+ }
2530
2886
  .hover\:bg-black\/\[\.04\] {
2531
2887
  &:hover {
2532
2888
  @media (hover: hover) {
@@ -2554,6 +2910,16 @@
2554
2910
  }
2555
2911
  }
2556
2912
  }
2913
+ .hover\:bg-muted-foreground\/15 {
2914
+ &:hover {
2915
+ @media (hover: hover) {
2916
+ background-color: var(--muted-foreground);
2917
+ @supports (color: color-mix(in lab, red, red)) {
2918
+ background-color: color-mix(in oklab, var(--muted-foreground) 15%, transparent);
2919
+ }
2920
+ }
2921
+ }
2922
+ }
2557
2923
  .hover\:bg-muted\/50 {
2558
2924
  &:hover {
2559
2925
  @media (hover: hover) {
@@ -2564,6 +2930,16 @@
2564
2930
  }
2565
2931
  }
2566
2932
  }
2933
+ .hover\:bg-primary\/75 {
2934
+ &:hover {
2935
+ @media (hover: hover) {
2936
+ background-color: var(--primary);
2937
+ @supports (color: color-mix(in lab, red, red)) {
2938
+ background-color: color-mix(in oklab, var(--primary) 75%, transparent);
2939
+ }
2940
+ }
2941
+ }
2942
+ }
2567
2943
  .hover\:bg-sidebar-accent {
2568
2944
  &:hover {
2569
2945
  @media (hover: hover) {
@@ -2585,6 +2961,13 @@
2585
2961
  }
2586
2962
  }
2587
2963
  }
2964
+ .hover\:bg-white\! {
2965
+ &:hover {
2966
+ @media (hover: hover) {
2967
+ background-color: var(--color-white) !important;
2968
+ }
2969
+ }
2970
+ }
2588
2971
  .hover\:text-accent-foreground {
2589
2972
  &:hover {
2590
2973
  @media (hover: hover) {
@@ -2641,6 +3024,13 @@
2641
3024
  }
2642
3025
  }
2643
3026
  }
3027
+ .hover\:opacity-75 {
3028
+ &:hover {
3029
+ @media (hover: hover) {
3030
+ opacity: 75%;
3031
+ }
3032
+ }
3033
+ }
2644
3034
  .hover\:opacity-100 {
2645
3035
  &:hover {
2646
3036
  @media (hover: hover) {
@@ -2773,6 +3163,12 @@
2773
3163
  border-color: var(--ring);
2774
3164
  }
2775
3165
  }
3166
+ .focus-visible\:ring-0 {
3167
+ &:focus-visible {
3168
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
3169
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3170
+ }
3171
+ }
2776
3172
  .focus-visible\:ring-1 {
2777
3173
  &:focus-visible {
2778
3174
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
@@ -2865,6 +3261,11 @@
2865
3261
  pointer-events: none;
2866
3262
  }
2867
3263
  }
3264
+ .disabled\:invisible {
3265
+ &:disabled {
3266
+ visibility: hidden;
3267
+ }
3268
+ }
2868
3269
  .disabled\:cursor-not-allowed {
2869
3270
  &:disabled {
2870
3271
  cursor: not-allowed;
@@ -2919,6 +3320,25 @@
2919
3320
  opacity: 50%;
2920
3321
  }
2921
3322
  }
3323
+ .has-\[textarea\:focus-visible\]\:border-ring {
3324
+ &:has(*:is(textarea:focus-visible)) {
3325
+ border-color: var(--ring);
3326
+ }
3327
+ }
3328
+ .has-\[textarea\:focus-visible\]\:ring-\[3px\] {
3329
+ &:has(*:is(textarea:focus-visible)) {
3330
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
3331
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3332
+ }
3333
+ }
3334
+ .has-\[textarea\:focus-visible\]\:ring-ring\/50 {
3335
+ &:has(*:is(textarea:focus-visible)) {
3336
+ --tw-ring-color: var(--ring);
3337
+ @supports (color: color-mix(in lab, red, red)) {
3338
+ --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
3339
+ }
3340
+ }
3341
+ }
2922
3342
  .has-\[\>svg\]\:grid-cols-\[calc\(var\(--spacing\)\*4\)_1fr\] {
2923
3343
  &:has(>svg) {
2924
3344
  grid-template-columns: calc(var(--spacing) * 4) 1fr;
@@ -2972,6 +3392,38 @@
2972
3392
  color: var(--muted-foreground);
2973
3393
  }
2974
3394
  }
3395
+ .data-floating\:absolute {
3396
+ &[data-floating] {
3397
+ position: absolute;
3398
+ }
3399
+ }
3400
+ .data-floating\:rounded-md {
3401
+ &[data-floating] {
3402
+ border-radius: calc(var(--radius) - 2px);
3403
+ }
3404
+ }
3405
+ .data-floating\:border {
3406
+ &[data-floating] {
3407
+ border-style: var(--tw-border-style);
3408
+ border-width: 1px;
3409
+ }
3410
+ }
3411
+ .data-floating\:bg-background {
3412
+ &[data-floating] {
3413
+ background-color: var(--background);
3414
+ }
3415
+ }
3416
+ .data-floating\:p-1 {
3417
+ &[data-floating] {
3418
+ padding: calc(var(--spacing) * 1);
3419
+ }
3420
+ }
3421
+ .data-floating\:shadow-sm {
3422
+ &[data-floating] {
3423
+ --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));
3424
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3425
+ }
3426
+ }
2975
3427
  .data-\[active\=true\]\:bg-\[var\(--chart-1\)\] {
2976
3428
  &[data-active="true"] {
2977
3429
  background-color: var(--chart-1);
@@ -3018,6 +3470,25 @@
3018
3470
  opacity: 50%;
3019
3471
  }
3020
3472
  }
3473
+ .data-\[dragging\=true\]\:border-dashed {
3474
+ &[data-dragging="true"] {
3475
+ --tw-border-style: dashed;
3476
+ border-style: dashed;
3477
+ }
3478
+ }
3479
+ .data-\[dragging\=true\]\:border-ring {
3480
+ &[data-dragging="true"] {
3481
+ border-color: var(--ring);
3482
+ }
3483
+ }
3484
+ .data-\[dragging\=true\]\:bg-accent\/50 {
3485
+ &[data-dragging="true"] {
3486
+ background-color: var(--accent);
3487
+ @supports (color: color-mix(in lab, red, red)) {
3488
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
3489
+ }
3490
+ }
3491
+ }
3021
3492
  .data-\[error\=true\]\:text-destructive {
3022
3493
  &[data-error="true"] {
3023
3494
  color: var(--destructive);
@@ -3817,6 +4288,11 @@
3817
4288
  width: auto;
3818
4289
  }
3819
4290
  }
4291
+ .sm\:max-w-3xl {
4292
+ @media (width >= 40rem) {
4293
+ max-width: var(--container-3xl);
4294
+ }
4295
+ }
3820
4296
  .sm\:max-w-lg {
3821
4297
  @media (width >= 40rem) {
3822
4298
  max-width: var(--container-lg);
@@ -3926,6 +4402,11 @@
3926
4402
  gap: calc(var(--spacing) * 1.5);
3927
4403
  }
3928
4404
  }
4405
+ .md\:pb-6 {
4406
+ @media (width >= 48rem) {
4407
+ padding-bottom: calc(var(--spacing) * 6);
4408
+ }
4409
+ }
3929
4410
  .md\:text-left {
3930
4411
  @media (width >= 48rem) {
3931
4412
  text-align: left;
@@ -4028,6 +4509,32 @@
4028
4509
  padding-inline: calc(var(--spacing) * 4);
4029
4510
  }
4030
4511
  }
4512
+ .\@md\:grid-cols-2 {
4513
+ @container (width >= 28rem) {
4514
+ grid-template-columns: repeat(2, minmax(0, 1fr));
4515
+ }
4516
+ }
4517
+ .\@md\:flex-col {
4518
+ @container (width >= 28rem) {
4519
+ flex-direction: column;
4520
+ }
4521
+ }
4522
+ .dark\:border-muted-foreground\/15 {
4523
+ &:is(.dark *) {
4524
+ border-color: var(--muted-foreground);
4525
+ @supports (color: color-mix(in lab, red, red)) {
4526
+ border-color: color-mix(in oklab, var(--muted-foreground) 15%, transparent);
4527
+ }
4528
+ }
4529
+ }
4530
+ .dark\:border-muted-foreground\/90 {
4531
+ &:is(.dark *) {
4532
+ border-color: var(--muted-foreground);
4533
+ @supports (color: color-mix(in lab, red, red)) {
4534
+ border-color: color-mix(in oklab, var(--muted-foreground) 90%, transparent);
4535
+ }
4536
+ }
4537
+ }
4031
4538
  .dark\:border-white {
4032
4539
  &:is(.dark *) {
4033
4540
  border-color: var(--color-white);
@@ -4086,6 +4593,14 @@
4086
4593
  background-color: var(--destructive);
4087
4594
  }
4088
4595
  }
4596
+ .dark\:bg-destructive\/5 {
4597
+ &:is(.dark *) {
4598
+ background-color: var(--destructive);
4599
+ @supports (color: color-mix(in lab, red, red)) {
4600
+ background-color: color-mix(in oklab, var(--destructive) 5%, transparent);
4601
+ }
4602
+ }
4603
+ }
4089
4604
  .dark\:bg-destructive\/60 {
4090
4605
  &:is(.dark *) {
4091
4606
  background-color: var(--destructive);
@@ -4107,6 +4622,14 @@
4107
4622
  }
4108
4623
  }
4109
4624
  }
4625
+ .dark\:bg-muted-foreground\/20 {
4626
+ &:is(.dark *) {
4627
+ background-color: var(--muted-foreground);
4628
+ @supports (color: color-mix(in lab, red, red)) {
4629
+ background-color: color-mix(in oklab, var(--muted-foreground) 20%, transparent);
4630
+ }
4631
+ }
4632
+ }
4110
4633
  .dark\:bg-neutral-800 {
4111
4634
  &:is(.dark *) {
4112
4635
  background-color: var(--color-neutral-800);
@@ -4122,6 +4645,16 @@
4122
4645
  background-color: var(--color-white);
4123
4646
  }
4124
4647
  }
4648
+ .dark\:fill-black {
4649
+ &:is(.dark *) {
4650
+ fill: var(--color-black);
4651
+ }
4652
+ }
4653
+ .dark\:stroke-\[2\.5px\] {
4654
+ &:is(.dark *) {
4655
+ stroke-width: 2.5px;
4656
+ }
4657
+ }
4125
4658
  .dark\:text-accent-foreground {
4126
4659
  &:is(.dark *) {
4127
4660
  color: var(--accent-foreground);
@@ -4147,6 +4680,11 @@
4147
4680
  color: var(--muted-foreground);
4148
4681
  }
4149
4682
  }
4683
+ .dark\:text-red-200 {
4684
+ &:is(.dark *) {
4685
+ color: var(--color-red-200);
4686
+ }
4687
+ }
4150
4688
  .dark\:text-secondary-foreground {
4151
4689
  &:is(.dark *) {
4152
4690
  color: var(--secondary-foreground);
@@ -4186,6 +4724,15 @@
4186
4724
  }
4187
4725
  }
4188
4726
  }
4727
+ .dark\:hover\:bg-accent {
4728
+ &:is(.dark *) {
4729
+ &:hover {
4730
+ @media (hover: hover) {
4731
+ background-color: var(--accent);
4732
+ }
4733
+ }
4734
+ }
4735
+ }
4189
4736
  .dark\:hover\:bg-accent\/50 {
4190
4737
  &:is(.dark *) {
4191
4738
  &:hover {
@@ -4198,6 +4745,18 @@
4198
4745
  }
4199
4746
  }
4200
4747
  }
4748
+ .dark\:hover\:bg-accent\/60 {
4749
+ &:is(.dark *) {
4750
+ &:hover {
4751
+ @media (hover: hover) {
4752
+ background-color: var(--accent);
4753
+ @supports (color: color-mix(in lab, red, red)) {
4754
+ background-color: color-mix(in oklab, var(--accent) 60%, transparent);
4755
+ }
4756
+ }
4757
+ }
4758
+ }
4759
+ }
4201
4760
  .dark\:hover\:bg-input\/50 {
4202
4761
  &:is(.dark *) {
4203
4762
  &:hover {
@@ -4210,6 +4769,18 @@
4210
4769
  }
4211
4770
  }
4212
4771
  }
4772
+ .dark\:hover\:bg-muted-foreground\/30 {
4773
+ &:is(.dark *) {
4774
+ &:hover {
4775
+ @media (hover: hover) {
4776
+ background-color: var(--muted-foreground);
4777
+ @supports (color: color-mix(in lab, red, red)) {
4778
+ background-color: color-mix(in oklab, var(--muted-foreground) 30%, transparent);
4779
+ }
4780
+ }
4781
+ }
4782
+ }
4783
+ }
4213
4784
  .dark\:focus\:bg-\[var\(--card\)\] {
4214
4785
  &:is(.dark *) {
4215
4786
  &:focus {
@@ -4461,6 +5032,25 @@
4461
5032
  flex-shrink: 0;
4462
5033
  }
4463
5034
  }
5035
+ .\[\&_svg\]\:text-background {
5036
+ & svg {
5037
+ color: var(--background);
5038
+ }
5039
+ }
5040
+ .\[\&_svg\]\:text-black {
5041
+ & svg {
5042
+ color: var(--color-black);
5043
+ }
5044
+ }
5045
+ .hover\:\[\&_svg\]\:text-destructive {
5046
+ &:hover {
5047
+ @media (hover: hover) {
5048
+ & svg {
5049
+ color: var(--destructive);
5050
+ }
5051
+ }
5052
+ }
5053
+ }
4464
5054
  .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 {
4465
5055
  & svg:not([class*='size-']) {
4466
5056
  width: calc(var(--spacing) * 4);
@@ -4523,6 +5113,16 @@
4523
5113
  }
4524
5114
  }
4525
5115
  }
5116
+ .\[\[align\=center\]\]\:text-center {
5117
+ &:is([align=center]) {
5118
+ text-align: center;
5119
+ }
5120
+ }
5121
+ .\[\[align\=right\]\]\:text-right {
5122
+ &:is([align=right]) {
5123
+ text-align: right;
5124
+ }
5125
+ }
4526
5126
  .\*\:\[span\]\:last\:flex {
4527
5127
  :is(& > *) {
4528
5128
  &:is(span) {
@@ -4559,23 +5159,114 @@
4559
5159
  }
4560
5160
  }
4561
5161
  }
5162
+ .\[\&\:last-child\>td\:first-child\]\:rounded-bl-lg {
5163
+ &:last-child>td:first-child {
5164
+ border-bottom-left-radius: var(--radius);
5165
+ }
5166
+ }
5167
+ .\[\&\:last-child\>td\:last-child\]\:rounded-br-lg {
5168
+ &:last-child>td:last-child {
5169
+ border-bottom-right-radius: var(--radius);
5170
+ }
5171
+ }
4562
5172
  .\[\&\:last-child\[data-selected\=true\]_button\]\:rounded-r-md {
4563
5173
  &:last-child[data-selected=true] button {
4564
5174
  border-top-right-radius: calc(var(--radius) - 2px);
4565
5175
  border-bottom-right-radius: calc(var(--radius) - 2px);
4566
5176
  }
4567
5177
  }
5178
+ .\[\&\:nth-child\(n\+3\)\]\:hidden {
5179
+ &:nth-child(n+3) {
5180
+ display: none;
5181
+ }
5182
+ }
5183
+ .\@md\:\[\&\:nth-child\(n\+3\)\]\:block {
5184
+ @container (width >= 28rem) {
5185
+ &:nth-child(n+3) {
5186
+ display: block;
5187
+ }
5188
+ }
5189
+ }
5190
+ .\[\&\:where\(\>\*\)\]\:col-start-2 {
5191
+ &:where(>*) {
5192
+ grid-column-start: 2;
5193
+ }
5194
+ }
5195
+ .only\:\[\&\>\#attachment-tile\]\:size-24 {
5196
+ &:only-child {
5197
+ &>#attachment-tile {
5198
+ width: calc(var(--spacing) * 24);
5199
+ height: calc(var(--spacing) * 24);
5200
+ }
5201
+ }
5202
+ }
4568
5203
  .\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\] {
4569
5204
  &>[role=checkbox] {
4570
5205
  --tw-translate-y: 2px;
4571
5206
  translate: var(--tw-translate-x) var(--tw-translate-y);
4572
5207
  }
4573
5208
  }
5209
+ .\[\&\>a\]\:text-xs {
5210
+ &>a {
5211
+ font-size: var(--text-xs);
5212
+ line-height: var(--tw-leading, var(--text-xs--line-height));
5213
+ }
5214
+ }
5215
+ .\[\&\>a\]\:no-underline {
5216
+ &>a {
5217
+ text-decoration-line: none;
5218
+ }
5219
+ }
4574
5220
  .\[\&\>button\]\:hidden {
4575
5221
  &>button {
4576
5222
  display: none;
4577
5223
  }
4578
5224
  }
5225
+ .\[\&\>button\]\:rounded-full {
5226
+ &>button {
5227
+ border-radius: calc(infinity * 1px);
5228
+ }
5229
+ }
5230
+ .\[\&\>button\]\:bg-foreground\/60 {
5231
+ &>button {
5232
+ background-color: var(--foreground);
5233
+ @supports (color: color-mix(in lab, red, red)) {
5234
+ background-color: color-mix(in oklab, var(--foreground) 60%, transparent);
5235
+ }
5236
+ }
5237
+ }
5238
+ .\[\&\>button\]\:p-1 {
5239
+ &>button {
5240
+ padding: calc(var(--spacing) * 1);
5241
+ }
5242
+ }
5243
+ .\[\&\>button\]\:opacity-100 {
5244
+ &>button {
5245
+ opacity: 100%;
5246
+ }
5247
+ }
5248
+ .\[\&\>button\]\:ring-0\! {
5249
+ &>button {
5250
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor) !important;
5251
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow) !important;
5252
+ }
5253
+ }
5254
+ .\[\&\>button\]\:hover\:\[\&_svg\]\:text-destructive {
5255
+ &>button {
5256
+ &:hover {
5257
+ @media (hover: hover) {
5258
+ & svg {
5259
+ color: var(--destructive);
5260
+ }
5261
+ }
5262
+ }
5263
+ }
5264
+ }
5265
+ .\[\&\>li\]\:mt-2 {
5266
+ &>li {
5267
+ margin-top: calc(var(--spacing) * 2);
5268
+ }
5269
+ }
4579
5270
  .\[\&\>span\]\:text-xs {
4580
5271
  &>span {
4581
5272
  font-size: var(--text-xs);
@@ -4980,7 +5671,10 @@
4980
5671
  .custom-buttons {
4981
5672
  font-size: 14px;
4982
5673
  }
4983
- .rbc-date-cell.rbc-now, .rbc-time-slot.rbc-now, .rbc-show-more, .rbc-header {
5674
+ .rbc-date-cell.rbc-now,
5675
+ .rbc-time-slot.rbc-now,
5676
+ .rbc-show-more,
5677
+ .rbc-header {
4984
5678
  font-weight: normal !important;
4985
5679
  }
4986
5680
  .rbc-btn {
@@ -5025,11 +5719,14 @@
5025
5719
  .rbc-h-full {
5026
5720
  height: 100%;
5027
5721
  }
5028
- .rbc-calendar *, .rbc-calendar *:before, .rbc-calendar *:after {
5722
+ .rbc-calendar *,
5723
+ .rbc-calendar *:before,
5724
+ .rbc-calendar *:after {
5029
5725
  -webkit-box-sizing: inherit;
5030
5726
  box-sizing: inherit;
5031
5727
  }
5032
- .rbc-abs-full, .rbc-row-bg {
5728
+ .rbc-abs-full,
5729
+ .rbc-row-bg {
5033
5730
  overflow: hidden;
5034
5731
  position: absolute;
5035
5732
  top: 0;
@@ -5037,7 +5734,10 @@
5037
5734
  right: 0;
5038
5735
  bottom: 0;
5039
5736
  }
5040
- .rbc-ellipsis, .rbc-show-more, .rbc-row-segment .rbc-event-content, .rbc-event-label {
5737
+ .rbc-ellipsis,
5738
+ .rbc-show-more,
5739
+ .rbc-row-segment .rbc-event-content,
5740
+ .rbc-event-label {
5041
5741
  display: block;
5042
5742
  overflow: hidden;
5043
5743
  text-overflow: ellipsis;
@@ -5075,7 +5775,9 @@
5075
5775
  border-left-width: 0;
5076
5776
  border-right: 1px solid hsl(var(--border));
5077
5777
  }
5078
- .rbc-header>a, .rbc-header>a:active, .rbc-header>a:visited {
5778
+ .rbc-header>a,
5779
+ .rbc-header>a:active,
5780
+ .rbc-header>a:visited {
5079
5781
  color: inherit;
5080
5782
  text-decoration: none;
5081
5783
  }
@@ -5158,14 +5860,18 @@
5158
5860
  line-height: normal;
5159
5861
  white-space: nowrap;
5160
5862
  }
5161
- .rbc-toolbar button:active, .rbc-toolbar button.rbc-active {
5863
+ .rbc-toolbar button:active,
5864
+ .rbc-toolbar button.rbc-active {
5162
5865
  background-image: none;
5163
5866
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
5164
5867
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
5165
5868
  background-color: #e6e6e6;
5166
5869
  border-color: #adadad;
5167
5870
  }
5168
- .rbc-toolbar button:active:hover, .rbc-toolbar button:active:focus, .rbc-toolbar button.rbc-active:hover, .rbc-toolbar button.rbc-active:focus {
5871
+ .rbc-toolbar button:active:hover,
5872
+ .rbc-toolbar button:active:focus,
5873
+ .rbc-toolbar button.rbc-active:hover,
5874
+ .rbc-toolbar button.rbc-active:focus {
5169
5875
  color: #373a3c;
5170
5876
  background-color: #d4d4d4;
5171
5877
  border-color: #8c8c8c;
@@ -5212,7 +5918,8 @@
5212
5918
  margin-left: 0;
5213
5919
  margin-right: -1px;
5214
5920
  }
5215
- .rbc-btn-group+.rbc-btn-group, .rbc-btn-group+button {
5921
+ .rbc-btn-group+.rbc-btn-group,
5922
+ .rbc-btn-group+button {
5216
5923
  margin-left: 10px;
5217
5924
  }
5218
5925
  @media (max-width: 767px) {
@@ -5223,7 +5930,8 @@
5223
5930
  flex-direction: column;
5224
5931
  }
5225
5932
  }
5226
- .rbc-event, .rbc-day-slot .rbc-background-event {
5933
+ .rbc-event,
5934
+ .rbc-day-slot .rbc-background-event {
5227
5935
  border: none;
5228
5936
  -webkit-box-sizing: border-box;
5229
5937
  box-sizing: border-box;
@@ -5238,14 +5946,18 @@
5238
5946
  width: 100%;
5239
5947
  text-align: left;
5240
5948
  }
5241
- .rbc-slot-selecting .rbc-event, .rbc-slot-selecting .rbc-day-slot .rbc-background-event, .rbc-day-slot .rbc-slot-selecting .rbc-background-event {
5949
+ .rbc-slot-selecting .rbc-event,
5950
+ .rbc-slot-selecting .rbc-day-slot .rbc-background-event,
5951
+ .rbc-day-slot .rbc-slot-selecting .rbc-background-event {
5242
5952
  cursor: inherit;
5243
5953
  pointer-events: none;
5244
5954
  }
5245
- .rbc-event.rbc-selected, .rbc-day-slot .rbc-selected.rbc-background-event {
5955
+ .rbc-event.rbc-selected,
5956
+ .rbc-day-slot .rbc-selected.rbc-background-event {
5246
5957
  background-color: #265985;
5247
5958
  }
5248
- .rbc-event:focus, .rbc-day-slot .rbc-background-event:focus {
5959
+ .rbc-event:focus,
5960
+ .rbc-day-slot .rbc-background-event:focus {
5249
5961
  outline: 5px auto #3b99fc;
5250
5962
  }
5251
5963
  .rbc-event-label {
@@ -5296,7 +6008,8 @@
5296
6008
  line-height: normal;
5297
6009
  color: hsl(var(--input));
5298
6010
  }
5299
- .rbc-show-more:hover, .rbc-show-more:focus {
6011
+ .rbc-show-more:hover,
6012
+ .rbc-show-more:focus {
5300
6013
  color: #265985;
5301
6014
  }
5302
6015
  .rbc-month-view {
@@ -5359,7 +6072,9 @@
5359
6072
  .rbc-date-cell.rbc-now {
5360
6073
  font-weight: bold;
5361
6074
  }
5362
- .rbc-date-cell>a, .rbc-date-cell>a:active, .rbc-date-cell>a:visited {
6075
+ .rbc-date-cell>a,
6076
+ .rbc-date-cell>a:active,
6077
+ .rbc-date-cell>a:visited {
5363
6078
  color: inherit;
5364
6079
  text-decoration: none;
5365
6080
  }
@@ -5461,7 +6176,8 @@
5461
6176
  .rbc-agenda-time-cell .rbc-continues-prior:before {
5462
6177
  content: "« ";
5463
6178
  }
5464
- .rbc-agenda-date-cell, .rbc-agenda-time-cell {
6179
+ .rbc-agenda-date-cell,
6180
+ .rbc-agenda-time-cell {
5465
6181
  white-space: nowrap;
5466
6182
  }
5467
6183
  .rbc-agenda-event-cell {
@@ -5493,7 +6209,8 @@
5493
6209
  -ms-flex-flow: column nowrap;
5494
6210
  flex-flow: column nowrap;
5495
6211
  }
5496
- .rbc-time-gutter, .rbc-header-gutter {
6212
+ .rbc-time-gutter,
6213
+ .rbc-header-gutter {
5497
6214
  -webkit-box-flex: 0;
5498
6215
  -ms-flex: none;
5499
6216
  flex: none;
@@ -5516,7 +6233,8 @@
5516
6233
  left: 10px;
5517
6234
  right: 0;
5518
6235
  }
5519
- .rbc-day-slot .rbc-event, .rbc-day-slot .rbc-background-event {
6236
+ .rbc-day-slot .rbc-event,
6237
+ .rbc-day-slot .rbc-background-event {
5520
6238
  border: 1px solid #265985;
5521
6239
  display: -webkit-box;
5522
6240
  display: -ms-flexbox;
@@ -5556,7 +6274,8 @@
5556
6274
  .rbc-day-slot .rbc-time-slot {
5557
6275
  border-top: 1px solid hsl(var(--border));
5558
6276
  }
5559
- .rbc-time-view-resources .rbc-time-gutter, .rbc-time-view-resources .rbc-time-header-gutter {
6277
+ .rbc-time-view-resources .rbc-time-gutter,
6278
+ .rbc-time-view-resources .rbc-time-header-gutter {
5560
6279
  position: sticky;
5561
6280
  left: 0;
5562
6281
  background-color: white;
@@ -5581,7 +6300,8 @@
5581
6300
  .rbc-time-view-resources .rbc-day-slot {
5582
6301
  min-width: 140px;
5583
6302
  }
5584
- .rbc-time-view-resources .rbc-header, .rbc-time-view-resources .rbc-day-bg {
6303
+ .rbc-time-view-resources .rbc-header,
6304
+ .rbc-time-view-resources .rbc-day-bg {
5585
6305
  width: 140px;
5586
6306
  -webkit-box-flex: 1;
5587
6307
  -ms-flex: 1 1 0px;
@@ -5775,6 +6495,16 @@
5775
6495
  border-radius: 50%;
5776
6496
  }
5777
6497
  }
6498
+ @property --tw-border-spacing-x {
6499
+ syntax: "<length>";
6500
+ inherits: false;
6501
+ initial-value: 0;
6502
+ }
6503
+ @property --tw-border-spacing-y {
6504
+ syntax: "<length>";
6505
+ inherits: false;
6506
+ initial-value: 0;
6507
+ }
5778
6508
  @property --tw-translate-x {
5779
6509
  syntax: "*";
5780
6510
  inherits: false;
@@ -6059,6 +6789,8 @@
6059
6789
  @layer properties {
6060
6790
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
6061
6791
  *, ::before, ::after, ::backdrop {
6792
+ --tw-border-spacing-x: 0;
6793
+ --tw-border-spacing-y: 0;
6062
6794
  --tw-translate-x: 0;
6063
6795
  --tw-translate-y: 0;
6064
6796
  --tw-translate-z: 0;
@@ -6131,4 +6863,4 @@
6131
6863
  --tw-exit-translate-y: 0;
6132
6864
  }
6133
6865
  }
6134
- }
6866
+ }