@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/url-codec.mjs
CHANGED
|
@@ -317,6 +317,10 @@ export {
|
|
|
317
317
|
position: relative;
|
|
318
318
|
}
|
|
319
319
|
|
|
320
|
+
.sticky {
|
|
321
|
+
position: sticky;
|
|
322
|
+
}
|
|
323
|
+
|
|
320
324
|
.inset-0 {
|
|
321
325
|
inset: calc(var(--spacing) * 0);
|
|
322
326
|
}
|
|
@@ -329,6 +333,10 @@ export {
|
|
|
329
333
|
inset-inline-end: var(--spacing);
|
|
330
334
|
}
|
|
331
335
|
|
|
336
|
+
.top-0 {
|
|
337
|
+
top: calc(var(--spacing) * 0);
|
|
338
|
+
}
|
|
339
|
+
|
|
332
340
|
.top-1\\/2 {
|
|
333
341
|
top: 50%;
|
|
334
342
|
}
|
|
@@ -341,6 +349,10 @@ export {
|
|
|
341
349
|
left: calc(var(--spacing) * 2);
|
|
342
350
|
}
|
|
343
351
|
|
|
352
|
+
.z-10 {
|
|
353
|
+
z-index: 10;
|
|
354
|
+
}
|
|
355
|
+
|
|
344
356
|
.z-50 {
|
|
345
357
|
z-index: 50;
|
|
346
358
|
}
|
|
@@ -349,6 +361,40 @@ export {
|
|
|
349
361
|
grid-column: span 2 / span 2;
|
|
350
362
|
}
|
|
351
363
|
|
|
364
|
+
.container {
|
|
365
|
+
width: 100%;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
@media (min-width: 40rem) {
|
|
369
|
+
.container {
|
|
370
|
+
max-width: 40rem;
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
@media (min-width: 48rem) {
|
|
375
|
+
.container {
|
|
376
|
+
max-width: 48rem;
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
@media (min-width: 64rem) {
|
|
381
|
+
.container {
|
|
382
|
+
max-width: 64rem;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
@media (min-width: 80rem) {
|
|
387
|
+
.container {
|
|
388
|
+
max-width: 80rem;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
@media (min-width: 96rem) {
|
|
393
|
+
.container {
|
|
394
|
+
max-width: 96rem;
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
|
|
352
398
|
.-mx-1 {
|
|
353
399
|
margin-inline: calc(var(--spacing) * -1);
|
|
354
400
|
}
|
|
@@ -373,6 +419,10 @@ export {
|
|
|
373
419
|
margin-top: calc(var(--spacing) * 3);
|
|
374
420
|
}
|
|
375
421
|
|
|
422
|
+
.mt-4 {
|
|
423
|
+
margin-top: calc(var(--spacing) * 4);
|
|
424
|
+
}
|
|
425
|
+
|
|
376
426
|
.mr-1 {
|
|
377
427
|
margin-right: calc(var(--spacing) * 1);
|
|
378
428
|
}
|
|
@@ -401,6 +451,10 @@ export {
|
|
|
401
451
|
margin-bottom: calc(var(--spacing) * 3);
|
|
402
452
|
}
|
|
403
453
|
|
|
454
|
+
.mb-5 {
|
|
455
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
456
|
+
}
|
|
457
|
+
|
|
404
458
|
.ml-0\\.5 {
|
|
405
459
|
margin-left: calc(var(--spacing) * .5);
|
|
406
460
|
}
|
|
@@ -489,6 +543,10 @@ export {
|
|
|
489
543
|
height: calc(var(--spacing) * 10);
|
|
490
544
|
}
|
|
491
545
|
|
|
546
|
+
.h-11 {
|
|
547
|
+
height: calc(var(--spacing) * 11);
|
|
548
|
+
}
|
|
549
|
+
|
|
492
550
|
.h-12 {
|
|
493
551
|
height: calc(var(--spacing) * 12);
|
|
494
552
|
}
|
|
@@ -505,6 +563,10 @@ export {
|
|
|
505
563
|
height: 100%;
|
|
506
564
|
}
|
|
507
565
|
|
|
566
|
+
.max-h-28 {
|
|
567
|
+
max-height: calc(var(--spacing) * 28);
|
|
568
|
+
}
|
|
569
|
+
|
|
508
570
|
.max-h-36 {
|
|
509
571
|
max-height: calc(var(--spacing) * 36);
|
|
510
572
|
}
|
|
@@ -525,6 +587,10 @@ export {
|
|
|
525
587
|
max-height: 200px;
|
|
526
588
|
}
|
|
527
589
|
|
|
590
|
+
.max-h-\\[420px\\] {
|
|
591
|
+
max-height: 420px;
|
|
592
|
+
}
|
|
593
|
+
|
|
528
594
|
.max-h-full {
|
|
529
595
|
max-height: 100%;
|
|
530
596
|
}
|
|
@@ -545,6 +611,22 @@ export {
|
|
|
545
611
|
min-height: 200px;
|
|
546
612
|
}
|
|
547
613
|
|
|
614
|
+
.min-h-\\[260px\\] {
|
|
615
|
+
min-height: 260px;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.min-h-\\[320px\\] {
|
|
619
|
+
min-height: 320px;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.min-h-full {
|
|
623
|
+
min-height: 100%;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.w-1 {
|
|
627
|
+
width: calc(var(--spacing) * 1);
|
|
628
|
+
}
|
|
629
|
+
|
|
548
630
|
.w-1\\.5 {
|
|
549
631
|
width: calc(var(--spacing) * 1.5);
|
|
550
632
|
}
|
|
@@ -609,6 +691,10 @@ export {
|
|
|
609
691
|
width: calc(var(--spacing) * 32);
|
|
610
692
|
}
|
|
611
693
|
|
|
694
|
+
.w-56 {
|
|
695
|
+
width: calc(var(--spacing) * 56);
|
|
696
|
+
}
|
|
697
|
+
|
|
612
698
|
.w-72 {
|
|
613
699
|
width: calc(var(--spacing) * 72);
|
|
614
700
|
}
|
|
@@ -617,6 +703,10 @@ export {
|
|
|
617
703
|
width: 100%;
|
|
618
704
|
}
|
|
619
705
|
|
|
706
|
+
.max-w-60 {
|
|
707
|
+
max-width: calc(var(--spacing) * 60);
|
|
708
|
+
}
|
|
709
|
+
|
|
620
710
|
.max-w-70 {
|
|
621
711
|
max-width: calc(var(--spacing) * 70);
|
|
622
712
|
}
|
|
@@ -633,6 +723,10 @@ export {
|
|
|
633
723
|
min-width: calc(var(--spacing) * 0);
|
|
634
724
|
}
|
|
635
725
|
|
|
726
|
+
.min-w-36 {
|
|
727
|
+
min-width: calc(var(--spacing) * 36);
|
|
728
|
+
}
|
|
729
|
+
|
|
636
730
|
.min-w-\\[90px\\] {
|
|
637
731
|
min-width: 90px;
|
|
638
732
|
}
|
|
@@ -649,6 +743,10 @@ export {
|
|
|
649
743
|
flex-shrink: 0;
|
|
650
744
|
}
|
|
651
745
|
|
|
746
|
+
.table-fixed {
|
|
747
|
+
table-layout: fixed;
|
|
748
|
+
}
|
|
749
|
+
|
|
652
750
|
.border-collapse {
|
|
653
751
|
border-collapse: collapse;
|
|
654
752
|
}
|
|
@@ -668,6 +766,10 @@ export {
|
|
|
668
766
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
669
767
|
}
|
|
670
768
|
|
|
769
|
+
.scale-\\[0\\.98\\] {
|
|
770
|
+
scale: .98;
|
|
771
|
+
}
|
|
772
|
+
|
|
671
773
|
.transform {
|
|
672
774
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
673
775
|
}
|
|
@@ -688,6 +790,10 @@ export {
|
|
|
688
790
|
cursor: pointer;
|
|
689
791
|
}
|
|
690
792
|
|
|
793
|
+
.touch-none {
|
|
794
|
+
touch-action: none;
|
|
795
|
+
}
|
|
796
|
+
|
|
691
797
|
.resize {
|
|
692
798
|
resize: both;
|
|
693
799
|
}
|
|
@@ -696,6 +802,10 @@ export {
|
|
|
696
802
|
resize: none;
|
|
697
803
|
}
|
|
698
804
|
|
|
805
|
+
.resize-y {
|
|
806
|
+
resize: vertical;
|
|
807
|
+
}
|
|
808
|
+
|
|
699
809
|
.appearance-none {
|
|
700
810
|
appearance: none;
|
|
701
811
|
}
|
|
@@ -736,6 +846,10 @@ export {
|
|
|
736
846
|
align-items: center;
|
|
737
847
|
}
|
|
738
848
|
|
|
849
|
+
.items-stretch {
|
|
850
|
+
align-items: stretch;
|
|
851
|
+
}
|
|
852
|
+
|
|
739
853
|
.justify-between {
|
|
740
854
|
justify-content: space-between;
|
|
741
855
|
}
|
|
@@ -800,6 +914,12 @@ export {
|
|
|
800
914
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
801
915
|
}
|
|
802
916
|
|
|
917
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
918
|
+
--tw-space-y-reverse: 0;
|
|
919
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
920
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
921
|
+
}
|
|
922
|
+
|
|
803
923
|
.gap-x-6 {
|
|
804
924
|
column-gap: calc(var(--spacing) * 6);
|
|
805
925
|
}
|
|
@@ -822,6 +942,10 @@ export {
|
|
|
822
942
|
overflow: hidden;
|
|
823
943
|
}
|
|
824
944
|
|
|
945
|
+
.overflow-x-auto {
|
|
946
|
+
overflow-x: auto;
|
|
947
|
+
}
|
|
948
|
+
|
|
825
949
|
.overflow-y-auto {
|
|
826
950
|
overflow-y: auto;
|
|
827
951
|
}
|
|
@@ -861,6 +985,11 @@ export {
|
|
|
861
985
|
border-width: 4px;
|
|
862
986
|
}
|
|
863
987
|
|
|
988
|
+
.border-t-2 {
|
|
989
|
+
border-top-style: var(--tw-border-style);
|
|
990
|
+
border-top-width: 2px;
|
|
991
|
+
}
|
|
992
|
+
|
|
864
993
|
.border-r {
|
|
865
994
|
border-right-style: var(--tw-border-style);
|
|
866
995
|
border-right-width: 1px;
|
|
@@ -890,10 +1019,30 @@ export {
|
|
|
890
1019
|
border-color: var(--color-black);
|
|
891
1020
|
}
|
|
892
1021
|
|
|
1022
|
+
.border-black\\/30 {
|
|
1023
|
+
border-color: #0000004d;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1027
|
+
.border-black\\/30 {
|
|
1028
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
1029
|
+
}
|
|
1030
|
+
}
|
|
1031
|
+
|
|
893
1032
|
.border-coral-red {
|
|
894
1033
|
border-color: var(--color-coral-red);
|
|
895
1034
|
}
|
|
896
1035
|
|
|
1036
|
+
.border-coral-red\\/30 {
|
|
1037
|
+
border-color: #ff6b6b4d;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1041
|
+
.border-coral-red\\/30 {
|
|
1042
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
|
|
897
1046
|
.border-coral-red\\/40 {
|
|
898
1047
|
border-color: #ff6b6b66;
|
|
899
1048
|
}
|
|
@@ -904,6 +1053,16 @@ export {
|
|
|
904
1053
|
}
|
|
905
1054
|
}
|
|
906
1055
|
|
|
1056
|
+
.border-electric-blue\\/30 {
|
|
1057
|
+
border-color: #3b82f64d;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1061
|
+
.border-electric-blue\\/30 {
|
|
1062
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
1063
|
+
}
|
|
1064
|
+
}
|
|
1065
|
+
|
|
907
1066
|
.border-electric-blue\\/40 {
|
|
908
1067
|
border-color: #3b82f666;
|
|
909
1068
|
}
|
|
@@ -922,10 +1081,30 @@ export {
|
|
|
922
1081
|
border-color: var(--color-gray-700);
|
|
923
1082
|
}
|
|
924
1083
|
|
|
1084
|
+
.border-hot-pink\\/30 {
|
|
1085
|
+
border-color: #ec48994d;
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1089
|
+
.border-hot-pink\\/30 {
|
|
1090
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
1091
|
+
}
|
|
1092
|
+
}
|
|
1093
|
+
|
|
925
1094
|
.border-neon-green {
|
|
926
1095
|
border-color: var(--color-neon-green);
|
|
927
1096
|
}
|
|
928
1097
|
|
|
1098
|
+
.border-neon-green\\/30 {
|
|
1099
|
+
border-color: #84cc164d;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1103
|
+
.border-neon-green\\/30 {
|
|
1104
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
1105
|
+
}
|
|
1106
|
+
}
|
|
1107
|
+
|
|
929
1108
|
.border-neon-green\\/40 {
|
|
930
1109
|
border-color: #84cc1666;
|
|
931
1110
|
}
|
|
@@ -940,6 +1119,16 @@ export {
|
|
|
940
1119
|
border-color: var(--color-primary);
|
|
941
1120
|
}
|
|
942
1121
|
|
|
1122
|
+
.border-primary\\/30 {
|
|
1123
|
+
border-color: #f9b11f4d;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1127
|
+
.border-primary\\/30 {
|
|
1128
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1129
|
+
}
|
|
1130
|
+
}
|
|
1131
|
+
|
|
943
1132
|
.border-primary\\/40 {
|
|
944
1133
|
border-color: #f9b11f66;
|
|
945
1134
|
}
|
|
@@ -954,6 +1143,16 @@ export {
|
|
|
954
1143
|
border-color: #0000;
|
|
955
1144
|
}
|
|
956
1145
|
|
|
1146
|
+
.border-vibrant-purple\\/30 {
|
|
1147
|
+
border-color: #a855f74d;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1151
|
+
.border-vibrant-purple\\/30 {
|
|
1152
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
1153
|
+
}
|
|
1154
|
+
}
|
|
1155
|
+
|
|
957
1156
|
.border-white\\/5 {
|
|
958
1157
|
border-color: #ffffff0d;
|
|
959
1158
|
}
|
|
@@ -1050,6 +1249,16 @@ export {
|
|
|
1050
1249
|
background-color: var(--color-electric-blue);
|
|
1051
1250
|
}
|
|
1052
1251
|
|
|
1252
|
+
.bg-electric-blue\\/10 {
|
|
1253
|
+
background-color: #3b82f61a;
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1257
|
+
.bg-electric-blue\\/10 {
|
|
1258
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1053
1262
|
.bg-electric-blue\\/20 {
|
|
1054
1263
|
background-color: #3b82f633;
|
|
1055
1264
|
}
|
|
@@ -1064,6 +1273,16 @@ export {
|
|
|
1064
1273
|
background-color: var(--color-hot-pink);
|
|
1065
1274
|
}
|
|
1066
1275
|
|
|
1276
|
+
.bg-hot-pink\\/10 {
|
|
1277
|
+
background-color: #ec48991a;
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1281
|
+
.bg-hot-pink\\/10 {
|
|
1282
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
1283
|
+
}
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1067
1286
|
.bg-neon-green {
|
|
1068
1287
|
background-color: var(--color-neon-green);
|
|
1069
1288
|
}
|
|
@@ -1132,6 +1351,16 @@ export {
|
|
|
1132
1351
|
}
|
|
1133
1352
|
}
|
|
1134
1353
|
|
|
1354
|
+
.bg-primary\\/30 {
|
|
1355
|
+
background-color: #f9b11f4d;
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1359
|
+
.bg-primary\\/30 {
|
|
1360
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1361
|
+
}
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1135
1364
|
.bg-transparent {
|
|
1136
1365
|
background-color: #0000;
|
|
1137
1366
|
}
|
|
@@ -1140,6 +1369,16 @@ export {
|
|
|
1140
1369
|
background-color: var(--color-vibrant-purple);
|
|
1141
1370
|
}
|
|
1142
1371
|
|
|
1372
|
+
.bg-vibrant-purple\\/10 {
|
|
1373
|
+
background-color: #a855f71a;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1377
|
+
.bg-vibrant-purple\\/10 {
|
|
1378
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
1379
|
+
}
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1143
1382
|
.bg-white {
|
|
1144
1383
|
background-color: var(--color-white);
|
|
1145
1384
|
}
|
|
@@ -1216,6 +1455,10 @@ export {
|
|
|
1216
1455
|
padding: calc(var(--spacing) * 3);
|
|
1217
1456
|
}
|
|
1218
1457
|
|
|
1458
|
+
.p-3\\.5 {
|
|
1459
|
+
padding: calc(var(--spacing) * 3.5);
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1219
1462
|
.p-4 {
|
|
1220
1463
|
padding: calc(var(--spacing) * 4);
|
|
1221
1464
|
}
|
|
@@ -1280,6 +1523,10 @@ export {
|
|
|
1280
1523
|
padding-block: calc(var(--spacing) * 3);
|
|
1281
1524
|
}
|
|
1282
1525
|
|
|
1526
|
+
.py-4 {
|
|
1527
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1283
1530
|
.py-6 {
|
|
1284
1531
|
padding-block: calc(var(--spacing) * 6);
|
|
1285
1532
|
}
|
|
@@ -1288,6 +1535,10 @@ export {
|
|
|
1288
1535
|
padding-block: calc(var(--spacing) * 8);
|
|
1289
1536
|
}
|
|
1290
1537
|
|
|
1538
|
+
.pt-3 {
|
|
1539
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1291
1542
|
.pr-1 {
|
|
1292
1543
|
padding-right: calc(var(--spacing) * 1);
|
|
1293
1544
|
}
|
|
@@ -1312,6 +1563,14 @@ export {
|
|
|
1312
1563
|
padding-right: calc(var(--spacing) * 11);
|
|
1313
1564
|
}
|
|
1314
1565
|
|
|
1566
|
+
.pb-1 {
|
|
1567
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1570
|
+
.pb-2 {
|
|
1571
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1315
1574
|
.pl-1\\.5 {
|
|
1316
1575
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1317
1576
|
}
|
|
@@ -1352,6 +1611,10 @@ export {
|
|
|
1352
1611
|
vertical-align: middle;
|
|
1353
1612
|
}
|
|
1354
1613
|
|
|
1614
|
+
.align-top {
|
|
1615
|
+
vertical-align: top;
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1355
1618
|
.font-mono {
|
|
1356
1619
|
font-family: var(--font-mono);
|
|
1357
1620
|
}
|
|
@@ -1413,6 +1676,11 @@ export {
|
|
|
1413
1676
|
line-height: calc(var(--spacing) * 6);
|
|
1414
1677
|
}
|
|
1415
1678
|
|
|
1679
|
+
.leading-7 {
|
|
1680
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1681
|
+
line-height: calc(var(--spacing) * 7);
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1416
1684
|
.leading-none {
|
|
1417
1685
|
--tw-leading: 1;
|
|
1418
1686
|
line-height: 1;
|
|
@@ -1443,6 +1711,10 @@ export {
|
|
|
1443
1711
|
letter-spacing: var(--tracking-widest);
|
|
1444
1712
|
}
|
|
1445
1713
|
|
|
1714
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
1715
|
+
overflow-wrap: anywhere;
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1446
1718
|
.break-all {
|
|
1447
1719
|
word-break: break-all;
|
|
1448
1720
|
}
|
|
@@ -1639,6 +1911,10 @@ export {
|
|
|
1639
1911
|
opacity: .7;
|
|
1640
1912
|
}
|
|
1641
1913
|
|
|
1914
|
+
.opacity-100 {
|
|
1915
|
+
opacity: 1;
|
|
1916
|
+
}
|
|
1917
|
+
|
|
1642
1918
|
.shadow-hard {
|
|
1643
1919
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
1644
1920
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1882,6 +2158,11 @@ export {
|
|
|
1882
2158
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1883
2159
|
}
|
|
1884
2160
|
|
|
2161
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
2162
|
+
--tw-translate-x: 2px;
|
|
2163
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2164
|
+
}
|
|
2165
|
+
|
|
1885
2166
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
1886
2167
|
--tw-translate-x: 4px;
|
|
1887
2168
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1892,6 +2173,11 @@ export {
|
|
|
1892
2173
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1893
2174
|
}
|
|
1894
2175
|
|
|
2176
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
2177
|
+
--tw-translate-y: 2px;
|
|
2178
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2179
|
+
}
|
|
2180
|
+
|
|
1895
2181
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
1896
2182
|
--tw-translate-y: 4px;
|
|
1897
2183
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1968,6 +2254,10 @@ export {
|
|
|
1968
2254
|
.xl\\:grid-cols-3 {
|
|
1969
2255
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1970
2256
|
}
|
|
2257
|
+
|
|
2258
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
2259
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
2260
|
+
}
|
|
1971
2261
|
}
|
|
1972
2262
|
}
|
|
1973
2263
|
|