@algorithm-shift/design-system 1.2.976 → 1.2.978

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -34,10 +34,13 @@
34
34
  --color-teal-700: oklch(51.1% 0.096 186.391);
35
35
  --color-blue-50: oklch(97% 0.014 254.604);
36
36
  --color-blue-100: oklch(93.2% 0.032 255.585);
37
+ --color-blue-300: oklch(80.9% 0.105 251.813);
38
+ --color-blue-400: oklch(70.7% 0.165 254.624);
37
39
  --color-blue-500: oklch(62.3% 0.214 259.815);
38
40
  --color-blue-600: oklch(54.6% 0.245 262.881);
39
41
  --color-blue-700: oklch(48.8% 0.243 264.376);
40
42
  --color-blue-800: oklch(42.4% 0.199 265.638);
43
+ --color-purple-300: oklch(82.7% 0.119 306.383);
41
44
  --color-gray-50: oklch(98.5% 0.002 247.839);
42
45
  --color-gray-100: oklch(96.7% 0.003 264.542);
43
46
  --color-gray-200: oklch(92.8% 0.006 264.531);
@@ -65,18 +68,20 @@
65
68
  --text-base--line-height: calc(1.5 / 1);
66
69
  --text-lg: 1.125rem;
67
70
  --text-lg--line-height: calc(1.75 / 1.125);
68
- --text-2xl: 1.5rem;
69
- --text-2xl--line-height: calc(2 / 1.5);
70
- --text-4xl: 2.25rem;
71
- --text-4xl--line-height: calc(2.5 / 2.25);
71
+ --text-xl: 1.25rem;
72
+ --text-xl--line-height: calc(1.75 / 1.25);
73
+ --text-3xl: 1.875rem;
74
+ --text-3xl--line-height: calc(2.25 / 1.875);
72
75
  --font-weight-normal: 400;
73
76
  --font-weight-medium: 500;
74
77
  --font-weight-semibold: 600;
75
78
  --font-weight-bold: 700;
76
79
  --tracking-widest: 0.1em;
80
+ --leading-tight: 1.25;
77
81
  --radius-xs: 0.125rem;
78
82
  --animate-spin: spin 1s linear infinite;
79
83
  --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
84
+ --blur-sm: 8px;
80
85
  --default-transition-duration: 150ms;
81
86
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
82
87
  --default-font-family: var(--font-sans);
@@ -360,6 +365,12 @@
360
365
  .right-4 {
361
366
  right: calc(var(--spacing) * 4);
362
367
  }
368
+ .bottom-0 {
369
+ bottom: calc(var(--spacing) * 0);
370
+ }
371
+ .bottom-1 {
372
+ bottom: calc(var(--spacing) * 1);
373
+ }
363
374
  .left-1\/2 {
364
375
  left: calc(1/2 * 100%);
365
376
  }
@@ -369,6 +380,9 @@
369
380
  .left-3 {
370
381
  left: calc(var(--spacing) * 3);
371
382
  }
383
+ .left-4 {
384
+ left: calc(var(--spacing) * 4);
385
+ }
372
386
  .left-\[-9px\] {
373
387
  left: -9px;
374
388
  }
@@ -405,6 +419,15 @@
405
419
  .z-\[999\] {
406
420
  z-index: 999;
407
421
  }
422
+ .order-1 {
423
+ order: 1;
424
+ }
425
+ .order-2 {
426
+ order: 2;
427
+ }
428
+ .order-3 {
429
+ order: 3;
430
+ }
408
431
  .col-span-12 {
409
432
  grid-column: span 12 / span 12;
410
433
  }
@@ -462,12 +485,18 @@
462
485
  .mt-2 {
463
486
  margin-top: calc(var(--spacing) * 2);
464
487
  }
488
+ .mt-3 {
489
+ margin-top: calc(var(--spacing) * 3);
490
+ }
465
491
  .mt-4 {
466
492
  margin-top: calc(var(--spacing) * 4);
467
493
  }
468
494
  .mt-6 {
469
495
  margin-top: calc(var(--spacing) * 6);
470
496
  }
497
+ .mt-8 {
498
+ margin-top: calc(var(--spacing) * 8);
499
+ }
471
500
  .mt-\[20px\] {
472
501
  margin-top: 20px;
473
502
  }
@@ -483,6 +512,9 @@
483
512
  .mb-4 {
484
513
  margin-bottom: calc(var(--spacing) * 4);
485
514
  }
515
+ .mb-6 {
516
+ margin-bottom: calc(var(--spacing) * 6);
517
+ }
486
518
  .mb-\[20px\] {
487
519
  margin-bottom: 20px;
488
520
  }
@@ -564,9 +596,15 @@
564
596
  .h-\(--cell-size\) {
565
597
  height: var(--cell-size);
566
598
  }
599
+ .h-1 {
600
+ height: calc(var(--spacing) * 1);
601
+ }
567
602
  .h-2 {
568
603
  height: calc(var(--spacing) * 2);
569
604
  }
605
+ .h-2\.5 {
606
+ height: calc(var(--spacing) * 2.5);
607
+ }
570
608
  .h-3 {
571
609
  height: calc(var(--spacing) * 3);
572
610
  }
@@ -603,8 +641,8 @@
603
641
  .h-\[10px\] {
604
642
  height: 10px;
605
643
  }
606
- .h-\[16px\] {
607
- height: 16px;
644
+ .h-\[12px\] {
645
+ height: 12px;
608
646
  }
609
647
  .h-\[20px\] {
610
648
  height: 20px;
@@ -618,11 +656,14 @@
618
656
  .h-\[200px\] {
619
657
  height: 200px;
620
658
  }
659
+ .h-\[280px\] {
660
+ height: 280px;
661
+ }
621
662
  .h-\[300px\] {
622
663
  height: 300px;
623
664
  }
624
- .h-\[400px\] {
625
- height: 400px;
665
+ .h-\[450px\] {
666
+ height: 450px;
626
667
  }
627
668
  .h-\[var\(--radix-select-trigger-height\)\] {
628
669
  height: var(--radix-select-trigger-height);
@@ -672,8 +713,8 @@
672
713
  .min-h-30 {
673
714
  min-height: calc(var(--spacing) * 30);
674
715
  }
675
- .min-h-\[35px\] {
676
- min-height: 35px;
716
+ .min-h-\[32px\] {
717
+ min-height: 32px;
677
718
  }
678
719
  .min-h-\[50px\] {
679
720
  min-height: 50px;
@@ -684,6 +725,9 @@
684
725
  .min-h-\[100px\] {
685
726
  min-height: 100px;
686
727
  }
728
+ .min-h-\[240px\] {
729
+ min-height: 240px;
730
+ }
687
731
  .min-h-auto {
688
732
  min-height: auto;
689
733
  }
@@ -723,6 +767,12 @@
723
767
  .w-10 {
724
768
  width: calc(var(--spacing) * 10);
725
769
  }
770
+ .w-16 {
771
+ width: calc(var(--spacing) * 16);
772
+ }
773
+ .w-20 {
774
+ width: calc(var(--spacing) * 20);
775
+ }
726
776
  .w-30 {
727
777
  width: calc(var(--spacing) * 30);
728
778
  }
@@ -741,8 +791,8 @@
741
791
  .w-\[10px\] {
742
792
  width: 10px;
743
793
  }
744
- .w-\[16px\] {
745
- width: 16px;
794
+ .w-\[12px\] {
795
+ width: 12px;
746
796
  }
747
797
  .w-\[20px\] {
748
798
  width: 20px;
@@ -777,6 +827,12 @@
777
827
  .w-md {
778
828
  width: var(--container-md);
779
829
  }
830
+ .max-w-4xl {
831
+ max-width: var(--container-4xl);
832
+ }
833
+ .max-w-\[48px\] {
834
+ max-width: 48px;
835
+ }
780
836
  .max-w-\[90\%\] {
781
837
  max-width: 90%;
782
838
  }
@@ -798,11 +854,14 @@
798
854
  .min-w-\[8rem\] {
799
855
  min-width: 8rem;
800
856
  }
857
+ .min-w-\[36px\] {
858
+ min-width: 36px;
859
+ }
801
860
  .min-w-\[60px\] {
802
861
  min-width: 60px;
803
862
  }
804
- .min-w-\[80px\] {
805
- min-width: 80px;
863
+ .min-w-\[70px\] {
864
+ min-width: 70px;
806
865
  }
807
866
  .min-w-\[120px\] {
808
867
  min-width: 120px;
@@ -912,6 +971,9 @@
912
971
  .items-center {
913
972
  align-items: center;
914
973
  }
974
+ .items-end {
975
+ align-items: flex-end;
976
+ }
915
977
  .items-start {
916
978
  align-items: flex-start;
917
979
  }
@@ -945,6 +1007,13 @@
945
1007
  .gap-6 {
946
1008
  gap: calc(var(--spacing) * 6);
947
1009
  }
1010
+ .space-y-1 {
1011
+ :where(& > :not(:last-child)) {
1012
+ --tw-space-y-reverse: 0;
1013
+ margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
1014
+ margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
1015
+ }
1016
+ }
948
1017
  .space-y-2 {
949
1018
  :where(& > :not(:last-child)) {
950
1019
  --tw-space-y-reverse: 0;
@@ -966,6 +1035,13 @@
966
1035
  margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
967
1036
  }
968
1037
  }
1038
+ .space-x-1 {
1039
+ :where(& > :not(:last-child)) {
1040
+ --tw-space-x-reverse: 0;
1041
+ margin-inline-start: calc(calc(var(--spacing) * 1) * var(--tw-space-x-reverse));
1042
+ margin-inline-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-x-reverse)));
1043
+ }
1044
+ }
969
1045
  .space-x-2 {
970
1046
  :where(& > :not(:last-child)) {
971
1047
  --tw-space-x-reverse: 0;
@@ -1040,6 +1116,10 @@
1040
1116
  .rounded-xs {
1041
1117
  border-radius: var(--radius-xs);
1042
1118
  }
1119
+ .rounded-t-lg {
1120
+ border-top-left-radius: var(--radius);
1121
+ border-top-right-radius: var(--radius);
1122
+ }
1043
1123
  .rounded-l-md {
1044
1124
  border-top-left-radius: calc(var(--radius) - 2px);
1045
1125
  border-bottom-left-radius: calc(var(--radius) - 2px);
@@ -1124,6 +1204,12 @@
1124
1204
  .border-gray-200 {
1125
1205
  border-color: var(--color-gray-200);
1126
1206
  }
1207
+ .border-gray-200\/50 {
1208
+ border-color: color-mix(in srgb, oklch(92.8% 0.006 264.531) 50%, transparent);
1209
+ @supports (color: color-mix(in lab, red, red)) {
1210
+ border-color: color-mix(in oklab, var(--color-gray-200) 50%, transparent);
1211
+ }
1212
+ }
1127
1213
  .border-gray-300 {
1128
1214
  border-color: var(--color-gray-300);
1129
1215
  }
@@ -1145,6 +1231,15 @@
1145
1231
  .border-transparent {
1146
1232
  border-color: transparent;
1147
1233
  }
1234
+ .border-white\/50 {
1235
+ border-color: color-mix(in srgb, #fff 50%, transparent);
1236
+ @supports (color: color-mix(in lab, red, red)) {
1237
+ border-color: color-mix(in oklab, var(--color-white) 50%, transparent);
1238
+ }
1239
+ }
1240
+ .border-t-blue-400 {
1241
+ border-top-color: var(--color-blue-400);
1242
+ }
1148
1243
  .border-t-blue-500 {
1149
1244
  border-top-color: var(--color-blue-500);
1150
1245
  }
@@ -1214,6 +1309,12 @@
1214
1309
  .bg-gray-200 {
1215
1310
  background-color: var(--color-gray-200);
1216
1311
  }
1312
+ .bg-gray-200\/60 {
1313
+ background-color: color-mix(in srgb, oklch(92.8% 0.006 264.531) 60%, transparent);
1314
+ @supports (color: color-mix(in lab, red, red)) {
1315
+ background-color: color-mix(in oklab, var(--color-gray-200) 60%, transparent);
1316
+ }
1317
+ }
1217
1318
  .bg-gray-300 {
1218
1319
  background-color: var(--color-gray-300);
1219
1320
  }
@@ -1262,6 +1363,129 @@
1262
1363
  background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
1263
1364
  }
1264
1365
  }
1366
+ .bg-white\/80 {
1367
+ background-color: color-mix(in srgb, #fff 80%, transparent);
1368
+ @supports (color: color-mix(in lab, red, red)) {
1369
+ background-color: color-mix(in oklab, var(--color-white) 80%, transparent);
1370
+ }
1371
+ }
1372
+ .bg-white\/90 {
1373
+ background-color: color-mix(in srgb, #fff 90%, transparent);
1374
+ @supports (color: color-mix(in lab, red, red)) {
1375
+ background-color: color-mix(in oklab, var(--color-white) 90%, transparent);
1376
+ }
1377
+ }
1378
+ .bg-gradient-to-br {
1379
+ --tw-gradient-position: to bottom right in oklab;
1380
+ background-image: linear-gradient(var(--tw-gradient-stops));
1381
+ }
1382
+ .bg-gradient-to-r {
1383
+ --tw-gradient-position: to right in oklab;
1384
+ background-image: linear-gradient(var(--tw-gradient-stops));
1385
+ }
1386
+ .bg-gradient-to-t {
1387
+ --tw-gradient-position: to top in oklab;
1388
+ background-image: linear-gradient(var(--tw-gradient-stops));
1389
+ }
1390
+ .from-blue-300 {
1391
+ --tw-gradient-from: var(--color-blue-300);
1392
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1393
+ }
1394
+ .from-gray-50 {
1395
+ --tw-gradient-from: var(--color-gray-50);
1396
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1397
+ }
1398
+ .from-gray-100 {
1399
+ --tw-gradient-from: var(--color-gray-100);
1400
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1401
+ }
1402
+ .from-gray-200 {
1403
+ --tw-gradient-from: var(--color-gray-200);
1404
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1405
+ }
1406
+ .from-gray-300 {
1407
+ --tw-gradient-from: var(--color-gray-300);
1408
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1409
+ }
1410
+ .from-transparent {
1411
+ --tw-gradient-from: transparent;
1412
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1413
+ }
1414
+ .from-white\/40 {
1415
+ --tw-gradient-from: color-mix(in srgb, #fff 40%, transparent);
1416
+ @supports (color: color-mix(in lab, red, red)) {
1417
+ --tw-gradient-from: color-mix(in oklab, var(--color-white) 40%, transparent);
1418
+ }
1419
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1420
+ }
1421
+ .via-gray-200 {
1422
+ --tw-gradient-via: var(--color-gray-200);
1423
+ --tw-gradient-via-stops:
1424
+ var(--tw-gradient-position),
1425
+ var(--tw-gradient-from) var(--tw-gradient-from-position),
1426
+ var(--tw-gradient-via) var(--tw-gradient-via-position),
1427
+ var(--tw-gradient-to) var(--tw-gradient-to-position);
1428
+ --tw-gradient-stops: var(--tw-gradient-via-stops);
1429
+ }
1430
+ .via-gray-300\/50 {
1431
+ --tw-gradient-via: color-mix(in srgb, oklch(87.2% 0.01 258.338) 50%, transparent);
1432
+ @supports (color: color-mix(in lab, red, red)) {
1433
+ --tw-gradient-via: color-mix(in oklab, var(--color-gray-300) 50%, transparent);
1434
+ }
1435
+ --tw-gradient-via-stops:
1436
+ var(--tw-gradient-position),
1437
+ var(--tw-gradient-from) var(--tw-gradient-from-position),
1438
+ var(--tw-gradient-via) var(--tw-gradient-via-position),
1439
+ var(--tw-gradient-to) var(--tw-gradient-to-position);
1440
+ --tw-gradient-stops: var(--tw-gradient-via-stops);
1441
+ }
1442
+ .via-transparent {
1443
+ --tw-gradient-via: transparent;
1444
+ --tw-gradient-via-stops:
1445
+ var(--tw-gradient-position),
1446
+ var(--tw-gradient-from) var(--tw-gradient-from-position),
1447
+ var(--tw-gradient-via) var(--tw-gradient-via-position),
1448
+ var(--tw-gradient-to) var(--tw-gradient-to-position);
1449
+ --tw-gradient-stops: var(--tw-gradient-via-stops);
1450
+ }
1451
+ .via-white\/60 {
1452
+ --tw-gradient-via: color-mix(in srgb, #fff 60%, transparent);
1453
+ @supports (color: color-mix(in lab, red, red)) {
1454
+ --tw-gradient-via: color-mix(in oklab, var(--color-white) 60%, transparent);
1455
+ }
1456
+ --tw-gradient-via-stops:
1457
+ var(--tw-gradient-position),
1458
+ var(--tw-gradient-from) var(--tw-gradient-from-position),
1459
+ var(--tw-gradient-via) var(--tw-gradient-via-position),
1460
+ var(--tw-gradient-to) var(--tw-gradient-to-position);
1461
+ --tw-gradient-stops: var(--tw-gradient-via-stops);
1462
+ }
1463
+ .to-gray-100 {
1464
+ --tw-gradient-to: var(--color-gray-100);
1465
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1466
+ }
1467
+ .to-gray-200 {
1468
+ --tw-gradient-to: var(--color-gray-200);
1469
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1470
+ }
1471
+ .to-purple-300 {
1472
+ --tw-gradient-to: var(--color-purple-300);
1473
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1474
+ }
1475
+ .to-transparent {
1476
+ --tw-gradient-to: transparent;
1477
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1478
+ }
1479
+ .to-white\/40 {
1480
+ --tw-gradient-to: color-mix(in srgb, #fff 40%, transparent);
1481
+ @supports (color: color-mix(in lab, red, red)) {
1482
+ --tw-gradient-to: color-mix(in oklab, var(--color-white) 40%, transparent);
1483
+ }
1484
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1485
+ }
1486
+ .bg-clip-text {
1487
+ background-clip: text;
1488
+ }
1265
1489
  .fill-current {
1266
1490
  fill: currentcolor;
1267
1491
  }
@@ -1298,6 +1522,9 @@
1298
1522
  .px-\(--cell-size\) {
1299
1523
  padding-inline: var(--cell-size);
1300
1524
  }
1525
+ .px-1 {
1526
+ padding-inline: calc(var(--spacing) * 1);
1527
+ }
1301
1528
  .px-2 {
1302
1529
  padding-inline: calc(var(--spacing) * 2);
1303
1530
  }
@@ -1316,6 +1543,9 @@
1316
1543
  .px-10 {
1317
1544
  padding-inline: calc(var(--spacing) * 10);
1318
1545
  }
1546
+ .py-0\.5 {
1547
+ padding-block: calc(var(--spacing) * 0.5);
1548
+ }
1319
1549
  .py-1 {
1320
1550
  padding-block: calc(var(--spacing) * 1);
1321
1551
  }
@@ -1325,6 +1555,9 @@
1325
1555
  .py-2 {
1326
1556
  padding-block: calc(var(--spacing) * 2);
1327
1557
  }
1558
+ .py-2\.5 {
1559
+ padding-block: calc(var(--spacing) * 2.5);
1560
+ }
1328
1561
  .py-3 {
1329
1562
  padding-block: calc(var(--spacing) * 3);
1330
1563
  }
@@ -1406,13 +1639,9 @@
1406
1639
  .align-middle {
1407
1640
  vertical-align: middle;
1408
1641
  }
1409
- .text-2xl {
1410
- font-size: var(--text-2xl);
1411
- line-height: var(--tw-leading, var(--text-2xl--line-height));
1412
- }
1413
- .text-4xl {
1414
- font-size: var(--text-4xl);
1415
- line-height: var(--tw-leading, var(--text-4xl--line-height));
1642
+ .text-3xl {
1643
+ font-size: var(--text-3xl);
1644
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
1416
1645
  }
1417
1646
  .text-base {
1418
1647
  font-size: var(--text-base);
@@ -1426,6 +1655,10 @@
1426
1655
  font-size: var(--text-sm);
1427
1656
  line-height: var(--tw-leading, var(--text-sm--line-height));
1428
1657
  }
1658
+ .text-xl {
1659
+ font-size: var(--text-xl);
1660
+ line-height: var(--tw-leading, var(--text-xl--line-height));
1661
+ }
1429
1662
  .text-xs {
1430
1663
  font-size: var(--text-xs);
1431
1664
  line-height: var(--tw-leading, var(--text-xs--line-height));
@@ -1433,6 +1666,9 @@
1433
1666
  .text-\[0\.8rem\] {
1434
1667
  font-size: 0.8rem;
1435
1668
  }
1669
+ .text-\[9px\] {
1670
+ font-size: 9px;
1671
+ }
1436
1672
  .text-\[10px\] {
1437
1673
  font-size: 10px;
1438
1674
  }
@@ -1460,6 +1696,10 @@
1460
1696
  --tw-leading: 1;
1461
1697
  line-height: 1;
1462
1698
  }
1699
+ .leading-tight {
1700
+ --tw-leading: var(--leading-tight);
1701
+ line-height: var(--leading-tight);
1702
+ }
1463
1703
  .font-\[500\] {
1464
1704
  --tw-font-weight: 500;
1465
1705
  font-weight: 500;
@@ -1484,6 +1724,9 @@
1484
1724
  --tw-tracking: var(--tracking-widest);
1485
1725
  letter-spacing: var(--tracking-widest);
1486
1726
  }
1727
+ .whitespace-normal {
1728
+ white-space: normal;
1729
+ }
1487
1730
  .whitespace-nowrap {
1488
1731
  white-space: nowrap;
1489
1732
  }
@@ -1496,6 +1739,9 @@
1496
1739
  .text-\[\#1C1B1F\] {
1497
1740
  color: #1C1B1F;
1498
1741
  }
1742
+ .text-\[\#1f2937\] {
1743
+ color: #1f2937;
1744
+ }
1499
1745
  .text-\[\#12715B\] {
1500
1746
  color: #12715B;
1501
1747
  }
@@ -1701,9 +1947,18 @@
1701
1947
  outline-style: var(--tw-outline-style);
1702
1948
  outline-width: 1px;
1703
1949
  }
1950
+ .blur-sm {
1951
+ --tw-blur: blur(var(--blur-sm));
1952
+ 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,);
1953
+ }
1704
1954
  .filter {
1705
1955
  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,);
1706
1956
  }
1957
+ .backdrop-blur-sm {
1958
+ --tw-backdrop-blur: blur(var(--blur-sm));
1959
+ -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
1960
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
1961
+ }
1707
1962
  .transition {
1708
1963
  transition-property:
1709
1964
  color,
@@ -2157,6 +2412,19 @@
2157
2412
  }
2158
2413
  }
2159
2414
  }
2415
+ .hover\:shadow-md {
2416
+ &:hover {
2417
+ @media (hover: hover) {
2418
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
2419
+ box-shadow:
2420
+ var(--tw-inset-shadow),
2421
+ var(--tw-inset-ring-shadow),
2422
+ var(--tw-ring-offset-shadow),
2423
+ var(--tw-ring-shadow),
2424
+ var(--tw-shadow);
2425
+ }
2426
+ }
2427
+ }
2160
2428
  .focus\:border-blue-500 {
2161
2429
  &:focus {
2162
2430
  border-color: var(--color-blue-500);
@@ -2745,11 +3013,41 @@
2745
3013
  height: calc(var(--spacing) * 50);
2746
3014
  }
2747
3015
  }
3016
+ .sm\:min-h-\[35px\] {
3017
+ @media (width >= 40rem) {
3018
+ min-height: 35px;
3019
+ }
3020
+ }
3021
+ .sm\:w-4 {
3022
+ @media (width >= 40rem) {
3023
+ width: calc(var(--spacing) * 4);
3024
+ }
3025
+ }
3026
+ .sm\:w-\[32\%\] {
3027
+ @media (width >= 40rem) {
3028
+ width: 32%;
3029
+ }
3030
+ }
3031
+ .sm\:w-auto {
3032
+ @media (width >= 40rem) {
3033
+ width: auto;
3034
+ }
3035
+ }
2748
3036
  .sm\:max-w-lg {
2749
3037
  @media (width >= 40rem) {
2750
3038
  max-width: var(--container-lg);
2751
3039
  }
2752
3040
  }
3041
+ .sm\:min-w-\[80px\] {
3042
+ @media (width >= 40rem) {
3043
+ min-width: 80px;
3044
+ }
3045
+ }
3046
+ .sm\:flex-shrink-0 {
3047
+ @media (width >= 40rem) {
3048
+ flex-shrink: 0;
3049
+ }
3050
+ }
2753
3051
  .sm\:grid-cols-12 {
2754
3052
  @media (width >= 40rem) {
2755
3053
  grid-template-columns: repeat(12, minmax(0, 1fr));
@@ -2770,11 +3068,36 @@
2770
3068
  justify-content: flex-end;
2771
3069
  }
2772
3070
  }
3071
+ .sm\:gap-2 {
3072
+ @media (width >= 40rem) {
3073
+ gap: calc(var(--spacing) * 2);
3074
+ }
3075
+ }
2773
3076
  .sm\:bg-\[\#12715b\] {
2774
3077
  @media (width >= 40rem) {
2775
3078
  background-color: #12715b;
2776
3079
  }
2777
3080
  }
3081
+ .sm\:p-4 {
3082
+ @media (width >= 40rem) {
3083
+ padding: calc(var(--spacing) * 4);
3084
+ }
3085
+ }
3086
+ .sm\:px-2 {
3087
+ @media (width >= 40rem) {
3088
+ padding-inline: calc(var(--spacing) * 2);
3089
+ }
3090
+ }
3091
+ .sm\:px-4 {
3092
+ @media (width >= 40rem) {
3093
+ padding-inline: calc(var(--spacing) * 4);
3094
+ }
3095
+ }
3096
+ .sm\:py-2 {
3097
+ @media (width >= 40rem) {
3098
+ padding-block: calc(var(--spacing) * 2);
3099
+ }
3100
+ }
2778
3101
  .sm\:pt-\[10px\] {
2779
3102
  @media (width >= 40rem) {
2780
3103
  padding-top: 10px;
@@ -2810,6 +3133,17 @@
2810
3133
  text-align: left;
2811
3134
  }
2812
3135
  }
3136
+ .sm\:text-sm {
3137
+ @media (width >= 40rem) {
3138
+ font-size: var(--text-sm);
3139
+ line-height: var(--tw-leading, var(--text-sm--line-height));
3140
+ }
3141
+ }
3142
+ .sm\:whitespace-nowrap {
3143
+ @media (width >= 40rem) {
3144
+ white-space: nowrap;
3145
+ }
3146
+ }
2813
3147
  .md\:visible {
2814
3148
  @media (width >= 48rem) {
2815
3149
  visibility: visible;
@@ -2825,6 +3159,11 @@
2825
3159
  grid-column-start: 1;
2826
3160
  }
2827
3161
  }
3162
+ .md\:ml-1 {
3163
+ @media (width >= 48rem) {
3164
+ margin-left: calc(var(--spacing) * 1);
3165
+ }
3166
+ }
2828
3167
  .md\:flex {
2829
3168
  @media (width >= 48rem) {
2830
3169
  display: flex;
@@ -2835,19 +3174,49 @@
2835
3174
  display: none;
2836
3175
  }
2837
3176
  }
3177
+ .md\:inline-block {
3178
+ @media (width >= 48rem) {
3179
+ display: inline-block;
3180
+ }
3181
+ }
2838
3182
  .md\:h-50 {
2839
3183
  @media (width >= 48rem) {
2840
3184
  height: calc(var(--spacing) * 50);
2841
3185
  }
2842
3186
  }
3187
+ .md\:h-\[280px\] {
3188
+ @media (width >= 48rem) {
3189
+ height: 280px;
3190
+ }
3191
+ }
3192
+ .md\:h-\[380px\] {
3193
+ @media (width >= 48rem) {
3194
+ height: 380px;
3195
+ }
3196
+ }
2843
3197
  .md\:h-\[400px\] {
2844
3198
  @media (width >= 48rem) {
2845
3199
  height: 400px;
2846
3200
  }
2847
3201
  }
2848
- .md\:w-\[70\%\] {
3202
+ .md\:min-h-\[320px\] {
3203
+ @media (width >= 48rem) {
3204
+ min-height: 320px;
3205
+ }
3206
+ }
3207
+ .md\:w-12 {
2849
3208
  @media (width >= 48rem) {
2850
- width: 70%;
3209
+ width: calc(var(--spacing) * 12);
3210
+ }
3211
+ }
3212
+ .md\:w-32 {
3213
+ @media (width >= 48rem) {
3214
+ width: calc(var(--spacing) * 32);
3215
+ }
3216
+ }
3217
+ .md\:w-\[75\%\] {
3218
+ @media (width >= 48rem) {
3219
+ width: 75%;
2851
3220
  }
2852
3221
  }
2853
3222
  .md\:w-auto {
@@ -2912,6 +3281,46 @@
2912
3281
  font-size: 13px;
2913
3282
  }
2914
3283
  }
3284
+ .lg\:order-1 {
3285
+ @media (width >= 64rem) {
3286
+ order: 1;
3287
+ }
3288
+ }
3289
+ .lg\:mt-0 {
3290
+ @media (width >= 64rem) {
3291
+ margin-top: calc(var(--spacing) * 0);
3292
+ }
3293
+ }
3294
+ .lg\:w-auto {
3295
+ @media (width >= 64rem) {
3296
+ width: auto;
3297
+ }
3298
+ }
3299
+ .lg\:flex-row {
3300
+ @media (width >= 64rem) {
3301
+ flex-direction: row;
3302
+ }
3303
+ }
3304
+ .lg\:items-center {
3305
+ @media (width >= 64rem) {
3306
+ align-items: center;
3307
+ }
3308
+ }
3309
+ .lg\:gap-0 {
3310
+ @media (width >= 64rem) {
3311
+ gap: calc(var(--spacing) * 0);
3312
+ }
3313
+ }
3314
+ .lg\:gap-3 {
3315
+ @media (width >= 64rem) {
3316
+ gap: calc(var(--spacing) * 3);
3317
+ }
3318
+ }
3319
+ .lg\:px-6 {
3320
+ @media (width >= 64rem) {
3321
+ padding-inline: calc(var(--spacing) * 6);
3322
+ }
3323
+ }
2915
3324
  .dark\:border-gray-700 {
2916
3325
  &:is(.dark *) {
2917
3326
  border-color: var(--color-gray-700);
@@ -3475,6 +3884,15 @@
3475
3884
  @property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
3476
3885
  @property --tw-space-x-reverse { syntax: "*"; inherits: false; initial-value: 0; }
3477
3886
  @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
3887
+ @property --tw-gradient-position { syntax: "*"; inherits: false; }
3888
+ @property --tw-gradient-from { syntax: "<color>"; inherits: false; initial-value: #0000; }
3889
+ @property --tw-gradient-via { syntax: "<color>"; inherits: false; initial-value: #0000; }
3890
+ @property --tw-gradient-to { syntax: "<color>"; inherits: false; initial-value: #0000; }
3891
+ @property --tw-gradient-stops { syntax: "*"; inherits: false; }
3892
+ @property --tw-gradient-via-stops { syntax: "*"; inherits: false; }
3893
+ @property --tw-gradient-from-position { syntax: "<length-percentage>"; inherits: false; initial-value: 0%; }
3894
+ @property --tw-gradient-via-position { syntax: "<length-percentage>"; inherits: false; initial-value: 50%; }
3895
+ @property --tw-gradient-to-position { syntax: "<length-percentage>"; inherits: false; initial-value: 100%; }
3478
3896
  @property --tw-leading { syntax: "*"; inherits: false; }
3479
3897
  @property --tw-font-weight { syntax: "*"; inherits: false; }
3480
3898
  @property --tw-tracking { syntax: "*"; inherits: false; }
@@ -3511,6 +3929,15 @@
3511
3929
  @property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
3512
3930
  @property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
3513
3931
  @property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
3932
+ @property --tw-backdrop-blur { syntax: "*"; inherits: false; }
3933
+ @property --tw-backdrop-brightness { syntax: "*"; inherits: false; }
3934
+ @property --tw-backdrop-contrast { syntax: "*"; inherits: false; }
3935
+ @property --tw-backdrop-grayscale { syntax: "*"; inherits: false; }
3936
+ @property --tw-backdrop-hue-rotate { syntax: "*"; inherits: false; }
3937
+ @property --tw-backdrop-invert { syntax: "*"; inherits: false; }
3938
+ @property --tw-backdrop-opacity { syntax: "*"; inherits: false; }
3939
+ @property --tw-backdrop-saturate { syntax: "*"; inherits: false; }
3940
+ @property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
3514
3941
  @property --tw-duration { syntax: "*"; inherits: false; }
3515
3942
  @keyframes spin {
3516
3943
  to {
@@ -3569,6 +3996,15 @@
3569
3996
  --tw-space-y-reverse: 0;
3570
3997
  --tw-space-x-reverse: 0;
3571
3998
  --tw-border-style: solid;
3999
+ --tw-gradient-position: initial;
4000
+ --tw-gradient-from: #0000;
4001
+ --tw-gradient-via: #0000;
4002
+ --tw-gradient-to: #0000;
4003
+ --tw-gradient-stops: initial;
4004
+ --tw-gradient-via-stops: initial;
4005
+ --tw-gradient-from-position: 0%;
4006
+ --tw-gradient-via-position: 50%;
4007
+ --tw-gradient-to-position: 100%;
3572
4008
  --tw-leading: initial;
3573
4009
  --tw-font-weight: initial;
3574
4010
  --tw-tracking: initial;
@@ -3605,6 +4041,15 @@
3605
4041
  --tw-drop-shadow-color: initial;
3606
4042
  --tw-drop-shadow-alpha: 100%;
3607
4043
  --tw-drop-shadow-size: initial;
4044
+ --tw-backdrop-blur: initial;
4045
+ --tw-backdrop-brightness: initial;
4046
+ --tw-backdrop-contrast: initial;
4047
+ --tw-backdrop-grayscale: initial;
4048
+ --tw-backdrop-hue-rotate: initial;
4049
+ --tw-backdrop-invert: initial;
4050
+ --tw-backdrop-opacity: initial;
4051
+ --tw-backdrop-saturate: initial;
4052
+ --tw-backdrop-sepia: initial;
3608
4053
  --tw-duration: initial;
3609
4054
  --tw-animation-delay: 0s;
3610
4055
  --tw-animation-direction: normal;