@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/case-converter.mjs
CHANGED
|
@@ -280,6 +280,10 @@ export {
|
|
|
280
280
|
position: relative;
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
+
.sticky {
|
|
284
|
+
position: sticky;
|
|
285
|
+
}
|
|
286
|
+
|
|
283
287
|
.inset-0 {
|
|
284
288
|
inset: calc(var(--spacing) * 0);
|
|
285
289
|
}
|
|
@@ -292,6 +296,10 @@ export {
|
|
|
292
296
|
inset-inline-end: var(--spacing);
|
|
293
297
|
}
|
|
294
298
|
|
|
299
|
+
.top-0 {
|
|
300
|
+
top: calc(var(--spacing) * 0);
|
|
301
|
+
}
|
|
302
|
+
|
|
295
303
|
.top-1\\/2 {
|
|
296
304
|
top: 50%;
|
|
297
305
|
}
|
|
@@ -304,6 +312,10 @@ export {
|
|
|
304
312
|
left: calc(var(--spacing) * 2);
|
|
305
313
|
}
|
|
306
314
|
|
|
315
|
+
.z-10 {
|
|
316
|
+
z-index: 10;
|
|
317
|
+
}
|
|
318
|
+
|
|
307
319
|
.z-50 {
|
|
308
320
|
z-index: 50;
|
|
309
321
|
}
|
|
@@ -312,6 +324,40 @@ export {
|
|
|
312
324
|
grid-column: span 2 / span 2;
|
|
313
325
|
}
|
|
314
326
|
|
|
327
|
+
.container {
|
|
328
|
+
width: 100%;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
@media (min-width: 40rem) {
|
|
332
|
+
.container {
|
|
333
|
+
max-width: 40rem;
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
@media (min-width: 48rem) {
|
|
338
|
+
.container {
|
|
339
|
+
max-width: 48rem;
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
@media (min-width: 64rem) {
|
|
344
|
+
.container {
|
|
345
|
+
max-width: 64rem;
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
@media (min-width: 80rem) {
|
|
350
|
+
.container {
|
|
351
|
+
max-width: 80rem;
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
@media (min-width: 96rem) {
|
|
356
|
+
.container {
|
|
357
|
+
max-width: 96rem;
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
|
|
315
361
|
.-mx-1 {
|
|
316
362
|
margin-inline: calc(var(--spacing) * -1);
|
|
317
363
|
}
|
|
@@ -336,6 +382,10 @@ export {
|
|
|
336
382
|
margin-top: calc(var(--spacing) * 3);
|
|
337
383
|
}
|
|
338
384
|
|
|
385
|
+
.mt-4 {
|
|
386
|
+
margin-top: calc(var(--spacing) * 4);
|
|
387
|
+
}
|
|
388
|
+
|
|
339
389
|
.mr-1 {
|
|
340
390
|
margin-right: calc(var(--spacing) * 1);
|
|
341
391
|
}
|
|
@@ -364,6 +414,10 @@ export {
|
|
|
364
414
|
margin-bottom: calc(var(--spacing) * 3);
|
|
365
415
|
}
|
|
366
416
|
|
|
417
|
+
.mb-5 {
|
|
418
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
419
|
+
}
|
|
420
|
+
|
|
367
421
|
.ml-0\\.5 {
|
|
368
422
|
margin-left: calc(var(--spacing) * .5);
|
|
369
423
|
}
|
|
@@ -452,6 +506,10 @@ export {
|
|
|
452
506
|
height: calc(var(--spacing) * 10);
|
|
453
507
|
}
|
|
454
508
|
|
|
509
|
+
.h-11 {
|
|
510
|
+
height: calc(var(--spacing) * 11);
|
|
511
|
+
}
|
|
512
|
+
|
|
455
513
|
.h-12 {
|
|
456
514
|
height: calc(var(--spacing) * 12);
|
|
457
515
|
}
|
|
@@ -468,6 +526,10 @@ export {
|
|
|
468
526
|
height: 100%;
|
|
469
527
|
}
|
|
470
528
|
|
|
529
|
+
.max-h-28 {
|
|
530
|
+
max-height: calc(var(--spacing) * 28);
|
|
531
|
+
}
|
|
532
|
+
|
|
471
533
|
.max-h-36 {
|
|
472
534
|
max-height: calc(var(--spacing) * 36);
|
|
473
535
|
}
|
|
@@ -488,6 +550,10 @@ export {
|
|
|
488
550
|
max-height: 200px;
|
|
489
551
|
}
|
|
490
552
|
|
|
553
|
+
.max-h-\\[420px\\] {
|
|
554
|
+
max-height: 420px;
|
|
555
|
+
}
|
|
556
|
+
|
|
491
557
|
.max-h-full {
|
|
492
558
|
max-height: 100%;
|
|
493
559
|
}
|
|
@@ -508,6 +574,22 @@ export {
|
|
|
508
574
|
min-height: 200px;
|
|
509
575
|
}
|
|
510
576
|
|
|
577
|
+
.min-h-\\[260px\\] {
|
|
578
|
+
min-height: 260px;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
.min-h-\\[320px\\] {
|
|
582
|
+
min-height: 320px;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.min-h-full {
|
|
586
|
+
min-height: 100%;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.w-1 {
|
|
590
|
+
width: calc(var(--spacing) * 1);
|
|
591
|
+
}
|
|
592
|
+
|
|
511
593
|
.w-1\\.5 {
|
|
512
594
|
width: calc(var(--spacing) * 1.5);
|
|
513
595
|
}
|
|
@@ -572,6 +654,10 @@ export {
|
|
|
572
654
|
width: calc(var(--spacing) * 32);
|
|
573
655
|
}
|
|
574
656
|
|
|
657
|
+
.w-56 {
|
|
658
|
+
width: calc(var(--spacing) * 56);
|
|
659
|
+
}
|
|
660
|
+
|
|
575
661
|
.w-72 {
|
|
576
662
|
width: calc(var(--spacing) * 72);
|
|
577
663
|
}
|
|
@@ -580,6 +666,10 @@ export {
|
|
|
580
666
|
width: 100%;
|
|
581
667
|
}
|
|
582
668
|
|
|
669
|
+
.max-w-60 {
|
|
670
|
+
max-width: calc(var(--spacing) * 60);
|
|
671
|
+
}
|
|
672
|
+
|
|
583
673
|
.max-w-70 {
|
|
584
674
|
max-width: calc(var(--spacing) * 70);
|
|
585
675
|
}
|
|
@@ -596,6 +686,10 @@ export {
|
|
|
596
686
|
min-width: calc(var(--spacing) * 0);
|
|
597
687
|
}
|
|
598
688
|
|
|
689
|
+
.min-w-36 {
|
|
690
|
+
min-width: calc(var(--spacing) * 36);
|
|
691
|
+
}
|
|
692
|
+
|
|
599
693
|
.min-w-\\[90px\\] {
|
|
600
694
|
min-width: 90px;
|
|
601
695
|
}
|
|
@@ -612,6 +706,10 @@ export {
|
|
|
612
706
|
flex-shrink: 0;
|
|
613
707
|
}
|
|
614
708
|
|
|
709
|
+
.table-fixed {
|
|
710
|
+
table-layout: fixed;
|
|
711
|
+
}
|
|
712
|
+
|
|
615
713
|
.border-collapse {
|
|
616
714
|
border-collapse: collapse;
|
|
617
715
|
}
|
|
@@ -631,6 +729,10 @@ export {
|
|
|
631
729
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
632
730
|
}
|
|
633
731
|
|
|
732
|
+
.scale-\\[0\\.98\\] {
|
|
733
|
+
scale: .98;
|
|
734
|
+
}
|
|
735
|
+
|
|
634
736
|
.transform {
|
|
635
737
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
636
738
|
}
|
|
@@ -651,6 +753,10 @@ export {
|
|
|
651
753
|
cursor: pointer;
|
|
652
754
|
}
|
|
653
755
|
|
|
756
|
+
.touch-none {
|
|
757
|
+
touch-action: none;
|
|
758
|
+
}
|
|
759
|
+
|
|
654
760
|
.resize {
|
|
655
761
|
resize: both;
|
|
656
762
|
}
|
|
@@ -659,6 +765,10 @@ export {
|
|
|
659
765
|
resize: none;
|
|
660
766
|
}
|
|
661
767
|
|
|
768
|
+
.resize-y {
|
|
769
|
+
resize: vertical;
|
|
770
|
+
}
|
|
771
|
+
|
|
662
772
|
.appearance-none {
|
|
663
773
|
appearance: none;
|
|
664
774
|
}
|
|
@@ -699,6 +809,10 @@ export {
|
|
|
699
809
|
align-items: center;
|
|
700
810
|
}
|
|
701
811
|
|
|
812
|
+
.items-stretch {
|
|
813
|
+
align-items: stretch;
|
|
814
|
+
}
|
|
815
|
+
|
|
702
816
|
.justify-between {
|
|
703
817
|
justify-content: space-between;
|
|
704
818
|
}
|
|
@@ -763,6 +877,12 @@ export {
|
|
|
763
877
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
764
878
|
}
|
|
765
879
|
|
|
880
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
881
|
+
--tw-space-y-reverse: 0;
|
|
882
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
883
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
884
|
+
}
|
|
885
|
+
|
|
766
886
|
.gap-x-6 {
|
|
767
887
|
column-gap: calc(var(--spacing) * 6);
|
|
768
888
|
}
|
|
@@ -785,6 +905,10 @@ export {
|
|
|
785
905
|
overflow: hidden;
|
|
786
906
|
}
|
|
787
907
|
|
|
908
|
+
.overflow-x-auto {
|
|
909
|
+
overflow-x: auto;
|
|
910
|
+
}
|
|
911
|
+
|
|
788
912
|
.overflow-y-auto {
|
|
789
913
|
overflow-y: auto;
|
|
790
914
|
}
|
|
@@ -824,6 +948,11 @@ export {
|
|
|
824
948
|
border-width: 4px;
|
|
825
949
|
}
|
|
826
950
|
|
|
951
|
+
.border-t-2 {
|
|
952
|
+
border-top-style: var(--tw-border-style);
|
|
953
|
+
border-top-width: 2px;
|
|
954
|
+
}
|
|
955
|
+
|
|
827
956
|
.border-r {
|
|
828
957
|
border-right-style: var(--tw-border-style);
|
|
829
958
|
border-right-width: 1px;
|
|
@@ -853,10 +982,30 @@ export {
|
|
|
853
982
|
border-color: var(--color-black);
|
|
854
983
|
}
|
|
855
984
|
|
|
985
|
+
.border-black\\/30 {
|
|
986
|
+
border-color: #0000004d;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
990
|
+
.border-black\\/30 {
|
|
991
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
992
|
+
}
|
|
993
|
+
}
|
|
994
|
+
|
|
856
995
|
.border-coral-red {
|
|
857
996
|
border-color: var(--color-coral-red);
|
|
858
997
|
}
|
|
859
998
|
|
|
999
|
+
.border-coral-red\\/30 {
|
|
1000
|
+
border-color: #ff6b6b4d;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1004
|
+
.border-coral-red\\/30 {
|
|
1005
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
1006
|
+
}
|
|
1007
|
+
}
|
|
1008
|
+
|
|
860
1009
|
.border-coral-red\\/40 {
|
|
861
1010
|
border-color: #ff6b6b66;
|
|
862
1011
|
}
|
|
@@ -867,6 +1016,16 @@ export {
|
|
|
867
1016
|
}
|
|
868
1017
|
}
|
|
869
1018
|
|
|
1019
|
+
.border-electric-blue\\/30 {
|
|
1020
|
+
border-color: #3b82f64d;
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1024
|
+
.border-electric-blue\\/30 {
|
|
1025
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
|
|
870
1029
|
.border-electric-blue\\/40 {
|
|
871
1030
|
border-color: #3b82f666;
|
|
872
1031
|
}
|
|
@@ -885,10 +1044,30 @@ export {
|
|
|
885
1044
|
border-color: var(--color-gray-700);
|
|
886
1045
|
}
|
|
887
1046
|
|
|
1047
|
+
.border-hot-pink\\/30 {
|
|
1048
|
+
border-color: #ec48994d;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1052
|
+
.border-hot-pink\\/30 {
|
|
1053
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
1054
|
+
}
|
|
1055
|
+
}
|
|
1056
|
+
|
|
888
1057
|
.border-neon-green {
|
|
889
1058
|
border-color: var(--color-neon-green);
|
|
890
1059
|
}
|
|
891
1060
|
|
|
1061
|
+
.border-neon-green\\/30 {
|
|
1062
|
+
border-color: #84cc164d;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1066
|
+
.border-neon-green\\/30 {
|
|
1067
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
1070
|
+
|
|
892
1071
|
.border-neon-green\\/40 {
|
|
893
1072
|
border-color: #84cc1666;
|
|
894
1073
|
}
|
|
@@ -903,6 +1082,16 @@ export {
|
|
|
903
1082
|
border-color: var(--color-primary);
|
|
904
1083
|
}
|
|
905
1084
|
|
|
1085
|
+
.border-primary\\/30 {
|
|
1086
|
+
border-color: #f9b11f4d;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1090
|
+
.border-primary\\/30 {
|
|
1091
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1092
|
+
}
|
|
1093
|
+
}
|
|
1094
|
+
|
|
906
1095
|
.border-primary\\/40 {
|
|
907
1096
|
border-color: #f9b11f66;
|
|
908
1097
|
}
|
|
@@ -917,6 +1106,16 @@ export {
|
|
|
917
1106
|
border-color: #0000;
|
|
918
1107
|
}
|
|
919
1108
|
|
|
1109
|
+
.border-vibrant-purple\\/30 {
|
|
1110
|
+
border-color: #a855f74d;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1114
|
+
.border-vibrant-purple\\/30 {
|
|
1115
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
1116
|
+
}
|
|
1117
|
+
}
|
|
1118
|
+
|
|
920
1119
|
.border-white\\/5 {
|
|
921
1120
|
border-color: #ffffff0d;
|
|
922
1121
|
}
|
|
@@ -1013,6 +1212,16 @@ export {
|
|
|
1013
1212
|
background-color: var(--color-electric-blue);
|
|
1014
1213
|
}
|
|
1015
1214
|
|
|
1215
|
+
.bg-electric-blue\\/10 {
|
|
1216
|
+
background-color: #3b82f61a;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1220
|
+
.bg-electric-blue\\/10 {
|
|
1221
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
1222
|
+
}
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1016
1225
|
.bg-electric-blue\\/20 {
|
|
1017
1226
|
background-color: #3b82f633;
|
|
1018
1227
|
}
|
|
@@ -1027,6 +1236,16 @@ export {
|
|
|
1027
1236
|
background-color: var(--color-hot-pink);
|
|
1028
1237
|
}
|
|
1029
1238
|
|
|
1239
|
+
.bg-hot-pink\\/10 {
|
|
1240
|
+
background-color: #ec48991a;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1244
|
+
.bg-hot-pink\\/10 {
|
|
1245
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
1246
|
+
}
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1030
1249
|
.bg-neon-green {
|
|
1031
1250
|
background-color: var(--color-neon-green);
|
|
1032
1251
|
}
|
|
@@ -1095,6 +1314,16 @@ export {
|
|
|
1095
1314
|
}
|
|
1096
1315
|
}
|
|
1097
1316
|
|
|
1317
|
+
.bg-primary\\/30 {
|
|
1318
|
+
background-color: #f9b11f4d;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1322
|
+
.bg-primary\\/30 {
|
|
1323
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1324
|
+
}
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1098
1327
|
.bg-transparent {
|
|
1099
1328
|
background-color: #0000;
|
|
1100
1329
|
}
|
|
@@ -1103,6 +1332,16 @@ export {
|
|
|
1103
1332
|
background-color: var(--color-vibrant-purple);
|
|
1104
1333
|
}
|
|
1105
1334
|
|
|
1335
|
+
.bg-vibrant-purple\\/10 {
|
|
1336
|
+
background-color: #a855f71a;
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1340
|
+
.bg-vibrant-purple\\/10 {
|
|
1341
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
1342
|
+
}
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1106
1345
|
.bg-white {
|
|
1107
1346
|
background-color: var(--color-white);
|
|
1108
1347
|
}
|
|
@@ -1179,6 +1418,10 @@ export {
|
|
|
1179
1418
|
padding: calc(var(--spacing) * 3);
|
|
1180
1419
|
}
|
|
1181
1420
|
|
|
1421
|
+
.p-3\\.5 {
|
|
1422
|
+
padding: calc(var(--spacing) * 3.5);
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1182
1425
|
.p-4 {
|
|
1183
1426
|
padding: calc(var(--spacing) * 4);
|
|
1184
1427
|
}
|
|
@@ -1243,6 +1486,10 @@ export {
|
|
|
1243
1486
|
padding-block: calc(var(--spacing) * 3);
|
|
1244
1487
|
}
|
|
1245
1488
|
|
|
1489
|
+
.py-4 {
|
|
1490
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1246
1493
|
.py-6 {
|
|
1247
1494
|
padding-block: calc(var(--spacing) * 6);
|
|
1248
1495
|
}
|
|
@@ -1251,6 +1498,10 @@ export {
|
|
|
1251
1498
|
padding-block: calc(var(--spacing) * 8);
|
|
1252
1499
|
}
|
|
1253
1500
|
|
|
1501
|
+
.pt-3 {
|
|
1502
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1254
1505
|
.pr-1 {
|
|
1255
1506
|
padding-right: calc(var(--spacing) * 1);
|
|
1256
1507
|
}
|
|
@@ -1275,6 +1526,14 @@ export {
|
|
|
1275
1526
|
padding-right: calc(var(--spacing) * 11);
|
|
1276
1527
|
}
|
|
1277
1528
|
|
|
1529
|
+
.pb-1 {
|
|
1530
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
.pb-2 {
|
|
1534
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1278
1537
|
.pl-1\\.5 {
|
|
1279
1538
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1280
1539
|
}
|
|
@@ -1315,6 +1574,10 @@ export {
|
|
|
1315
1574
|
vertical-align: middle;
|
|
1316
1575
|
}
|
|
1317
1576
|
|
|
1577
|
+
.align-top {
|
|
1578
|
+
vertical-align: top;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1318
1581
|
.font-mono {
|
|
1319
1582
|
font-family: var(--font-mono);
|
|
1320
1583
|
}
|
|
@@ -1376,6 +1639,11 @@ export {
|
|
|
1376
1639
|
line-height: calc(var(--spacing) * 6);
|
|
1377
1640
|
}
|
|
1378
1641
|
|
|
1642
|
+
.leading-7 {
|
|
1643
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1644
|
+
line-height: calc(var(--spacing) * 7);
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1379
1647
|
.leading-none {
|
|
1380
1648
|
--tw-leading: 1;
|
|
1381
1649
|
line-height: 1;
|
|
@@ -1406,6 +1674,10 @@ export {
|
|
|
1406
1674
|
letter-spacing: var(--tracking-widest);
|
|
1407
1675
|
}
|
|
1408
1676
|
|
|
1677
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
1678
|
+
overflow-wrap: anywhere;
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1409
1681
|
.break-all {
|
|
1410
1682
|
word-break: break-all;
|
|
1411
1683
|
}
|
|
@@ -1602,6 +1874,10 @@ export {
|
|
|
1602
1874
|
opacity: .7;
|
|
1603
1875
|
}
|
|
1604
1876
|
|
|
1877
|
+
.opacity-100 {
|
|
1878
|
+
opacity: 1;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1605
1881
|
.shadow-hard {
|
|
1606
1882
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
1607
1883
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1845,6 +2121,11 @@ export {
|
|
|
1845
2121
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1846
2122
|
}
|
|
1847
2123
|
|
|
2124
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
2125
|
+
--tw-translate-x: 2px;
|
|
2126
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2127
|
+
}
|
|
2128
|
+
|
|
1848
2129
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
1849
2130
|
--tw-translate-x: 4px;
|
|
1850
2131
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1855,6 +2136,11 @@ export {
|
|
|
1855
2136
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1856
2137
|
}
|
|
1857
2138
|
|
|
2139
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
2140
|
+
--tw-translate-y: 2px;
|
|
2141
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2142
|
+
}
|
|
2143
|
+
|
|
1858
2144
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
1859
2145
|
--tw-translate-y: 4px;
|
|
1860
2146
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1931,6 +2217,10 @@ export {
|
|
|
1931
2217
|
.xl\\:grid-cols-3 {
|
|
1932
2218
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1933
2219
|
}
|
|
2220
|
+
|
|
2221
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
2222
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
2223
|
+
}
|
|
1934
2224
|
}
|
|
1935
2225
|
}
|
|
1936
2226
|
|