@cnc_cbz/usefultools-plugin-official 1.1.0 → 1.1.2
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/base-converter.mjs +290 -0
- package/dist/case-converter.mjs +290 -0
- package/dist/chmod-calculator.mjs +290 -0
- package/dist/color-converter.mjs +290 -0
- package/dist/cron-expression.mjs +290 -0
- package/dist/cyber-chef.mjs +290 -0
- package/dist/docker-parser.mjs +290 -0
- package/dist/hash-generator.mjs +290 -0
- package/dist/html-entity.mjs +290 -0
- package/dist/idiom-dictionary.mjs +2813 -0
- package/dist/image-compressor.mjs +290 -0
- package/dist/ip-subnet.mjs +290 -0
- package/dist/js-runner.mjs +290 -0
- package/dist/json-diff.mjs +290 -0
- package/dist/json-formatter.mjs +290 -0
- package/dist/json-yaml.mjs +290 -0
- package/dist/jwt-parser.mjs +290 -0
- package/dist/lorem-ipsum.mjs +290 -0
- package/dist/markdown-preview.mjs +290 -0
- package/dist/password-generator.mjs +290 -0
- package/dist/qr-generator.mjs +290 -0
- package/dist/regex-tester.mjs +290 -0
- package/dist/sql-formatter.mjs +290 -0
- package/dist/text-diff.mjs +290 -0
- package/dist/text-splitter.mjs +3298 -0
- package/dist/text-stats.mjs +290 -0
- package/dist/timestamp-converter.mjs +290 -0
- package/dist/translator.mjs +290 -0
- package/dist/url-codec.mjs +290 -0
- package/dist/uuid-generator.mjs +290 -0
- package/package.json +1 -1
- package/plugin.json +3 -1
package/dist/hash-generator.mjs
CHANGED
|
@@ -377,6 +377,10 @@ export {
|
|
|
377
377
|
position: relative;
|
|
378
378
|
}
|
|
379
379
|
|
|
380
|
+
.sticky {
|
|
381
|
+
position: sticky;
|
|
382
|
+
}
|
|
383
|
+
|
|
380
384
|
.inset-0 {
|
|
381
385
|
inset: calc(var(--spacing) * 0);
|
|
382
386
|
}
|
|
@@ -389,6 +393,10 @@ export {
|
|
|
389
393
|
inset-inline-end: var(--spacing);
|
|
390
394
|
}
|
|
391
395
|
|
|
396
|
+
.top-0 {
|
|
397
|
+
top: calc(var(--spacing) * 0);
|
|
398
|
+
}
|
|
399
|
+
|
|
392
400
|
.top-1\\/2 {
|
|
393
401
|
top: 50%;
|
|
394
402
|
}
|
|
@@ -401,6 +409,10 @@ export {
|
|
|
401
409
|
left: calc(var(--spacing) * 2);
|
|
402
410
|
}
|
|
403
411
|
|
|
412
|
+
.z-10 {
|
|
413
|
+
z-index: 10;
|
|
414
|
+
}
|
|
415
|
+
|
|
404
416
|
.z-50 {
|
|
405
417
|
z-index: 50;
|
|
406
418
|
}
|
|
@@ -409,6 +421,40 @@ export {
|
|
|
409
421
|
grid-column: span 2 / span 2;
|
|
410
422
|
}
|
|
411
423
|
|
|
424
|
+
.container {
|
|
425
|
+
width: 100%;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
@media (min-width: 40rem) {
|
|
429
|
+
.container {
|
|
430
|
+
max-width: 40rem;
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
@media (min-width: 48rem) {
|
|
435
|
+
.container {
|
|
436
|
+
max-width: 48rem;
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
@media (min-width: 64rem) {
|
|
441
|
+
.container {
|
|
442
|
+
max-width: 64rem;
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
@media (min-width: 80rem) {
|
|
447
|
+
.container {
|
|
448
|
+
max-width: 80rem;
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
@media (min-width: 96rem) {
|
|
453
|
+
.container {
|
|
454
|
+
max-width: 96rem;
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
|
|
412
458
|
.-mx-1 {
|
|
413
459
|
margin-inline: calc(var(--spacing) * -1);
|
|
414
460
|
}
|
|
@@ -433,6 +479,10 @@ export {
|
|
|
433
479
|
margin-top: calc(var(--spacing) * 3);
|
|
434
480
|
}
|
|
435
481
|
|
|
482
|
+
.mt-4 {
|
|
483
|
+
margin-top: calc(var(--spacing) * 4);
|
|
484
|
+
}
|
|
485
|
+
|
|
436
486
|
.mr-1 {
|
|
437
487
|
margin-right: calc(var(--spacing) * 1);
|
|
438
488
|
}
|
|
@@ -461,6 +511,10 @@ export {
|
|
|
461
511
|
margin-bottom: calc(var(--spacing) * 3);
|
|
462
512
|
}
|
|
463
513
|
|
|
514
|
+
.mb-5 {
|
|
515
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
516
|
+
}
|
|
517
|
+
|
|
464
518
|
.ml-0\\.5 {
|
|
465
519
|
margin-left: calc(var(--spacing) * .5);
|
|
466
520
|
}
|
|
@@ -549,6 +603,10 @@ export {
|
|
|
549
603
|
height: calc(var(--spacing) * 10);
|
|
550
604
|
}
|
|
551
605
|
|
|
606
|
+
.h-11 {
|
|
607
|
+
height: calc(var(--spacing) * 11);
|
|
608
|
+
}
|
|
609
|
+
|
|
552
610
|
.h-12 {
|
|
553
611
|
height: calc(var(--spacing) * 12);
|
|
554
612
|
}
|
|
@@ -565,6 +623,10 @@ export {
|
|
|
565
623
|
height: 100%;
|
|
566
624
|
}
|
|
567
625
|
|
|
626
|
+
.max-h-28 {
|
|
627
|
+
max-height: calc(var(--spacing) * 28);
|
|
628
|
+
}
|
|
629
|
+
|
|
568
630
|
.max-h-36 {
|
|
569
631
|
max-height: calc(var(--spacing) * 36);
|
|
570
632
|
}
|
|
@@ -585,6 +647,10 @@ export {
|
|
|
585
647
|
max-height: 200px;
|
|
586
648
|
}
|
|
587
649
|
|
|
650
|
+
.max-h-\\[420px\\] {
|
|
651
|
+
max-height: 420px;
|
|
652
|
+
}
|
|
653
|
+
|
|
588
654
|
.max-h-full {
|
|
589
655
|
max-height: 100%;
|
|
590
656
|
}
|
|
@@ -605,6 +671,22 @@ export {
|
|
|
605
671
|
min-height: 200px;
|
|
606
672
|
}
|
|
607
673
|
|
|
674
|
+
.min-h-\\[260px\\] {
|
|
675
|
+
min-height: 260px;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.min-h-\\[320px\\] {
|
|
679
|
+
min-height: 320px;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
.min-h-full {
|
|
683
|
+
min-height: 100%;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.w-1 {
|
|
687
|
+
width: calc(var(--spacing) * 1);
|
|
688
|
+
}
|
|
689
|
+
|
|
608
690
|
.w-1\\.5 {
|
|
609
691
|
width: calc(var(--spacing) * 1.5);
|
|
610
692
|
}
|
|
@@ -669,6 +751,10 @@ export {
|
|
|
669
751
|
width: calc(var(--spacing) * 32);
|
|
670
752
|
}
|
|
671
753
|
|
|
754
|
+
.w-56 {
|
|
755
|
+
width: calc(var(--spacing) * 56);
|
|
756
|
+
}
|
|
757
|
+
|
|
672
758
|
.w-72 {
|
|
673
759
|
width: calc(var(--spacing) * 72);
|
|
674
760
|
}
|
|
@@ -677,6 +763,10 @@ export {
|
|
|
677
763
|
width: 100%;
|
|
678
764
|
}
|
|
679
765
|
|
|
766
|
+
.max-w-60 {
|
|
767
|
+
max-width: calc(var(--spacing) * 60);
|
|
768
|
+
}
|
|
769
|
+
|
|
680
770
|
.max-w-70 {
|
|
681
771
|
max-width: calc(var(--spacing) * 70);
|
|
682
772
|
}
|
|
@@ -693,6 +783,10 @@ export {
|
|
|
693
783
|
min-width: calc(var(--spacing) * 0);
|
|
694
784
|
}
|
|
695
785
|
|
|
786
|
+
.min-w-36 {
|
|
787
|
+
min-width: calc(var(--spacing) * 36);
|
|
788
|
+
}
|
|
789
|
+
|
|
696
790
|
.min-w-\\[90px\\] {
|
|
697
791
|
min-width: 90px;
|
|
698
792
|
}
|
|
@@ -709,6 +803,10 @@ export {
|
|
|
709
803
|
flex-shrink: 0;
|
|
710
804
|
}
|
|
711
805
|
|
|
806
|
+
.table-fixed {
|
|
807
|
+
table-layout: fixed;
|
|
808
|
+
}
|
|
809
|
+
|
|
712
810
|
.border-collapse {
|
|
713
811
|
border-collapse: collapse;
|
|
714
812
|
}
|
|
@@ -728,6 +826,10 @@ export {
|
|
|
728
826
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
729
827
|
}
|
|
730
828
|
|
|
829
|
+
.scale-\\[0\\.98\\] {
|
|
830
|
+
scale: .98;
|
|
831
|
+
}
|
|
832
|
+
|
|
731
833
|
.transform {
|
|
732
834
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
733
835
|
}
|
|
@@ -748,6 +850,10 @@ export {
|
|
|
748
850
|
cursor: pointer;
|
|
749
851
|
}
|
|
750
852
|
|
|
853
|
+
.touch-none {
|
|
854
|
+
touch-action: none;
|
|
855
|
+
}
|
|
856
|
+
|
|
751
857
|
.resize {
|
|
752
858
|
resize: both;
|
|
753
859
|
}
|
|
@@ -756,6 +862,10 @@ export {
|
|
|
756
862
|
resize: none;
|
|
757
863
|
}
|
|
758
864
|
|
|
865
|
+
.resize-y {
|
|
866
|
+
resize: vertical;
|
|
867
|
+
}
|
|
868
|
+
|
|
759
869
|
.appearance-none {
|
|
760
870
|
appearance: none;
|
|
761
871
|
}
|
|
@@ -796,6 +906,10 @@ export {
|
|
|
796
906
|
align-items: center;
|
|
797
907
|
}
|
|
798
908
|
|
|
909
|
+
.items-stretch {
|
|
910
|
+
align-items: stretch;
|
|
911
|
+
}
|
|
912
|
+
|
|
799
913
|
.justify-between {
|
|
800
914
|
justify-content: space-between;
|
|
801
915
|
}
|
|
@@ -860,6 +974,12 @@ export {
|
|
|
860
974
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
861
975
|
}
|
|
862
976
|
|
|
977
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
978
|
+
--tw-space-y-reverse: 0;
|
|
979
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
980
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
981
|
+
}
|
|
982
|
+
|
|
863
983
|
.gap-x-6 {
|
|
864
984
|
column-gap: calc(var(--spacing) * 6);
|
|
865
985
|
}
|
|
@@ -882,6 +1002,10 @@ export {
|
|
|
882
1002
|
overflow: hidden;
|
|
883
1003
|
}
|
|
884
1004
|
|
|
1005
|
+
.overflow-x-auto {
|
|
1006
|
+
overflow-x: auto;
|
|
1007
|
+
}
|
|
1008
|
+
|
|
885
1009
|
.overflow-y-auto {
|
|
886
1010
|
overflow-y: auto;
|
|
887
1011
|
}
|
|
@@ -921,6 +1045,11 @@ export {
|
|
|
921
1045
|
border-width: 4px;
|
|
922
1046
|
}
|
|
923
1047
|
|
|
1048
|
+
.border-t-2 {
|
|
1049
|
+
border-top-style: var(--tw-border-style);
|
|
1050
|
+
border-top-width: 2px;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
924
1053
|
.border-r {
|
|
925
1054
|
border-right-style: var(--tw-border-style);
|
|
926
1055
|
border-right-width: 1px;
|
|
@@ -950,10 +1079,30 @@ export {
|
|
|
950
1079
|
border-color: var(--color-black);
|
|
951
1080
|
}
|
|
952
1081
|
|
|
1082
|
+
.border-black\\/30 {
|
|
1083
|
+
border-color: #0000004d;
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1087
|
+
.border-black\\/30 {
|
|
1088
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
1091
|
+
|
|
953
1092
|
.border-coral-red {
|
|
954
1093
|
border-color: var(--color-coral-red);
|
|
955
1094
|
}
|
|
956
1095
|
|
|
1096
|
+
.border-coral-red\\/30 {
|
|
1097
|
+
border-color: #ff6b6b4d;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1101
|
+
.border-coral-red\\/30 {
|
|
1102
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
1103
|
+
}
|
|
1104
|
+
}
|
|
1105
|
+
|
|
957
1106
|
.border-coral-red\\/40 {
|
|
958
1107
|
border-color: #ff6b6b66;
|
|
959
1108
|
}
|
|
@@ -964,6 +1113,16 @@ export {
|
|
|
964
1113
|
}
|
|
965
1114
|
}
|
|
966
1115
|
|
|
1116
|
+
.border-electric-blue\\/30 {
|
|
1117
|
+
border-color: #3b82f64d;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1121
|
+
.border-electric-blue\\/30 {
|
|
1122
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
1123
|
+
}
|
|
1124
|
+
}
|
|
1125
|
+
|
|
967
1126
|
.border-electric-blue\\/40 {
|
|
968
1127
|
border-color: #3b82f666;
|
|
969
1128
|
}
|
|
@@ -982,10 +1141,30 @@ export {
|
|
|
982
1141
|
border-color: var(--color-gray-700);
|
|
983
1142
|
}
|
|
984
1143
|
|
|
1144
|
+
.border-hot-pink\\/30 {
|
|
1145
|
+
border-color: #ec48994d;
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1149
|
+
.border-hot-pink\\/30 {
|
|
1150
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
1151
|
+
}
|
|
1152
|
+
}
|
|
1153
|
+
|
|
985
1154
|
.border-neon-green {
|
|
986
1155
|
border-color: var(--color-neon-green);
|
|
987
1156
|
}
|
|
988
1157
|
|
|
1158
|
+
.border-neon-green\\/30 {
|
|
1159
|
+
border-color: #84cc164d;
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1163
|
+
.border-neon-green\\/30 {
|
|
1164
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
|
|
989
1168
|
.border-neon-green\\/40 {
|
|
990
1169
|
border-color: #84cc1666;
|
|
991
1170
|
}
|
|
@@ -1000,6 +1179,16 @@ export {
|
|
|
1000
1179
|
border-color: var(--color-primary);
|
|
1001
1180
|
}
|
|
1002
1181
|
|
|
1182
|
+
.border-primary\\/30 {
|
|
1183
|
+
border-color: #f9b11f4d;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1187
|
+
.border-primary\\/30 {
|
|
1188
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1189
|
+
}
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1003
1192
|
.border-primary\\/40 {
|
|
1004
1193
|
border-color: #f9b11f66;
|
|
1005
1194
|
}
|
|
@@ -1014,6 +1203,16 @@ export {
|
|
|
1014
1203
|
border-color: #0000;
|
|
1015
1204
|
}
|
|
1016
1205
|
|
|
1206
|
+
.border-vibrant-purple\\/30 {
|
|
1207
|
+
border-color: #a855f74d;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1211
|
+
.border-vibrant-purple\\/30 {
|
|
1212
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
1213
|
+
}
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1017
1216
|
.border-white\\/5 {
|
|
1018
1217
|
border-color: #ffffff0d;
|
|
1019
1218
|
}
|
|
@@ -1110,6 +1309,16 @@ export {
|
|
|
1110
1309
|
background-color: var(--color-electric-blue);
|
|
1111
1310
|
}
|
|
1112
1311
|
|
|
1312
|
+
.bg-electric-blue\\/10 {
|
|
1313
|
+
background-color: #3b82f61a;
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1317
|
+
.bg-electric-blue\\/10 {
|
|
1318
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
1319
|
+
}
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1113
1322
|
.bg-electric-blue\\/20 {
|
|
1114
1323
|
background-color: #3b82f633;
|
|
1115
1324
|
}
|
|
@@ -1124,6 +1333,16 @@ export {
|
|
|
1124
1333
|
background-color: var(--color-hot-pink);
|
|
1125
1334
|
}
|
|
1126
1335
|
|
|
1336
|
+
.bg-hot-pink\\/10 {
|
|
1337
|
+
background-color: #ec48991a;
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1341
|
+
.bg-hot-pink\\/10 {
|
|
1342
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
1343
|
+
}
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1127
1346
|
.bg-neon-green {
|
|
1128
1347
|
background-color: var(--color-neon-green);
|
|
1129
1348
|
}
|
|
@@ -1192,6 +1411,16 @@ export {
|
|
|
1192
1411
|
}
|
|
1193
1412
|
}
|
|
1194
1413
|
|
|
1414
|
+
.bg-primary\\/30 {
|
|
1415
|
+
background-color: #f9b11f4d;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1419
|
+
.bg-primary\\/30 {
|
|
1420
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1421
|
+
}
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1195
1424
|
.bg-transparent {
|
|
1196
1425
|
background-color: #0000;
|
|
1197
1426
|
}
|
|
@@ -1200,6 +1429,16 @@ export {
|
|
|
1200
1429
|
background-color: var(--color-vibrant-purple);
|
|
1201
1430
|
}
|
|
1202
1431
|
|
|
1432
|
+
.bg-vibrant-purple\\/10 {
|
|
1433
|
+
background-color: #a855f71a;
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1437
|
+
.bg-vibrant-purple\\/10 {
|
|
1438
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
1439
|
+
}
|
|
1440
|
+
}
|
|
1441
|
+
|
|
1203
1442
|
.bg-white {
|
|
1204
1443
|
background-color: var(--color-white);
|
|
1205
1444
|
}
|
|
@@ -1276,6 +1515,10 @@ export {
|
|
|
1276
1515
|
padding: calc(var(--spacing) * 3);
|
|
1277
1516
|
}
|
|
1278
1517
|
|
|
1518
|
+
.p-3\\.5 {
|
|
1519
|
+
padding: calc(var(--spacing) * 3.5);
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1279
1522
|
.p-4 {
|
|
1280
1523
|
padding: calc(var(--spacing) * 4);
|
|
1281
1524
|
}
|
|
@@ -1340,6 +1583,10 @@ export {
|
|
|
1340
1583
|
padding-block: calc(var(--spacing) * 3);
|
|
1341
1584
|
}
|
|
1342
1585
|
|
|
1586
|
+
.py-4 {
|
|
1587
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1343
1590
|
.py-6 {
|
|
1344
1591
|
padding-block: calc(var(--spacing) * 6);
|
|
1345
1592
|
}
|
|
@@ -1348,6 +1595,10 @@ export {
|
|
|
1348
1595
|
padding-block: calc(var(--spacing) * 8);
|
|
1349
1596
|
}
|
|
1350
1597
|
|
|
1598
|
+
.pt-3 {
|
|
1599
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1351
1602
|
.pr-1 {
|
|
1352
1603
|
padding-right: calc(var(--spacing) * 1);
|
|
1353
1604
|
}
|
|
@@ -1372,6 +1623,14 @@ export {
|
|
|
1372
1623
|
padding-right: calc(var(--spacing) * 11);
|
|
1373
1624
|
}
|
|
1374
1625
|
|
|
1626
|
+
.pb-1 {
|
|
1627
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
.pb-2 {
|
|
1631
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1375
1634
|
.pl-1\\.5 {
|
|
1376
1635
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1377
1636
|
}
|
|
@@ -1412,6 +1671,10 @@ export {
|
|
|
1412
1671
|
vertical-align: middle;
|
|
1413
1672
|
}
|
|
1414
1673
|
|
|
1674
|
+
.align-top {
|
|
1675
|
+
vertical-align: top;
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1415
1678
|
.font-mono {
|
|
1416
1679
|
font-family: var(--font-mono);
|
|
1417
1680
|
}
|
|
@@ -1473,6 +1736,11 @@ export {
|
|
|
1473
1736
|
line-height: calc(var(--spacing) * 6);
|
|
1474
1737
|
}
|
|
1475
1738
|
|
|
1739
|
+
.leading-7 {
|
|
1740
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1741
|
+
line-height: calc(var(--spacing) * 7);
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1476
1744
|
.leading-none {
|
|
1477
1745
|
--tw-leading: 1;
|
|
1478
1746
|
line-height: 1;
|
|
@@ -1503,6 +1771,10 @@ export {
|
|
|
1503
1771
|
letter-spacing: var(--tracking-widest);
|
|
1504
1772
|
}
|
|
1505
1773
|
|
|
1774
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
1775
|
+
overflow-wrap: anywhere;
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1506
1778
|
.break-all {
|
|
1507
1779
|
word-break: break-all;
|
|
1508
1780
|
}
|
|
@@ -1699,6 +1971,10 @@ export {
|
|
|
1699
1971
|
opacity: .7;
|
|
1700
1972
|
}
|
|
1701
1973
|
|
|
1974
|
+
.opacity-100 {
|
|
1975
|
+
opacity: 1;
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1702
1978
|
.shadow-hard {
|
|
1703
1979
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
1704
1980
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1942,6 +2218,11 @@ export {
|
|
|
1942
2218
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1943
2219
|
}
|
|
1944
2220
|
|
|
2221
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
2222
|
+
--tw-translate-x: 2px;
|
|
2223
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2224
|
+
}
|
|
2225
|
+
|
|
1945
2226
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
1946
2227
|
--tw-translate-x: 4px;
|
|
1947
2228
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1952,6 +2233,11 @@ export {
|
|
|
1952
2233
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1953
2234
|
}
|
|
1954
2235
|
|
|
2236
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
2237
|
+
--tw-translate-y: 2px;
|
|
2238
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2239
|
+
}
|
|
2240
|
+
|
|
1955
2241
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
1956
2242
|
--tw-translate-y: 4px;
|
|
1957
2243
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2028,6 +2314,10 @@ export {
|
|
|
2028
2314
|
.xl\\:grid-cols-3 {
|
|
2029
2315
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2030
2316
|
}
|
|
2317
|
+
|
|
2318
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
2319
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
2320
|
+
}
|
|
2031
2321
|
}
|
|
2032
2322
|
}
|
|
2033
2323
|
|