@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/html-entity.mjs
CHANGED
|
@@ -325,6 +325,10 @@ export {
|
|
|
325
325
|
position: relative;
|
|
326
326
|
}
|
|
327
327
|
|
|
328
|
+
.sticky {
|
|
329
|
+
position: sticky;
|
|
330
|
+
}
|
|
331
|
+
|
|
328
332
|
.inset-0 {
|
|
329
333
|
inset: calc(var(--spacing) * 0);
|
|
330
334
|
}
|
|
@@ -337,6 +341,10 @@ export {
|
|
|
337
341
|
inset-inline-end: var(--spacing);
|
|
338
342
|
}
|
|
339
343
|
|
|
344
|
+
.top-0 {
|
|
345
|
+
top: calc(var(--spacing) * 0);
|
|
346
|
+
}
|
|
347
|
+
|
|
340
348
|
.top-1\\/2 {
|
|
341
349
|
top: 50%;
|
|
342
350
|
}
|
|
@@ -349,6 +357,10 @@ export {
|
|
|
349
357
|
left: calc(var(--spacing) * 2);
|
|
350
358
|
}
|
|
351
359
|
|
|
360
|
+
.z-10 {
|
|
361
|
+
z-index: 10;
|
|
362
|
+
}
|
|
363
|
+
|
|
352
364
|
.z-50 {
|
|
353
365
|
z-index: 50;
|
|
354
366
|
}
|
|
@@ -357,6 +369,40 @@ export {
|
|
|
357
369
|
grid-column: span 2 / span 2;
|
|
358
370
|
}
|
|
359
371
|
|
|
372
|
+
.container {
|
|
373
|
+
width: 100%;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
@media (min-width: 40rem) {
|
|
377
|
+
.container {
|
|
378
|
+
max-width: 40rem;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
@media (min-width: 48rem) {
|
|
383
|
+
.container {
|
|
384
|
+
max-width: 48rem;
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
@media (min-width: 64rem) {
|
|
389
|
+
.container {
|
|
390
|
+
max-width: 64rem;
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
@media (min-width: 80rem) {
|
|
395
|
+
.container {
|
|
396
|
+
max-width: 80rem;
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
@media (min-width: 96rem) {
|
|
401
|
+
.container {
|
|
402
|
+
max-width: 96rem;
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
|
|
360
406
|
.-mx-1 {
|
|
361
407
|
margin-inline: calc(var(--spacing) * -1);
|
|
362
408
|
}
|
|
@@ -381,6 +427,10 @@ export {
|
|
|
381
427
|
margin-top: calc(var(--spacing) * 3);
|
|
382
428
|
}
|
|
383
429
|
|
|
430
|
+
.mt-4 {
|
|
431
|
+
margin-top: calc(var(--spacing) * 4);
|
|
432
|
+
}
|
|
433
|
+
|
|
384
434
|
.mr-1 {
|
|
385
435
|
margin-right: calc(var(--spacing) * 1);
|
|
386
436
|
}
|
|
@@ -409,6 +459,10 @@ export {
|
|
|
409
459
|
margin-bottom: calc(var(--spacing) * 3);
|
|
410
460
|
}
|
|
411
461
|
|
|
462
|
+
.mb-5 {
|
|
463
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
464
|
+
}
|
|
465
|
+
|
|
412
466
|
.ml-0\\.5 {
|
|
413
467
|
margin-left: calc(var(--spacing) * .5);
|
|
414
468
|
}
|
|
@@ -497,6 +551,10 @@ export {
|
|
|
497
551
|
height: calc(var(--spacing) * 10);
|
|
498
552
|
}
|
|
499
553
|
|
|
554
|
+
.h-11 {
|
|
555
|
+
height: calc(var(--spacing) * 11);
|
|
556
|
+
}
|
|
557
|
+
|
|
500
558
|
.h-12 {
|
|
501
559
|
height: calc(var(--spacing) * 12);
|
|
502
560
|
}
|
|
@@ -513,6 +571,10 @@ export {
|
|
|
513
571
|
height: 100%;
|
|
514
572
|
}
|
|
515
573
|
|
|
574
|
+
.max-h-28 {
|
|
575
|
+
max-height: calc(var(--spacing) * 28);
|
|
576
|
+
}
|
|
577
|
+
|
|
516
578
|
.max-h-36 {
|
|
517
579
|
max-height: calc(var(--spacing) * 36);
|
|
518
580
|
}
|
|
@@ -533,6 +595,10 @@ export {
|
|
|
533
595
|
max-height: 200px;
|
|
534
596
|
}
|
|
535
597
|
|
|
598
|
+
.max-h-\\[420px\\] {
|
|
599
|
+
max-height: 420px;
|
|
600
|
+
}
|
|
601
|
+
|
|
536
602
|
.max-h-full {
|
|
537
603
|
max-height: 100%;
|
|
538
604
|
}
|
|
@@ -553,6 +619,22 @@ export {
|
|
|
553
619
|
min-height: 200px;
|
|
554
620
|
}
|
|
555
621
|
|
|
622
|
+
.min-h-\\[260px\\] {
|
|
623
|
+
min-height: 260px;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.min-h-\\[320px\\] {
|
|
627
|
+
min-height: 320px;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.min-h-full {
|
|
631
|
+
min-height: 100%;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.w-1 {
|
|
635
|
+
width: calc(var(--spacing) * 1);
|
|
636
|
+
}
|
|
637
|
+
|
|
556
638
|
.w-1\\.5 {
|
|
557
639
|
width: calc(var(--spacing) * 1.5);
|
|
558
640
|
}
|
|
@@ -617,6 +699,10 @@ export {
|
|
|
617
699
|
width: calc(var(--spacing) * 32);
|
|
618
700
|
}
|
|
619
701
|
|
|
702
|
+
.w-56 {
|
|
703
|
+
width: calc(var(--spacing) * 56);
|
|
704
|
+
}
|
|
705
|
+
|
|
620
706
|
.w-72 {
|
|
621
707
|
width: calc(var(--spacing) * 72);
|
|
622
708
|
}
|
|
@@ -625,6 +711,10 @@ export {
|
|
|
625
711
|
width: 100%;
|
|
626
712
|
}
|
|
627
713
|
|
|
714
|
+
.max-w-60 {
|
|
715
|
+
max-width: calc(var(--spacing) * 60);
|
|
716
|
+
}
|
|
717
|
+
|
|
628
718
|
.max-w-70 {
|
|
629
719
|
max-width: calc(var(--spacing) * 70);
|
|
630
720
|
}
|
|
@@ -641,6 +731,10 @@ export {
|
|
|
641
731
|
min-width: calc(var(--spacing) * 0);
|
|
642
732
|
}
|
|
643
733
|
|
|
734
|
+
.min-w-36 {
|
|
735
|
+
min-width: calc(var(--spacing) * 36);
|
|
736
|
+
}
|
|
737
|
+
|
|
644
738
|
.min-w-\\[90px\\] {
|
|
645
739
|
min-width: 90px;
|
|
646
740
|
}
|
|
@@ -657,6 +751,10 @@ export {
|
|
|
657
751
|
flex-shrink: 0;
|
|
658
752
|
}
|
|
659
753
|
|
|
754
|
+
.table-fixed {
|
|
755
|
+
table-layout: fixed;
|
|
756
|
+
}
|
|
757
|
+
|
|
660
758
|
.border-collapse {
|
|
661
759
|
border-collapse: collapse;
|
|
662
760
|
}
|
|
@@ -676,6 +774,10 @@ export {
|
|
|
676
774
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
677
775
|
}
|
|
678
776
|
|
|
777
|
+
.scale-\\[0\\.98\\] {
|
|
778
|
+
scale: .98;
|
|
779
|
+
}
|
|
780
|
+
|
|
679
781
|
.transform {
|
|
680
782
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
681
783
|
}
|
|
@@ -696,6 +798,10 @@ export {
|
|
|
696
798
|
cursor: pointer;
|
|
697
799
|
}
|
|
698
800
|
|
|
801
|
+
.touch-none {
|
|
802
|
+
touch-action: none;
|
|
803
|
+
}
|
|
804
|
+
|
|
699
805
|
.resize {
|
|
700
806
|
resize: both;
|
|
701
807
|
}
|
|
@@ -704,6 +810,10 @@ export {
|
|
|
704
810
|
resize: none;
|
|
705
811
|
}
|
|
706
812
|
|
|
813
|
+
.resize-y {
|
|
814
|
+
resize: vertical;
|
|
815
|
+
}
|
|
816
|
+
|
|
707
817
|
.appearance-none {
|
|
708
818
|
appearance: none;
|
|
709
819
|
}
|
|
@@ -744,6 +854,10 @@ export {
|
|
|
744
854
|
align-items: center;
|
|
745
855
|
}
|
|
746
856
|
|
|
857
|
+
.items-stretch {
|
|
858
|
+
align-items: stretch;
|
|
859
|
+
}
|
|
860
|
+
|
|
747
861
|
.justify-between {
|
|
748
862
|
justify-content: space-between;
|
|
749
863
|
}
|
|
@@ -808,6 +922,12 @@ export {
|
|
|
808
922
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
809
923
|
}
|
|
810
924
|
|
|
925
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
926
|
+
--tw-space-y-reverse: 0;
|
|
927
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
928
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
929
|
+
}
|
|
930
|
+
|
|
811
931
|
.gap-x-6 {
|
|
812
932
|
column-gap: calc(var(--spacing) * 6);
|
|
813
933
|
}
|
|
@@ -830,6 +950,10 @@ export {
|
|
|
830
950
|
overflow: hidden;
|
|
831
951
|
}
|
|
832
952
|
|
|
953
|
+
.overflow-x-auto {
|
|
954
|
+
overflow-x: auto;
|
|
955
|
+
}
|
|
956
|
+
|
|
833
957
|
.overflow-y-auto {
|
|
834
958
|
overflow-y: auto;
|
|
835
959
|
}
|
|
@@ -869,6 +993,11 @@ export {
|
|
|
869
993
|
border-width: 4px;
|
|
870
994
|
}
|
|
871
995
|
|
|
996
|
+
.border-t-2 {
|
|
997
|
+
border-top-style: var(--tw-border-style);
|
|
998
|
+
border-top-width: 2px;
|
|
999
|
+
}
|
|
1000
|
+
|
|
872
1001
|
.border-r {
|
|
873
1002
|
border-right-style: var(--tw-border-style);
|
|
874
1003
|
border-right-width: 1px;
|
|
@@ -898,10 +1027,30 @@ export {
|
|
|
898
1027
|
border-color: var(--color-black);
|
|
899
1028
|
}
|
|
900
1029
|
|
|
1030
|
+
.border-black\\/30 {
|
|
1031
|
+
border-color: #0000004d;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1035
|
+
.border-black\\/30 {
|
|
1036
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
1037
|
+
}
|
|
1038
|
+
}
|
|
1039
|
+
|
|
901
1040
|
.border-coral-red {
|
|
902
1041
|
border-color: var(--color-coral-red);
|
|
903
1042
|
}
|
|
904
1043
|
|
|
1044
|
+
.border-coral-red\\/30 {
|
|
1045
|
+
border-color: #ff6b6b4d;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1049
|
+
.border-coral-red\\/30 {
|
|
1050
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
1051
|
+
}
|
|
1052
|
+
}
|
|
1053
|
+
|
|
905
1054
|
.border-coral-red\\/40 {
|
|
906
1055
|
border-color: #ff6b6b66;
|
|
907
1056
|
}
|
|
@@ -912,6 +1061,16 @@ export {
|
|
|
912
1061
|
}
|
|
913
1062
|
}
|
|
914
1063
|
|
|
1064
|
+
.border-electric-blue\\/30 {
|
|
1065
|
+
border-color: #3b82f64d;
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1069
|
+
.border-electric-blue\\/30 {
|
|
1070
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
1071
|
+
}
|
|
1072
|
+
}
|
|
1073
|
+
|
|
915
1074
|
.border-electric-blue\\/40 {
|
|
916
1075
|
border-color: #3b82f666;
|
|
917
1076
|
}
|
|
@@ -930,10 +1089,30 @@ export {
|
|
|
930
1089
|
border-color: var(--color-gray-700);
|
|
931
1090
|
}
|
|
932
1091
|
|
|
1092
|
+
.border-hot-pink\\/30 {
|
|
1093
|
+
border-color: #ec48994d;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1097
|
+
.border-hot-pink\\/30 {
|
|
1098
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
1099
|
+
}
|
|
1100
|
+
}
|
|
1101
|
+
|
|
933
1102
|
.border-neon-green {
|
|
934
1103
|
border-color: var(--color-neon-green);
|
|
935
1104
|
}
|
|
936
1105
|
|
|
1106
|
+
.border-neon-green\\/30 {
|
|
1107
|
+
border-color: #84cc164d;
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1111
|
+
.border-neon-green\\/30 {
|
|
1112
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
1113
|
+
}
|
|
1114
|
+
}
|
|
1115
|
+
|
|
937
1116
|
.border-neon-green\\/40 {
|
|
938
1117
|
border-color: #84cc1666;
|
|
939
1118
|
}
|
|
@@ -948,6 +1127,16 @@ export {
|
|
|
948
1127
|
border-color: var(--color-primary);
|
|
949
1128
|
}
|
|
950
1129
|
|
|
1130
|
+
.border-primary\\/30 {
|
|
1131
|
+
border-color: #f9b11f4d;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1135
|
+
.border-primary\\/30 {
|
|
1136
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
|
|
951
1140
|
.border-primary\\/40 {
|
|
952
1141
|
border-color: #f9b11f66;
|
|
953
1142
|
}
|
|
@@ -962,6 +1151,16 @@ export {
|
|
|
962
1151
|
border-color: #0000;
|
|
963
1152
|
}
|
|
964
1153
|
|
|
1154
|
+
.border-vibrant-purple\\/30 {
|
|
1155
|
+
border-color: #a855f74d;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1159
|
+
.border-vibrant-purple\\/30 {
|
|
1160
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
1161
|
+
}
|
|
1162
|
+
}
|
|
1163
|
+
|
|
965
1164
|
.border-white\\/5 {
|
|
966
1165
|
border-color: #ffffff0d;
|
|
967
1166
|
}
|
|
@@ -1058,6 +1257,16 @@ export {
|
|
|
1058
1257
|
background-color: var(--color-electric-blue);
|
|
1059
1258
|
}
|
|
1060
1259
|
|
|
1260
|
+
.bg-electric-blue\\/10 {
|
|
1261
|
+
background-color: #3b82f61a;
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1265
|
+
.bg-electric-blue\\/10 {
|
|
1266
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1061
1270
|
.bg-electric-blue\\/20 {
|
|
1062
1271
|
background-color: #3b82f633;
|
|
1063
1272
|
}
|
|
@@ -1072,6 +1281,16 @@ export {
|
|
|
1072
1281
|
background-color: var(--color-hot-pink);
|
|
1073
1282
|
}
|
|
1074
1283
|
|
|
1284
|
+
.bg-hot-pink\\/10 {
|
|
1285
|
+
background-color: #ec48991a;
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1289
|
+
.bg-hot-pink\\/10 {
|
|
1290
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1075
1294
|
.bg-neon-green {
|
|
1076
1295
|
background-color: var(--color-neon-green);
|
|
1077
1296
|
}
|
|
@@ -1140,6 +1359,16 @@ export {
|
|
|
1140
1359
|
}
|
|
1141
1360
|
}
|
|
1142
1361
|
|
|
1362
|
+
.bg-primary\\/30 {
|
|
1363
|
+
background-color: #f9b11f4d;
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1367
|
+
.bg-primary\\/30 {
|
|
1368
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1369
|
+
}
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1143
1372
|
.bg-transparent {
|
|
1144
1373
|
background-color: #0000;
|
|
1145
1374
|
}
|
|
@@ -1148,6 +1377,16 @@ export {
|
|
|
1148
1377
|
background-color: var(--color-vibrant-purple);
|
|
1149
1378
|
}
|
|
1150
1379
|
|
|
1380
|
+
.bg-vibrant-purple\\/10 {
|
|
1381
|
+
background-color: #a855f71a;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1385
|
+
.bg-vibrant-purple\\/10 {
|
|
1386
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
1387
|
+
}
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1151
1390
|
.bg-white {
|
|
1152
1391
|
background-color: var(--color-white);
|
|
1153
1392
|
}
|
|
@@ -1224,6 +1463,10 @@ export {
|
|
|
1224
1463
|
padding: calc(var(--spacing) * 3);
|
|
1225
1464
|
}
|
|
1226
1465
|
|
|
1466
|
+
.p-3\\.5 {
|
|
1467
|
+
padding: calc(var(--spacing) * 3.5);
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1227
1470
|
.p-4 {
|
|
1228
1471
|
padding: calc(var(--spacing) * 4);
|
|
1229
1472
|
}
|
|
@@ -1288,6 +1531,10 @@ export {
|
|
|
1288
1531
|
padding-block: calc(var(--spacing) * 3);
|
|
1289
1532
|
}
|
|
1290
1533
|
|
|
1534
|
+
.py-4 {
|
|
1535
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1291
1538
|
.py-6 {
|
|
1292
1539
|
padding-block: calc(var(--spacing) * 6);
|
|
1293
1540
|
}
|
|
@@ -1296,6 +1543,10 @@ export {
|
|
|
1296
1543
|
padding-block: calc(var(--spacing) * 8);
|
|
1297
1544
|
}
|
|
1298
1545
|
|
|
1546
|
+
.pt-3 {
|
|
1547
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1299
1550
|
.pr-1 {
|
|
1300
1551
|
padding-right: calc(var(--spacing) * 1);
|
|
1301
1552
|
}
|
|
@@ -1320,6 +1571,14 @@ export {
|
|
|
1320
1571
|
padding-right: calc(var(--spacing) * 11);
|
|
1321
1572
|
}
|
|
1322
1573
|
|
|
1574
|
+
.pb-1 {
|
|
1575
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
.pb-2 {
|
|
1579
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1323
1582
|
.pl-1\\.5 {
|
|
1324
1583
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1325
1584
|
}
|
|
@@ -1360,6 +1619,10 @@ export {
|
|
|
1360
1619
|
vertical-align: middle;
|
|
1361
1620
|
}
|
|
1362
1621
|
|
|
1622
|
+
.align-top {
|
|
1623
|
+
vertical-align: top;
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1363
1626
|
.font-mono {
|
|
1364
1627
|
font-family: var(--font-mono);
|
|
1365
1628
|
}
|
|
@@ -1421,6 +1684,11 @@ export {
|
|
|
1421
1684
|
line-height: calc(var(--spacing) * 6);
|
|
1422
1685
|
}
|
|
1423
1686
|
|
|
1687
|
+
.leading-7 {
|
|
1688
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1689
|
+
line-height: calc(var(--spacing) * 7);
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1424
1692
|
.leading-none {
|
|
1425
1693
|
--tw-leading: 1;
|
|
1426
1694
|
line-height: 1;
|
|
@@ -1451,6 +1719,10 @@ export {
|
|
|
1451
1719
|
letter-spacing: var(--tracking-widest);
|
|
1452
1720
|
}
|
|
1453
1721
|
|
|
1722
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
1723
|
+
overflow-wrap: anywhere;
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1454
1726
|
.break-all {
|
|
1455
1727
|
word-break: break-all;
|
|
1456
1728
|
}
|
|
@@ -1647,6 +1919,10 @@ export {
|
|
|
1647
1919
|
opacity: .7;
|
|
1648
1920
|
}
|
|
1649
1921
|
|
|
1922
|
+
.opacity-100 {
|
|
1923
|
+
opacity: 1;
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1650
1926
|
.shadow-hard {
|
|
1651
1927
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
1652
1928
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1890,6 +2166,11 @@ export {
|
|
|
1890
2166
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1891
2167
|
}
|
|
1892
2168
|
|
|
2169
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
2170
|
+
--tw-translate-x: 2px;
|
|
2171
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2172
|
+
}
|
|
2173
|
+
|
|
1893
2174
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
1894
2175
|
--tw-translate-x: 4px;
|
|
1895
2176
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1900,6 +2181,11 @@ export {
|
|
|
1900
2181
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1901
2182
|
}
|
|
1902
2183
|
|
|
2184
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
2185
|
+
--tw-translate-y: 2px;
|
|
2186
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2187
|
+
}
|
|
2188
|
+
|
|
1903
2189
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
1904
2190
|
--tw-translate-y: 4px;
|
|
1905
2191
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1976,6 +2262,10 @@ export {
|
|
|
1976
2262
|
.xl\\:grid-cols-3 {
|
|
1977
2263
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1978
2264
|
}
|
|
2265
|
+
|
|
2266
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
2267
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
2268
|
+
}
|
|
1979
2269
|
}
|
|
1980
2270
|
}
|
|
1981
2271
|
|