@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/json-yaml.mjs
CHANGED
|
@@ -394,6 +394,10 @@ export {
|
|
|
394
394
|
position: relative;
|
|
395
395
|
}
|
|
396
396
|
|
|
397
|
+
.sticky {
|
|
398
|
+
position: sticky;
|
|
399
|
+
}
|
|
400
|
+
|
|
397
401
|
.inset-0 {
|
|
398
402
|
inset: calc(var(--spacing) * 0);
|
|
399
403
|
}
|
|
@@ -406,6 +410,10 @@ export {
|
|
|
406
410
|
inset-inline-end: var(--spacing);
|
|
407
411
|
}
|
|
408
412
|
|
|
413
|
+
.top-0 {
|
|
414
|
+
top: calc(var(--spacing) * 0);
|
|
415
|
+
}
|
|
416
|
+
|
|
409
417
|
.top-1\\/2 {
|
|
410
418
|
top: 50%;
|
|
411
419
|
}
|
|
@@ -418,6 +426,10 @@ export {
|
|
|
418
426
|
left: calc(var(--spacing) * 2);
|
|
419
427
|
}
|
|
420
428
|
|
|
429
|
+
.z-10 {
|
|
430
|
+
z-index: 10;
|
|
431
|
+
}
|
|
432
|
+
|
|
421
433
|
.z-50 {
|
|
422
434
|
z-index: 50;
|
|
423
435
|
}
|
|
@@ -426,6 +438,40 @@ export {
|
|
|
426
438
|
grid-column: span 2 / span 2;
|
|
427
439
|
}
|
|
428
440
|
|
|
441
|
+
.container {
|
|
442
|
+
width: 100%;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
@media (min-width: 40rem) {
|
|
446
|
+
.container {
|
|
447
|
+
max-width: 40rem;
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
@media (min-width: 48rem) {
|
|
452
|
+
.container {
|
|
453
|
+
max-width: 48rem;
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
@media (min-width: 64rem) {
|
|
458
|
+
.container {
|
|
459
|
+
max-width: 64rem;
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
@media (min-width: 80rem) {
|
|
464
|
+
.container {
|
|
465
|
+
max-width: 80rem;
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
@media (min-width: 96rem) {
|
|
470
|
+
.container {
|
|
471
|
+
max-width: 96rem;
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
|
|
429
475
|
.-mx-1 {
|
|
430
476
|
margin-inline: calc(var(--spacing) * -1);
|
|
431
477
|
}
|
|
@@ -450,6 +496,10 @@ export {
|
|
|
450
496
|
margin-top: calc(var(--spacing) * 3);
|
|
451
497
|
}
|
|
452
498
|
|
|
499
|
+
.mt-4 {
|
|
500
|
+
margin-top: calc(var(--spacing) * 4);
|
|
501
|
+
}
|
|
502
|
+
|
|
453
503
|
.mr-1 {
|
|
454
504
|
margin-right: calc(var(--spacing) * 1);
|
|
455
505
|
}
|
|
@@ -478,6 +528,10 @@ export {
|
|
|
478
528
|
margin-bottom: calc(var(--spacing) * 3);
|
|
479
529
|
}
|
|
480
530
|
|
|
531
|
+
.mb-5 {
|
|
532
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
533
|
+
}
|
|
534
|
+
|
|
481
535
|
.ml-0\\.5 {
|
|
482
536
|
margin-left: calc(var(--spacing) * .5);
|
|
483
537
|
}
|
|
@@ -566,6 +620,10 @@ export {
|
|
|
566
620
|
height: calc(var(--spacing) * 10);
|
|
567
621
|
}
|
|
568
622
|
|
|
623
|
+
.h-11 {
|
|
624
|
+
height: calc(var(--spacing) * 11);
|
|
625
|
+
}
|
|
626
|
+
|
|
569
627
|
.h-12 {
|
|
570
628
|
height: calc(var(--spacing) * 12);
|
|
571
629
|
}
|
|
@@ -582,6 +640,10 @@ export {
|
|
|
582
640
|
height: 100%;
|
|
583
641
|
}
|
|
584
642
|
|
|
643
|
+
.max-h-28 {
|
|
644
|
+
max-height: calc(var(--spacing) * 28);
|
|
645
|
+
}
|
|
646
|
+
|
|
585
647
|
.max-h-36 {
|
|
586
648
|
max-height: calc(var(--spacing) * 36);
|
|
587
649
|
}
|
|
@@ -602,6 +664,10 @@ export {
|
|
|
602
664
|
max-height: 200px;
|
|
603
665
|
}
|
|
604
666
|
|
|
667
|
+
.max-h-\\[420px\\] {
|
|
668
|
+
max-height: 420px;
|
|
669
|
+
}
|
|
670
|
+
|
|
605
671
|
.max-h-full {
|
|
606
672
|
max-height: 100%;
|
|
607
673
|
}
|
|
@@ -622,6 +688,22 @@ export {
|
|
|
622
688
|
min-height: 200px;
|
|
623
689
|
}
|
|
624
690
|
|
|
691
|
+
.min-h-\\[260px\\] {
|
|
692
|
+
min-height: 260px;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
.min-h-\\[320px\\] {
|
|
696
|
+
min-height: 320px;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.min-h-full {
|
|
700
|
+
min-height: 100%;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
.w-1 {
|
|
704
|
+
width: calc(var(--spacing) * 1);
|
|
705
|
+
}
|
|
706
|
+
|
|
625
707
|
.w-1\\.5 {
|
|
626
708
|
width: calc(var(--spacing) * 1.5);
|
|
627
709
|
}
|
|
@@ -686,6 +768,10 @@ export {
|
|
|
686
768
|
width: calc(var(--spacing) * 32);
|
|
687
769
|
}
|
|
688
770
|
|
|
771
|
+
.w-56 {
|
|
772
|
+
width: calc(var(--spacing) * 56);
|
|
773
|
+
}
|
|
774
|
+
|
|
689
775
|
.w-72 {
|
|
690
776
|
width: calc(var(--spacing) * 72);
|
|
691
777
|
}
|
|
@@ -694,6 +780,10 @@ export {
|
|
|
694
780
|
width: 100%;
|
|
695
781
|
}
|
|
696
782
|
|
|
783
|
+
.max-w-60 {
|
|
784
|
+
max-width: calc(var(--spacing) * 60);
|
|
785
|
+
}
|
|
786
|
+
|
|
697
787
|
.max-w-70 {
|
|
698
788
|
max-width: calc(var(--spacing) * 70);
|
|
699
789
|
}
|
|
@@ -710,6 +800,10 @@ export {
|
|
|
710
800
|
min-width: calc(var(--spacing) * 0);
|
|
711
801
|
}
|
|
712
802
|
|
|
803
|
+
.min-w-36 {
|
|
804
|
+
min-width: calc(var(--spacing) * 36);
|
|
805
|
+
}
|
|
806
|
+
|
|
713
807
|
.min-w-\\[90px\\] {
|
|
714
808
|
min-width: 90px;
|
|
715
809
|
}
|
|
@@ -726,6 +820,10 @@ export {
|
|
|
726
820
|
flex-shrink: 0;
|
|
727
821
|
}
|
|
728
822
|
|
|
823
|
+
.table-fixed {
|
|
824
|
+
table-layout: fixed;
|
|
825
|
+
}
|
|
826
|
+
|
|
729
827
|
.border-collapse {
|
|
730
828
|
border-collapse: collapse;
|
|
731
829
|
}
|
|
@@ -745,6 +843,10 @@ export {
|
|
|
745
843
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
746
844
|
}
|
|
747
845
|
|
|
846
|
+
.scale-\\[0\\.98\\] {
|
|
847
|
+
scale: .98;
|
|
848
|
+
}
|
|
849
|
+
|
|
748
850
|
.transform {
|
|
749
851
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
750
852
|
}
|
|
@@ -765,6 +867,10 @@ export {
|
|
|
765
867
|
cursor: pointer;
|
|
766
868
|
}
|
|
767
869
|
|
|
870
|
+
.touch-none {
|
|
871
|
+
touch-action: none;
|
|
872
|
+
}
|
|
873
|
+
|
|
768
874
|
.resize {
|
|
769
875
|
resize: both;
|
|
770
876
|
}
|
|
@@ -773,6 +879,10 @@ export {
|
|
|
773
879
|
resize: none;
|
|
774
880
|
}
|
|
775
881
|
|
|
882
|
+
.resize-y {
|
|
883
|
+
resize: vertical;
|
|
884
|
+
}
|
|
885
|
+
|
|
776
886
|
.appearance-none {
|
|
777
887
|
appearance: none;
|
|
778
888
|
}
|
|
@@ -813,6 +923,10 @@ export {
|
|
|
813
923
|
align-items: center;
|
|
814
924
|
}
|
|
815
925
|
|
|
926
|
+
.items-stretch {
|
|
927
|
+
align-items: stretch;
|
|
928
|
+
}
|
|
929
|
+
|
|
816
930
|
.justify-between {
|
|
817
931
|
justify-content: space-between;
|
|
818
932
|
}
|
|
@@ -877,6 +991,12 @@ export {
|
|
|
877
991
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
878
992
|
}
|
|
879
993
|
|
|
994
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
995
|
+
--tw-space-y-reverse: 0;
|
|
996
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
997
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
998
|
+
}
|
|
999
|
+
|
|
880
1000
|
.gap-x-6 {
|
|
881
1001
|
column-gap: calc(var(--spacing) * 6);
|
|
882
1002
|
}
|
|
@@ -899,6 +1019,10 @@ export {
|
|
|
899
1019
|
overflow: hidden;
|
|
900
1020
|
}
|
|
901
1021
|
|
|
1022
|
+
.overflow-x-auto {
|
|
1023
|
+
overflow-x: auto;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
902
1026
|
.overflow-y-auto {
|
|
903
1027
|
overflow-y: auto;
|
|
904
1028
|
}
|
|
@@ -938,6 +1062,11 @@ export {
|
|
|
938
1062
|
border-width: 4px;
|
|
939
1063
|
}
|
|
940
1064
|
|
|
1065
|
+
.border-t-2 {
|
|
1066
|
+
border-top-style: var(--tw-border-style);
|
|
1067
|
+
border-top-width: 2px;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
941
1070
|
.border-r {
|
|
942
1071
|
border-right-style: var(--tw-border-style);
|
|
943
1072
|
border-right-width: 1px;
|
|
@@ -967,10 +1096,30 @@ export {
|
|
|
967
1096
|
border-color: var(--color-black);
|
|
968
1097
|
}
|
|
969
1098
|
|
|
1099
|
+
.border-black\\/30 {
|
|
1100
|
+
border-color: #0000004d;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1104
|
+
.border-black\\/30 {
|
|
1105
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
1106
|
+
}
|
|
1107
|
+
}
|
|
1108
|
+
|
|
970
1109
|
.border-coral-red {
|
|
971
1110
|
border-color: var(--color-coral-red);
|
|
972
1111
|
}
|
|
973
1112
|
|
|
1113
|
+
.border-coral-red\\/30 {
|
|
1114
|
+
border-color: #ff6b6b4d;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1118
|
+
.border-coral-red\\/30 {
|
|
1119
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
1120
|
+
}
|
|
1121
|
+
}
|
|
1122
|
+
|
|
974
1123
|
.border-coral-red\\/40 {
|
|
975
1124
|
border-color: #ff6b6b66;
|
|
976
1125
|
}
|
|
@@ -981,6 +1130,16 @@ export {
|
|
|
981
1130
|
}
|
|
982
1131
|
}
|
|
983
1132
|
|
|
1133
|
+
.border-electric-blue\\/30 {
|
|
1134
|
+
border-color: #3b82f64d;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1138
|
+
.border-electric-blue\\/30 {
|
|
1139
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
1140
|
+
}
|
|
1141
|
+
}
|
|
1142
|
+
|
|
984
1143
|
.border-electric-blue\\/40 {
|
|
985
1144
|
border-color: #3b82f666;
|
|
986
1145
|
}
|
|
@@ -999,10 +1158,30 @@ export {
|
|
|
999
1158
|
border-color: var(--color-gray-700);
|
|
1000
1159
|
}
|
|
1001
1160
|
|
|
1161
|
+
.border-hot-pink\\/30 {
|
|
1162
|
+
border-color: #ec48994d;
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1166
|
+
.border-hot-pink\\/30 {
|
|
1167
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
1168
|
+
}
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1002
1171
|
.border-neon-green {
|
|
1003
1172
|
border-color: var(--color-neon-green);
|
|
1004
1173
|
}
|
|
1005
1174
|
|
|
1175
|
+
.border-neon-green\\/30 {
|
|
1176
|
+
border-color: #84cc164d;
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1180
|
+
.border-neon-green\\/30 {
|
|
1181
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
1182
|
+
}
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1006
1185
|
.border-neon-green\\/40 {
|
|
1007
1186
|
border-color: #84cc1666;
|
|
1008
1187
|
}
|
|
@@ -1017,6 +1196,16 @@ export {
|
|
|
1017
1196
|
border-color: var(--color-primary);
|
|
1018
1197
|
}
|
|
1019
1198
|
|
|
1199
|
+
.border-primary\\/30 {
|
|
1200
|
+
border-color: #f9b11f4d;
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1204
|
+
.border-primary\\/30 {
|
|
1205
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1206
|
+
}
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1020
1209
|
.border-primary\\/40 {
|
|
1021
1210
|
border-color: #f9b11f66;
|
|
1022
1211
|
}
|
|
@@ -1031,6 +1220,16 @@ export {
|
|
|
1031
1220
|
border-color: #0000;
|
|
1032
1221
|
}
|
|
1033
1222
|
|
|
1223
|
+
.border-vibrant-purple\\/30 {
|
|
1224
|
+
border-color: #a855f74d;
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1228
|
+
.border-vibrant-purple\\/30 {
|
|
1229
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
1230
|
+
}
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1034
1233
|
.border-white\\/5 {
|
|
1035
1234
|
border-color: #ffffff0d;
|
|
1036
1235
|
}
|
|
@@ -1127,6 +1326,16 @@ export {
|
|
|
1127
1326
|
background-color: var(--color-electric-blue);
|
|
1128
1327
|
}
|
|
1129
1328
|
|
|
1329
|
+
.bg-electric-blue\\/10 {
|
|
1330
|
+
background-color: #3b82f61a;
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1334
|
+
.bg-electric-blue\\/10 {
|
|
1335
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
1336
|
+
}
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1130
1339
|
.bg-electric-blue\\/20 {
|
|
1131
1340
|
background-color: #3b82f633;
|
|
1132
1341
|
}
|
|
@@ -1141,6 +1350,16 @@ export {
|
|
|
1141
1350
|
background-color: var(--color-hot-pink);
|
|
1142
1351
|
}
|
|
1143
1352
|
|
|
1353
|
+
.bg-hot-pink\\/10 {
|
|
1354
|
+
background-color: #ec48991a;
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1358
|
+
.bg-hot-pink\\/10 {
|
|
1359
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
1360
|
+
}
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1144
1363
|
.bg-neon-green {
|
|
1145
1364
|
background-color: var(--color-neon-green);
|
|
1146
1365
|
}
|
|
@@ -1209,6 +1428,16 @@ export {
|
|
|
1209
1428
|
}
|
|
1210
1429
|
}
|
|
1211
1430
|
|
|
1431
|
+
.bg-primary\\/30 {
|
|
1432
|
+
background-color: #f9b11f4d;
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1436
|
+
.bg-primary\\/30 {
|
|
1437
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1438
|
+
}
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1212
1441
|
.bg-transparent {
|
|
1213
1442
|
background-color: #0000;
|
|
1214
1443
|
}
|
|
@@ -1217,6 +1446,16 @@ export {
|
|
|
1217
1446
|
background-color: var(--color-vibrant-purple);
|
|
1218
1447
|
}
|
|
1219
1448
|
|
|
1449
|
+
.bg-vibrant-purple\\/10 {
|
|
1450
|
+
background-color: #a855f71a;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1454
|
+
.bg-vibrant-purple\\/10 {
|
|
1455
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
1456
|
+
}
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1220
1459
|
.bg-white {
|
|
1221
1460
|
background-color: var(--color-white);
|
|
1222
1461
|
}
|
|
@@ -1293,6 +1532,10 @@ export {
|
|
|
1293
1532
|
padding: calc(var(--spacing) * 3);
|
|
1294
1533
|
}
|
|
1295
1534
|
|
|
1535
|
+
.p-3\\.5 {
|
|
1536
|
+
padding: calc(var(--spacing) * 3.5);
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1296
1539
|
.p-4 {
|
|
1297
1540
|
padding: calc(var(--spacing) * 4);
|
|
1298
1541
|
}
|
|
@@ -1357,6 +1600,10 @@ export {
|
|
|
1357
1600
|
padding-block: calc(var(--spacing) * 3);
|
|
1358
1601
|
}
|
|
1359
1602
|
|
|
1603
|
+
.py-4 {
|
|
1604
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1360
1607
|
.py-6 {
|
|
1361
1608
|
padding-block: calc(var(--spacing) * 6);
|
|
1362
1609
|
}
|
|
@@ -1365,6 +1612,10 @@ export {
|
|
|
1365
1612
|
padding-block: calc(var(--spacing) * 8);
|
|
1366
1613
|
}
|
|
1367
1614
|
|
|
1615
|
+
.pt-3 {
|
|
1616
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1368
1619
|
.pr-1 {
|
|
1369
1620
|
padding-right: calc(var(--spacing) * 1);
|
|
1370
1621
|
}
|
|
@@ -1389,6 +1640,14 @@ export {
|
|
|
1389
1640
|
padding-right: calc(var(--spacing) * 11);
|
|
1390
1641
|
}
|
|
1391
1642
|
|
|
1643
|
+
.pb-1 {
|
|
1644
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
.pb-2 {
|
|
1648
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1392
1651
|
.pl-1\\.5 {
|
|
1393
1652
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1394
1653
|
}
|
|
@@ -1429,6 +1688,10 @@ export {
|
|
|
1429
1688
|
vertical-align: middle;
|
|
1430
1689
|
}
|
|
1431
1690
|
|
|
1691
|
+
.align-top {
|
|
1692
|
+
vertical-align: top;
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1432
1695
|
.font-mono {
|
|
1433
1696
|
font-family: var(--font-mono);
|
|
1434
1697
|
}
|
|
@@ -1490,6 +1753,11 @@ export {
|
|
|
1490
1753
|
line-height: calc(var(--spacing) * 6);
|
|
1491
1754
|
}
|
|
1492
1755
|
|
|
1756
|
+
.leading-7 {
|
|
1757
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1758
|
+
line-height: calc(var(--spacing) * 7);
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1493
1761
|
.leading-none {
|
|
1494
1762
|
--tw-leading: 1;
|
|
1495
1763
|
line-height: 1;
|
|
@@ -1520,6 +1788,10 @@ export {
|
|
|
1520
1788
|
letter-spacing: var(--tracking-widest);
|
|
1521
1789
|
}
|
|
1522
1790
|
|
|
1791
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
1792
|
+
overflow-wrap: anywhere;
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1523
1795
|
.break-all {
|
|
1524
1796
|
word-break: break-all;
|
|
1525
1797
|
}
|
|
@@ -1716,6 +1988,10 @@ export {
|
|
|
1716
1988
|
opacity: .7;
|
|
1717
1989
|
}
|
|
1718
1990
|
|
|
1991
|
+
.opacity-100 {
|
|
1992
|
+
opacity: 1;
|
|
1993
|
+
}
|
|
1994
|
+
|
|
1719
1995
|
.shadow-hard {
|
|
1720
1996
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
1721
1997
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1959,6 +2235,11 @@ export {
|
|
|
1959
2235
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1960
2236
|
}
|
|
1961
2237
|
|
|
2238
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
2239
|
+
--tw-translate-x: 2px;
|
|
2240
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2241
|
+
}
|
|
2242
|
+
|
|
1962
2243
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
1963
2244
|
--tw-translate-x: 4px;
|
|
1964
2245
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1969,6 +2250,11 @@ export {
|
|
|
1969
2250
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1970
2251
|
}
|
|
1971
2252
|
|
|
2253
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
2254
|
+
--tw-translate-y: 2px;
|
|
2255
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2256
|
+
}
|
|
2257
|
+
|
|
1972
2258
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
1973
2259
|
--tw-translate-y: 4px;
|
|
1974
2260
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2045,6 +2331,10 @@ export {
|
|
|
2045
2331
|
.xl\\:grid-cols-3 {
|
|
2046
2332
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2047
2333
|
}
|
|
2334
|
+
|
|
2335
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
2336
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
2337
|
+
}
|
|
2048
2338
|
}
|
|
2049
2339
|
}
|
|
2050
2340
|
|