@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/color-converter.mjs
CHANGED
|
@@ -349,6 +349,10 @@ export {
|
|
|
349
349
|
position: relative;
|
|
350
350
|
}
|
|
351
351
|
|
|
352
|
+
.sticky {
|
|
353
|
+
position: sticky;
|
|
354
|
+
}
|
|
355
|
+
|
|
352
356
|
.inset-0 {
|
|
353
357
|
inset: calc(var(--spacing) * 0);
|
|
354
358
|
}
|
|
@@ -361,6 +365,10 @@ export {
|
|
|
361
365
|
inset-inline-end: var(--spacing);
|
|
362
366
|
}
|
|
363
367
|
|
|
368
|
+
.top-0 {
|
|
369
|
+
top: calc(var(--spacing) * 0);
|
|
370
|
+
}
|
|
371
|
+
|
|
364
372
|
.top-1\\/2 {
|
|
365
373
|
top: 50%;
|
|
366
374
|
}
|
|
@@ -373,6 +381,10 @@ export {
|
|
|
373
381
|
left: calc(var(--spacing) * 2);
|
|
374
382
|
}
|
|
375
383
|
|
|
384
|
+
.z-10 {
|
|
385
|
+
z-index: 10;
|
|
386
|
+
}
|
|
387
|
+
|
|
376
388
|
.z-50 {
|
|
377
389
|
z-index: 50;
|
|
378
390
|
}
|
|
@@ -381,6 +393,40 @@ export {
|
|
|
381
393
|
grid-column: span 2 / span 2;
|
|
382
394
|
}
|
|
383
395
|
|
|
396
|
+
.container {
|
|
397
|
+
width: 100%;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
@media (min-width: 40rem) {
|
|
401
|
+
.container {
|
|
402
|
+
max-width: 40rem;
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
@media (min-width: 48rem) {
|
|
407
|
+
.container {
|
|
408
|
+
max-width: 48rem;
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
@media (min-width: 64rem) {
|
|
413
|
+
.container {
|
|
414
|
+
max-width: 64rem;
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
@media (min-width: 80rem) {
|
|
419
|
+
.container {
|
|
420
|
+
max-width: 80rem;
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
@media (min-width: 96rem) {
|
|
425
|
+
.container {
|
|
426
|
+
max-width: 96rem;
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
|
|
384
430
|
.-mx-1 {
|
|
385
431
|
margin-inline: calc(var(--spacing) * -1);
|
|
386
432
|
}
|
|
@@ -405,6 +451,10 @@ export {
|
|
|
405
451
|
margin-top: calc(var(--spacing) * 3);
|
|
406
452
|
}
|
|
407
453
|
|
|
454
|
+
.mt-4 {
|
|
455
|
+
margin-top: calc(var(--spacing) * 4);
|
|
456
|
+
}
|
|
457
|
+
|
|
408
458
|
.mr-1 {
|
|
409
459
|
margin-right: calc(var(--spacing) * 1);
|
|
410
460
|
}
|
|
@@ -433,6 +483,10 @@ export {
|
|
|
433
483
|
margin-bottom: calc(var(--spacing) * 3);
|
|
434
484
|
}
|
|
435
485
|
|
|
486
|
+
.mb-5 {
|
|
487
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
488
|
+
}
|
|
489
|
+
|
|
436
490
|
.ml-0\\.5 {
|
|
437
491
|
margin-left: calc(var(--spacing) * .5);
|
|
438
492
|
}
|
|
@@ -521,6 +575,10 @@ export {
|
|
|
521
575
|
height: calc(var(--spacing) * 10);
|
|
522
576
|
}
|
|
523
577
|
|
|
578
|
+
.h-11 {
|
|
579
|
+
height: calc(var(--spacing) * 11);
|
|
580
|
+
}
|
|
581
|
+
|
|
524
582
|
.h-12 {
|
|
525
583
|
height: calc(var(--spacing) * 12);
|
|
526
584
|
}
|
|
@@ -537,6 +595,10 @@ export {
|
|
|
537
595
|
height: 100%;
|
|
538
596
|
}
|
|
539
597
|
|
|
598
|
+
.max-h-28 {
|
|
599
|
+
max-height: calc(var(--spacing) * 28);
|
|
600
|
+
}
|
|
601
|
+
|
|
540
602
|
.max-h-36 {
|
|
541
603
|
max-height: calc(var(--spacing) * 36);
|
|
542
604
|
}
|
|
@@ -557,6 +619,10 @@ export {
|
|
|
557
619
|
max-height: 200px;
|
|
558
620
|
}
|
|
559
621
|
|
|
622
|
+
.max-h-\\[420px\\] {
|
|
623
|
+
max-height: 420px;
|
|
624
|
+
}
|
|
625
|
+
|
|
560
626
|
.max-h-full {
|
|
561
627
|
max-height: 100%;
|
|
562
628
|
}
|
|
@@ -577,6 +643,22 @@ export {
|
|
|
577
643
|
min-height: 200px;
|
|
578
644
|
}
|
|
579
645
|
|
|
646
|
+
.min-h-\\[260px\\] {
|
|
647
|
+
min-height: 260px;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
.min-h-\\[320px\\] {
|
|
651
|
+
min-height: 320px;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.min-h-full {
|
|
655
|
+
min-height: 100%;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.w-1 {
|
|
659
|
+
width: calc(var(--spacing) * 1);
|
|
660
|
+
}
|
|
661
|
+
|
|
580
662
|
.w-1\\.5 {
|
|
581
663
|
width: calc(var(--spacing) * 1.5);
|
|
582
664
|
}
|
|
@@ -641,6 +723,10 @@ export {
|
|
|
641
723
|
width: calc(var(--spacing) * 32);
|
|
642
724
|
}
|
|
643
725
|
|
|
726
|
+
.w-56 {
|
|
727
|
+
width: calc(var(--spacing) * 56);
|
|
728
|
+
}
|
|
729
|
+
|
|
644
730
|
.w-72 {
|
|
645
731
|
width: calc(var(--spacing) * 72);
|
|
646
732
|
}
|
|
@@ -649,6 +735,10 @@ export {
|
|
|
649
735
|
width: 100%;
|
|
650
736
|
}
|
|
651
737
|
|
|
738
|
+
.max-w-60 {
|
|
739
|
+
max-width: calc(var(--spacing) * 60);
|
|
740
|
+
}
|
|
741
|
+
|
|
652
742
|
.max-w-70 {
|
|
653
743
|
max-width: calc(var(--spacing) * 70);
|
|
654
744
|
}
|
|
@@ -665,6 +755,10 @@ export {
|
|
|
665
755
|
min-width: calc(var(--spacing) * 0);
|
|
666
756
|
}
|
|
667
757
|
|
|
758
|
+
.min-w-36 {
|
|
759
|
+
min-width: calc(var(--spacing) * 36);
|
|
760
|
+
}
|
|
761
|
+
|
|
668
762
|
.min-w-\\[90px\\] {
|
|
669
763
|
min-width: 90px;
|
|
670
764
|
}
|
|
@@ -681,6 +775,10 @@ export {
|
|
|
681
775
|
flex-shrink: 0;
|
|
682
776
|
}
|
|
683
777
|
|
|
778
|
+
.table-fixed {
|
|
779
|
+
table-layout: fixed;
|
|
780
|
+
}
|
|
781
|
+
|
|
684
782
|
.border-collapse {
|
|
685
783
|
border-collapse: collapse;
|
|
686
784
|
}
|
|
@@ -700,6 +798,10 @@ export {
|
|
|
700
798
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
701
799
|
}
|
|
702
800
|
|
|
801
|
+
.scale-\\[0\\.98\\] {
|
|
802
|
+
scale: .98;
|
|
803
|
+
}
|
|
804
|
+
|
|
703
805
|
.transform {
|
|
704
806
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
705
807
|
}
|
|
@@ -720,6 +822,10 @@ export {
|
|
|
720
822
|
cursor: pointer;
|
|
721
823
|
}
|
|
722
824
|
|
|
825
|
+
.touch-none {
|
|
826
|
+
touch-action: none;
|
|
827
|
+
}
|
|
828
|
+
|
|
723
829
|
.resize {
|
|
724
830
|
resize: both;
|
|
725
831
|
}
|
|
@@ -728,6 +834,10 @@ export {
|
|
|
728
834
|
resize: none;
|
|
729
835
|
}
|
|
730
836
|
|
|
837
|
+
.resize-y {
|
|
838
|
+
resize: vertical;
|
|
839
|
+
}
|
|
840
|
+
|
|
731
841
|
.appearance-none {
|
|
732
842
|
appearance: none;
|
|
733
843
|
}
|
|
@@ -768,6 +878,10 @@ export {
|
|
|
768
878
|
align-items: center;
|
|
769
879
|
}
|
|
770
880
|
|
|
881
|
+
.items-stretch {
|
|
882
|
+
align-items: stretch;
|
|
883
|
+
}
|
|
884
|
+
|
|
771
885
|
.justify-between {
|
|
772
886
|
justify-content: space-between;
|
|
773
887
|
}
|
|
@@ -832,6 +946,12 @@ export {
|
|
|
832
946
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
833
947
|
}
|
|
834
948
|
|
|
949
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
950
|
+
--tw-space-y-reverse: 0;
|
|
951
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
952
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
953
|
+
}
|
|
954
|
+
|
|
835
955
|
.gap-x-6 {
|
|
836
956
|
column-gap: calc(var(--spacing) * 6);
|
|
837
957
|
}
|
|
@@ -854,6 +974,10 @@ export {
|
|
|
854
974
|
overflow: hidden;
|
|
855
975
|
}
|
|
856
976
|
|
|
977
|
+
.overflow-x-auto {
|
|
978
|
+
overflow-x: auto;
|
|
979
|
+
}
|
|
980
|
+
|
|
857
981
|
.overflow-y-auto {
|
|
858
982
|
overflow-y: auto;
|
|
859
983
|
}
|
|
@@ -893,6 +1017,11 @@ export {
|
|
|
893
1017
|
border-width: 4px;
|
|
894
1018
|
}
|
|
895
1019
|
|
|
1020
|
+
.border-t-2 {
|
|
1021
|
+
border-top-style: var(--tw-border-style);
|
|
1022
|
+
border-top-width: 2px;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
896
1025
|
.border-r {
|
|
897
1026
|
border-right-style: var(--tw-border-style);
|
|
898
1027
|
border-right-width: 1px;
|
|
@@ -922,10 +1051,30 @@ export {
|
|
|
922
1051
|
border-color: var(--color-black);
|
|
923
1052
|
}
|
|
924
1053
|
|
|
1054
|
+
.border-black\\/30 {
|
|
1055
|
+
border-color: #0000004d;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1059
|
+
.border-black\\/30 {
|
|
1060
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
1061
|
+
}
|
|
1062
|
+
}
|
|
1063
|
+
|
|
925
1064
|
.border-coral-red {
|
|
926
1065
|
border-color: var(--color-coral-red);
|
|
927
1066
|
}
|
|
928
1067
|
|
|
1068
|
+
.border-coral-red\\/30 {
|
|
1069
|
+
border-color: #ff6b6b4d;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1073
|
+
.border-coral-red\\/30 {
|
|
1074
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
1075
|
+
}
|
|
1076
|
+
}
|
|
1077
|
+
|
|
929
1078
|
.border-coral-red\\/40 {
|
|
930
1079
|
border-color: #ff6b6b66;
|
|
931
1080
|
}
|
|
@@ -936,6 +1085,16 @@ export {
|
|
|
936
1085
|
}
|
|
937
1086
|
}
|
|
938
1087
|
|
|
1088
|
+
.border-electric-blue\\/30 {
|
|
1089
|
+
border-color: #3b82f64d;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1093
|
+
.border-electric-blue\\/30 {
|
|
1094
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
1095
|
+
}
|
|
1096
|
+
}
|
|
1097
|
+
|
|
939
1098
|
.border-electric-blue\\/40 {
|
|
940
1099
|
border-color: #3b82f666;
|
|
941
1100
|
}
|
|
@@ -954,10 +1113,30 @@ export {
|
|
|
954
1113
|
border-color: var(--color-gray-700);
|
|
955
1114
|
}
|
|
956
1115
|
|
|
1116
|
+
.border-hot-pink\\/30 {
|
|
1117
|
+
border-color: #ec48994d;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1121
|
+
.border-hot-pink\\/30 {
|
|
1122
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
1123
|
+
}
|
|
1124
|
+
}
|
|
1125
|
+
|
|
957
1126
|
.border-neon-green {
|
|
958
1127
|
border-color: var(--color-neon-green);
|
|
959
1128
|
}
|
|
960
1129
|
|
|
1130
|
+
.border-neon-green\\/30 {
|
|
1131
|
+
border-color: #84cc164d;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1135
|
+
.border-neon-green\\/30 {
|
|
1136
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
|
|
961
1140
|
.border-neon-green\\/40 {
|
|
962
1141
|
border-color: #84cc1666;
|
|
963
1142
|
}
|
|
@@ -972,6 +1151,16 @@ export {
|
|
|
972
1151
|
border-color: var(--color-primary);
|
|
973
1152
|
}
|
|
974
1153
|
|
|
1154
|
+
.border-primary\\/30 {
|
|
1155
|
+
border-color: #f9b11f4d;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1159
|
+
.border-primary\\/30 {
|
|
1160
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1161
|
+
}
|
|
1162
|
+
}
|
|
1163
|
+
|
|
975
1164
|
.border-primary\\/40 {
|
|
976
1165
|
border-color: #f9b11f66;
|
|
977
1166
|
}
|
|
@@ -986,6 +1175,16 @@ export {
|
|
|
986
1175
|
border-color: #0000;
|
|
987
1176
|
}
|
|
988
1177
|
|
|
1178
|
+
.border-vibrant-purple\\/30 {
|
|
1179
|
+
border-color: #a855f74d;
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1183
|
+
.border-vibrant-purple\\/30 {
|
|
1184
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
1185
|
+
}
|
|
1186
|
+
}
|
|
1187
|
+
|
|
989
1188
|
.border-white\\/5 {
|
|
990
1189
|
border-color: #ffffff0d;
|
|
991
1190
|
}
|
|
@@ -1082,6 +1281,16 @@ export {
|
|
|
1082
1281
|
background-color: var(--color-electric-blue);
|
|
1083
1282
|
}
|
|
1084
1283
|
|
|
1284
|
+
.bg-electric-blue\\/10 {
|
|
1285
|
+
background-color: #3b82f61a;
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1289
|
+
.bg-electric-blue\\/10 {
|
|
1290
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1085
1294
|
.bg-electric-blue\\/20 {
|
|
1086
1295
|
background-color: #3b82f633;
|
|
1087
1296
|
}
|
|
@@ -1096,6 +1305,16 @@ export {
|
|
|
1096
1305
|
background-color: var(--color-hot-pink);
|
|
1097
1306
|
}
|
|
1098
1307
|
|
|
1308
|
+
.bg-hot-pink\\/10 {
|
|
1309
|
+
background-color: #ec48991a;
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1313
|
+
.bg-hot-pink\\/10 {
|
|
1314
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
1315
|
+
}
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1099
1318
|
.bg-neon-green {
|
|
1100
1319
|
background-color: var(--color-neon-green);
|
|
1101
1320
|
}
|
|
@@ -1164,6 +1383,16 @@ export {
|
|
|
1164
1383
|
}
|
|
1165
1384
|
}
|
|
1166
1385
|
|
|
1386
|
+
.bg-primary\\/30 {
|
|
1387
|
+
background-color: #f9b11f4d;
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1391
|
+
.bg-primary\\/30 {
|
|
1392
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1393
|
+
}
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1167
1396
|
.bg-transparent {
|
|
1168
1397
|
background-color: #0000;
|
|
1169
1398
|
}
|
|
@@ -1172,6 +1401,16 @@ export {
|
|
|
1172
1401
|
background-color: var(--color-vibrant-purple);
|
|
1173
1402
|
}
|
|
1174
1403
|
|
|
1404
|
+
.bg-vibrant-purple\\/10 {
|
|
1405
|
+
background-color: #a855f71a;
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1409
|
+
.bg-vibrant-purple\\/10 {
|
|
1410
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
1411
|
+
}
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1175
1414
|
.bg-white {
|
|
1176
1415
|
background-color: var(--color-white);
|
|
1177
1416
|
}
|
|
@@ -1248,6 +1487,10 @@ export {
|
|
|
1248
1487
|
padding: calc(var(--spacing) * 3);
|
|
1249
1488
|
}
|
|
1250
1489
|
|
|
1490
|
+
.p-3\\.5 {
|
|
1491
|
+
padding: calc(var(--spacing) * 3.5);
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1251
1494
|
.p-4 {
|
|
1252
1495
|
padding: calc(var(--spacing) * 4);
|
|
1253
1496
|
}
|
|
@@ -1312,6 +1555,10 @@ export {
|
|
|
1312
1555
|
padding-block: calc(var(--spacing) * 3);
|
|
1313
1556
|
}
|
|
1314
1557
|
|
|
1558
|
+
.py-4 {
|
|
1559
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1315
1562
|
.py-6 {
|
|
1316
1563
|
padding-block: calc(var(--spacing) * 6);
|
|
1317
1564
|
}
|
|
@@ -1320,6 +1567,10 @@ export {
|
|
|
1320
1567
|
padding-block: calc(var(--spacing) * 8);
|
|
1321
1568
|
}
|
|
1322
1569
|
|
|
1570
|
+
.pt-3 {
|
|
1571
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1323
1574
|
.pr-1 {
|
|
1324
1575
|
padding-right: calc(var(--spacing) * 1);
|
|
1325
1576
|
}
|
|
@@ -1344,6 +1595,14 @@ export {
|
|
|
1344
1595
|
padding-right: calc(var(--spacing) * 11);
|
|
1345
1596
|
}
|
|
1346
1597
|
|
|
1598
|
+
.pb-1 {
|
|
1599
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
.pb-2 {
|
|
1603
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1347
1606
|
.pl-1\\.5 {
|
|
1348
1607
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1349
1608
|
}
|
|
@@ -1384,6 +1643,10 @@ export {
|
|
|
1384
1643
|
vertical-align: middle;
|
|
1385
1644
|
}
|
|
1386
1645
|
|
|
1646
|
+
.align-top {
|
|
1647
|
+
vertical-align: top;
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1387
1650
|
.font-mono {
|
|
1388
1651
|
font-family: var(--font-mono);
|
|
1389
1652
|
}
|
|
@@ -1445,6 +1708,11 @@ export {
|
|
|
1445
1708
|
line-height: calc(var(--spacing) * 6);
|
|
1446
1709
|
}
|
|
1447
1710
|
|
|
1711
|
+
.leading-7 {
|
|
1712
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1713
|
+
line-height: calc(var(--spacing) * 7);
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1448
1716
|
.leading-none {
|
|
1449
1717
|
--tw-leading: 1;
|
|
1450
1718
|
line-height: 1;
|
|
@@ -1475,6 +1743,10 @@ export {
|
|
|
1475
1743
|
letter-spacing: var(--tracking-widest);
|
|
1476
1744
|
}
|
|
1477
1745
|
|
|
1746
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
1747
|
+
overflow-wrap: anywhere;
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1478
1750
|
.break-all {
|
|
1479
1751
|
word-break: break-all;
|
|
1480
1752
|
}
|
|
@@ -1671,6 +1943,10 @@ export {
|
|
|
1671
1943
|
opacity: .7;
|
|
1672
1944
|
}
|
|
1673
1945
|
|
|
1946
|
+
.opacity-100 {
|
|
1947
|
+
opacity: 1;
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1674
1950
|
.shadow-hard {
|
|
1675
1951
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
1676
1952
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1914,6 +2190,11 @@ export {
|
|
|
1914
2190
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1915
2191
|
}
|
|
1916
2192
|
|
|
2193
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
2194
|
+
--tw-translate-x: 2px;
|
|
2195
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2196
|
+
}
|
|
2197
|
+
|
|
1917
2198
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
1918
2199
|
--tw-translate-x: 4px;
|
|
1919
2200
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1924,6 +2205,11 @@ export {
|
|
|
1924
2205
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1925
2206
|
}
|
|
1926
2207
|
|
|
2208
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
2209
|
+
--tw-translate-y: 2px;
|
|
2210
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2211
|
+
}
|
|
2212
|
+
|
|
1927
2213
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
1928
2214
|
--tw-translate-y: 4px;
|
|
1929
2215
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2000,6 +2286,10 @@ export {
|
|
|
2000
2286
|
.xl\\:grid-cols-3 {
|
|
2001
2287
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2002
2288
|
}
|
|
2289
|
+
|
|
2290
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
2291
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
2292
|
+
}
|
|
2003
2293
|
}
|
|
2004
2294
|
}
|
|
2005
2295
|
|