@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/lorem-ipsum.mjs
CHANGED
|
@@ -384,6 +384,10 @@ export {
|
|
|
384
384
|
position: relative;
|
|
385
385
|
}
|
|
386
386
|
|
|
387
|
+
.sticky {
|
|
388
|
+
position: sticky;
|
|
389
|
+
}
|
|
390
|
+
|
|
387
391
|
.inset-0 {
|
|
388
392
|
inset: calc(var(--spacing) * 0);
|
|
389
393
|
}
|
|
@@ -396,6 +400,10 @@ export {
|
|
|
396
400
|
inset-inline-end: var(--spacing);
|
|
397
401
|
}
|
|
398
402
|
|
|
403
|
+
.top-0 {
|
|
404
|
+
top: calc(var(--spacing) * 0);
|
|
405
|
+
}
|
|
406
|
+
|
|
399
407
|
.top-1\\/2 {
|
|
400
408
|
top: 50%;
|
|
401
409
|
}
|
|
@@ -408,6 +416,10 @@ export {
|
|
|
408
416
|
left: calc(var(--spacing) * 2);
|
|
409
417
|
}
|
|
410
418
|
|
|
419
|
+
.z-10 {
|
|
420
|
+
z-index: 10;
|
|
421
|
+
}
|
|
422
|
+
|
|
411
423
|
.z-50 {
|
|
412
424
|
z-index: 50;
|
|
413
425
|
}
|
|
@@ -416,6 +428,40 @@ export {
|
|
|
416
428
|
grid-column: span 2 / span 2;
|
|
417
429
|
}
|
|
418
430
|
|
|
431
|
+
.container {
|
|
432
|
+
width: 100%;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
@media (min-width: 40rem) {
|
|
436
|
+
.container {
|
|
437
|
+
max-width: 40rem;
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
@media (min-width: 48rem) {
|
|
442
|
+
.container {
|
|
443
|
+
max-width: 48rem;
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
@media (min-width: 64rem) {
|
|
448
|
+
.container {
|
|
449
|
+
max-width: 64rem;
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
@media (min-width: 80rem) {
|
|
454
|
+
.container {
|
|
455
|
+
max-width: 80rem;
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
@media (min-width: 96rem) {
|
|
460
|
+
.container {
|
|
461
|
+
max-width: 96rem;
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
|
|
419
465
|
.-mx-1 {
|
|
420
466
|
margin-inline: calc(var(--spacing) * -1);
|
|
421
467
|
}
|
|
@@ -440,6 +486,10 @@ export {
|
|
|
440
486
|
margin-top: calc(var(--spacing) * 3);
|
|
441
487
|
}
|
|
442
488
|
|
|
489
|
+
.mt-4 {
|
|
490
|
+
margin-top: calc(var(--spacing) * 4);
|
|
491
|
+
}
|
|
492
|
+
|
|
443
493
|
.mr-1 {
|
|
444
494
|
margin-right: calc(var(--spacing) * 1);
|
|
445
495
|
}
|
|
@@ -468,6 +518,10 @@ export {
|
|
|
468
518
|
margin-bottom: calc(var(--spacing) * 3);
|
|
469
519
|
}
|
|
470
520
|
|
|
521
|
+
.mb-5 {
|
|
522
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
523
|
+
}
|
|
524
|
+
|
|
471
525
|
.ml-0\\.5 {
|
|
472
526
|
margin-left: calc(var(--spacing) * .5);
|
|
473
527
|
}
|
|
@@ -556,6 +610,10 @@ export {
|
|
|
556
610
|
height: calc(var(--spacing) * 10);
|
|
557
611
|
}
|
|
558
612
|
|
|
613
|
+
.h-11 {
|
|
614
|
+
height: calc(var(--spacing) * 11);
|
|
615
|
+
}
|
|
616
|
+
|
|
559
617
|
.h-12 {
|
|
560
618
|
height: calc(var(--spacing) * 12);
|
|
561
619
|
}
|
|
@@ -572,6 +630,10 @@ export {
|
|
|
572
630
|
height: 100%;
|
|
573
631
|
}
|
|
574
632
|
|
|
633
|
+
.max-h-28 {
|
|
634
|
+
max-height: calc(var(--spacing) * 28);
|
|
635
|
+
}
|
|
636
|
+
|
|
575
637
|
.max-h-36 {
|
|
576
638
|
max-height: calc(var(--spacing) * 36);
|
|
577
639
|
}
|
|
@@ -592,6 +654,10 @@ export {
|
|
|
592
654
|
max-height: 200px;
|
|
593
655
|
}
|
|
594
656
|
|
|
657
|
+
.max-h-\\[420px\\] {
|
|
658
|
+
max-height: 420px;
|
|
659
|
+
}
|
|
660
|
+
|
|
595
661
|
.max-h-full {
|
|
596
662
|
max-height: 100%;
|
|
597
663
|
}
|
|
@@ -612,6 +678,22 @@ export {
|
|
|
612
678
|
min-height: 200px;
|
|
613
679
|
}
|
|
614
680
|
|
|
681
|
+
.min-h-\\[260px\\] {
|
|
682
|
+
min-height: 260px;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.min-h-\\[320px\\] {
|
|
686
|
+
min-height: 320px;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.min-h-full {
|
|
690
|
+
min-height: 100%;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.w-1 {
|
|
694
|
+
width: calc(var(--spacing) * 1);
|
|
695
|
+
}
|
|
696
|
+
|
|
615
697
|
.w-1\\.5 {
|
|
616
698
|
width: calc(var(--spacing) * 1.5);
|
|
617
699
|
}
|
|
@@ -676,6 +758,10 @@ export {
|
|
|
676
758
|
width: calc(var(--spacing) * 32);
|
|
677
759
|
}
|
|
678
760
|
|
|
761
|
+
.w-56 {
|
|
762
|
+
width: calc(var(--spacing) * 56);
|
|
763
|
+
}
|
|
764
|
+
|
|
679
765
|
.w-72 {
|
|
680
766
|
width: calc(var(--spacing) * 72);
|
|
681
767
|
}
|
|
@@ -684,6 +770,10 @@ export {
|
|
|
684
770
|
width: 100%;
|
|
685
771
|
}
|
|
686
772
|
|
|
773
|
+
.max-w-60 {
|
|
774
|
+
max-width: calc(var(--spacing) * 60);
|
|
775
|
+
}
|
|
776
|
+
|
|
687
777
|
.max-w-70 {
|
|
688
778
|
max-width: calc(var(--spacing) * 70);
|
|
689
779
|
}
|
|
@@ -700,6 +790,10 @@ export {
|
|
|
700
790
|
min-width: calc(var(--spacing) * 0);
|
|
701
791
|
}
|
|
702
792
|
|
|
793
|
+
.min-w-36 {
|
|
794
|
+
min-width: calc(var(--spacing) * 36);
|
|
795
|
+
}
|
|
796
|
+
|
|
703
797
|
.min-w-\\[90px\\] {
|
|
704
798
|
min-width: 90px;
|
|
705
799
|
}
|
|
@@ -716,6 +810,10 @@ export {
|
|
|
716
810
|
flex-shrink: 0;
|
|
717
811
|
}
|
|
718
812
|
|
|
813
|
+
.table-fixed {
|
|
814
|
+
table-layout: fixed;
|
|
815
|
+
}
|
|
816
|
+
|
|
719
817
|
.border-collapse {
|
|
720
818
|
border-collapse: collapse;
|
|
721
819
|
}
|
|
@@ -735,6 +833,10 @@ export {
|
|
|
735
833
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
736
834
|
}
|
|
737
835
|
|
|
836
|
+
.scale-\\[0\\.98\\] {
|
|
837
|
+
scale: .98;
|
|
838
|
+
}
|
|
839
|
+
|
|
738
840
|
.transform {
|
|
739
841
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
740
842
|
}
|
|
@@ -755,6 +857,10 @@ export {
|
|
|
755
857
|
cursor: pointer;
|
|
756
858
|
}
|
|
757
859
|
|
|
860
|
+
.touch-none {
|
|
861
|
+
touch-action: none;
|
|
862
|
+
}
|
|
863
|
+
|
|
758
864
|
.resize {
|
|
759
865
|
resize: both;
|
|
760
866
|
}
|
|
@@ -763,6 +869,10 @@ export {
|
|
|
763
869
|
resize: none;
|
|
764
870
|
}
|
|
765
871
|
|
|
872
|
+
.resize-y {
|
|
873
|
+
resize: vertical;
|
|
874
|
+
}
|
|
875
|
+
|
|
766
876
|
.appearance-none {
|
|
767
877
|
appearance: none;
|
|
768
878
|
}
|
|
@@ -803,6 +913,10 @@ export {
|
|
|
803
913
|
align-items: center;
|
|
804
914
|
}
|
|
805
915
|
|
|
916
|
+
.items-stretch {
|
|
917
|
+
align-items: stretch;
|
|
918
|
+
}
|
|
919
|
+
|
|
806
920
|
.justify-between {
|
|
807
921
|
justify-content: space-between;
|
|
808
922
|
}
|
|
@@ -867,6 +981,12 @@ export {
|
|
|
867
981
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
868
982
|
}
|
|
869
983
|
|
|
984
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
985
|
+
--tw-space-y-reverse: 0;
|
|
986
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
987
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
988
|
+
}
|
|
989
|
+
|
|
870
990
|
.gap-x-6 {
|
|
871
991
|
column-gap: calc(var(--spacing) * 6);
|
|
872
992
|
}
|
|
@@ -889,6 +1009,10 @@ export {
|
|
|
889
1009
|
overflow: hidden;
|
|
890
1010
|
}
|
|
891
1011
|
|
|
1012
|
+
.overflow-x-auto {
|
|
1013
|
+
overflow-x: auto;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
892
1016
|
.overflow-y-auto {
|
|
893
1017
|
overflow-y: auto;
|
|
894
1018
|
}
|
|
@@ -928,6 +1052,11 @@ export {
|
|
|
928
1052
|
border-width: 4px;
|
|
929
1053
|
}
|
|
930
1054
|
|
|
1055
|
+
.border-t-2 {
|
|
1056
|
+
border-top-style: var(--tw-border-style);
|
|
1057
|
+
border-top-width: 2px;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
931
1060
|
.border-r {
|
|
932
1061
|
border-right-style: var(--tw-border-style);
|
|
933
1062
|
border-right-width: 1px;
|
|
@@ -957,10 +1086,30 @@ export {
|
|
|
957
1086
|
border-color: var(--color-black);
|
|
958
1087
|
}
|
|
959
1088
|
|
|
1089
|
+
.border-black\\/30 {
|
|
1090
|
+
border-color: #0000004d;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1094
|
+
.border-black\\/30 {
|
|
1095
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
1096
|
+
}
|
|
1097
|
+
}
|
|
1098
|
+
|
|
960
1099
|
.border-coral-red {
|
|
961
1100
|
border-color: var(--color-coral-red);
|
|
962
1101
|
}
|
|
963
1102
|
|
|
1103
|
+
.border-coral-red\\/30 {
|
|
1104
|
+
border-color: #ff6b6b4d;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1108
|
+
.border-coral-red\\/30 {
|
|
1109
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
1110
|
+
}
|
|
1111
|
+
}
|
|
1112
|
+
|
|
964
1113
|
.border-coral-red\\/40 {
|
|
965
1114
|
border-color: #ff6b6b66;
|
|
966
1115
|
}
|
|
@@ -971,6 +1120,16 @@ export {
|
|
|
971
1120
|
}
|
|
972
1121
|
}
|
|
973
1122
|
|
|
1123
|
+
.border-electric-blue\\/30 {
|
|
1124
|
+
border-color: #3b82f64d;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1128
|
+
.border-electric-blue\\/30 {
|
|
1129
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
1130
|
+
}
|
|
1131
|
+
}
|
|
1132
|
+
|
|
974
1133
|
.border-electric-blue\\/40 {
|
|
975
1134
|
border-color: #3b82f666;
|
|
976
1135
|
}
|
|
@@ -989,10 +1148,30 @@ export {
|
|
|
989
1148
|
border-color: var(--color-gray-700);
|
|
990
1149
|
}
|
|
991
1150
|
|
|
1151
|
+
.border-hot-pink\\/30 {
|
|
1152
|
+
border-color: #ec48994d;
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1156
|
+
.border-hot-pink\\/30 {
|
|
1157
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
1158
|
+
}
|
|
1159
|
+
}
|
|
1160
|
+
|
|
992
1161
|
.border-neon-green {
|
|
993
1162
|
border-color: var(--color-neon-green);
|
|
994
1163
|
}
|
|
995
1164
|
|
|
1165
|
+
.border-neon-green\\/30 {
|
|
1166
|
+
border-color: #84cc164d;
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1170
|
+
.border-neon-green\\/30 {
|
|
1171
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
1172
|
+
}
|
|
1173
|
+
}
|
|
1174
|
+
|
|
996
1175
|
.border-neon-green\\/40 {
|
|
997
1176
|
border-color: #84cc1666;
|
|
998
1177
|
}
|
|
@@ -1007,6 +1186,16 @@ export {
|
|
|
1007
1186
|
border-color: var(--color-primary);
|
|
1008
1187
|
}
|
|
1009
1188
|
|
|
1189
|
+
.border-primary\\/30 {
|
|
1190
|
+
border-color: #f9b11f4d;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1194
|
+
.border-primary\\/30 {
|
|
1195
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1196
|
+
}
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1010
1199
|
.border-primary\\/40 {
|
|
1011
1200
|
border-color: #f9b11f66;
|
|
1012
1201
|
}
|
|
@@ -1021,6 +1210,16 @@ export {
|
|
|
1021
1210
|
border-color: #0000;
|
|
1022
1211
|
}
|
|
1023
1212
|
|
|
1213
|
+
.border-vibrant-purple\\/30 {
|
|
1214
|
+
border-color: #a855f74d;
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1218
|
+
.border-vibrant-purple\\/30 {
|
|
1219
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
1220
|
+
}
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1024
1223
|
.border-white\\/5 {
|
|
1025
1224
|
border-color: #ffffff0d;
|
|
1026
1225
|
}
|
|
@@ -1117,6 +1316,16 @@ export {
|
|
|
1117
1316
|
background-color: var(--color-electric-blue);
|
|
1118
1317
|
}
|
|
1119
1318
|
|
|
1319
|
+
.bg-electric-blue\\/10 {
|
|
1320
|
+
background-color: #3b82f61a;
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1324
|
+
.bg-electric-blue\\/10 {
|
|
1325
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
1326
|
+
}
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1120
1329
|
.bg-electric-blue\\/20 {
|
|
1121
1330
|
background-color: #3b82f633;
|
|
1122
1331
|
}
|
|
@@ -1131,6 +1340,16 @@ export {
|
|
|
1131
1340
|
background-color: var(--color-hot-pink);
|
|
1132
1341
|
}
|
|
1133
1342
|
|
|
1343
|
+
.bg-hot-pink\\/10 {
|
|
1344
|
+
background-color: #ec48991a;
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1348
|
+
.bg-hot-pink\\/10 {
|
|
1349
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
1350
|
+
}
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1134
1353
|
.bg-neon-green {
|
|
1135
1354
|
background-color: var(--color-neon-green);
|
|
1136
1355
|
}
|
|
@@ -1199,6 +1418,16 @@ export {
|
|
|
1199
1418
|
}
|
|
1200
1419
|
}
|
|
1201
1420
|
|
|
1421
|
+
.bg-primary\\/30 {
|
|
1422
|
+
background-color: #f9b11f4d;
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1426
|
+
.bg-primary\\/30 {
|
|
1427
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1428
|
+
}
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1202
1431
|
.bg-transparent {
|
|
1203
1432
|
background-color: #0000;
|
|
1204
1433
|
}
|
|
@@ -1207,6 +1436,16 @@ export {
|
|
|
1207
1436
|
background-color: var(--color-vibrant-purple);
|
|
1208
1437
|
}
|
|
1209
1438
|
|
|
1439
|
+
.bg-vibrant-purple\\/10 {
|
|
1440
|
+
background-color: #a855f71a;
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1444
|
+
.bg-vibrant-purple\\/10 {
|
|
1445
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
1446
|
+
}
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1210
1449
|
.bg-white {
|
|
1211
1450
|
background-color: var(--color-white);
|
|
1212
1451
|
}
|
|
@@ -1283,6 +1522,10 @@ export {
|
|
|
1283
1522
|
padding: calc(var(--spacing) * 3);
|
|
1284
1523
|
}
|
|
1285
1524
|
|
|
1525
|
+
.p-3\\.5 {
|
|
1526
|
+
padding: calc(var(--spacing) * 3.5);
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1286
1529
|
.p-4 {
|
|
1287
1530
|
padding: calc(var(--spacing) * 4);
|
|
1288
1531
|
}
|
|
@@ -1347,6 +1590,10 @@ export {
|
|
|
1347
1590
|
padding-block: calc(var(--spacing) * 3);
|
|
1348
1591
|
}
|
|
1349
1592
|
|
|
1593
|
+
.py-4 {
|
|
1594
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1350
1597
|
.py-6 {
|
|
1351
1598
|
padding-block: calc(var(--spacing) * 6);
|
|
1352
1599
|
}
|
|
@@ -1355,6 +1602,10 @@ export {
|
|
|
1355
1602
|
padding-block: calc(var(--spacing) * 8);
|
|
1356
1603
|
}
|
|
1357
1604
|
|
|
1605
|
+
.pt-3 {
|
|
1606
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1358
1609
|
.pr-1 {
|
|
1359
1610
|
padding-right: calc(var(--spacing) * 1);
|
|
1360
1611
|
}
|
|
@@ -1379,6 +1630,14 @@ export {
|
|
|
1379
1630
|
padding-right: calc(var(--spacing) * 11);
|
|
1380
1631
|
}
|
|
1381
1632
|
|
|
1633
|
+
.pb-1 {
|
|
1634
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
.pb-2 {
|
|
1638
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1382
1641
|
.pl-1\\.5 {
|
|
1383
1642
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1384
1643
|
}
|
|
@@ -1419,6 +1678,10 @@ export {
|
|
|
1419
1678
|
vertical-align: middle;
|
|
1420
1679
|
}
|
|
1421
1680
|
|
|
1681
|
+
.align-top {
|
|
1682
|
+
vertical-align: top;
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1422
1685
|
.font-mono {
|
|
1423
1686
|
font-family: var(--font-mono);
|
|
1424
1687
|
}
|
|
@@ -1480,6 +1743,11 @@ export {
|
|
|
1480
1743
|
line-height: calc(var(--spacing) * 6);
|
|
1481
1744
|
}
|
|
1482
1745
|
|
|
1746
|
+
.leading-7 {
|
|
1747
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1748
|
+
line-height: calc(var(--spacing) * 7);
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1483
1751
|
.leading-none {
|
|
1484
1752
|
--tw-leading: 1;
|
|
1485
1753
|
line-height: 1;
|
|
@@ -1510,6 +1778,10 @@ export {
|
|
|
1510
1778
|
letter-spacing: var(--tracking-widest);
|
|
1511
1779
|
}
|
|
1512
1780
|
|
|
1781
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
1782
|
+
overflow-wrap: anywhere;
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1513
1785
|
.break-all {
|
|
1514
1786
|
word-break: break-all;
|
|
1515
1787
|
}
|
|
@@ -1706,6 +1978,10 @@ export {
|
|
|
1706
1978
|
opacity: .7;
|
|
1707
1979
|
}
|
|
1708
1980
|
|
|
1981
|
+
.opacity-100 {
|
|
1982
|
+
opacity: 1;
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1709
1985
|
.shadow-hard {
|
|
1710
1986
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
1711
1987
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1949,6 +2225,11 @@ export {
|
|
|
1949
2225
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1950
2226
|
}
|
|
1951
2227
|
|
|
2228
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
2229
|
+
--tw-translate-x: 2px;
|
|
2230
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2231
|
+
}
|
|
2232
|
+
|
|
1952
2233
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
1953
2234
|
--tw-translate-x: 4px;
|
|
1954
2235
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1959,6 +2240,11 @@ export {
|
|
|
1959
2240
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1960
2241
|
}
|
|
1961
2242
|
|
|
2243
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
2244
|
+
--tw-translate-y: 2px;
|
|
2245
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2246
|
+
}
|
|
2247
|
+
|
|
1962
2248
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
1963
2249
|
--tw-translate-y: 4px;
|
|
1964
2250
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2035,6 +2321,10 @@ export {
|
|
|
2035
2321
|
.xl\\:grid-cols-3 {
|
|
2036
2322
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2037
2323
|
}
|
|
2324
|
+
|
|
2325
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
2326
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
2327
|
+
}
|
|
2038
2328
|
}
|
|
2039
2329
|
}
|
|
2040
2330
|
|