@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/base-converter.mjs
CHANGED
|
@@ -471,6 +471,10 @@ export {
|
|
|
471
471
|
position: relative;
|
|
472
472
|
}
|
|
473
473
|
|
|
474
|
+
.sticky {
|
|
475
|
+
position: sticky;
|
|
476
|
+
}
|
|
477
|
+
|
|
474
478
|
.inset-0 {
|
|
475
479
|
inset: calc(var(--spacing) * 0);
|
|
476
480
|
}
|
|
@@ -483,6 +487,10 @@ export {
|
|
|
483
487
|
inset-inline-end: var(--spacing);
|
|
484
488
|
}
|
|
485
489
|
|
|
490
|
+
.top-0 {
|
|
491
|
+
top: calc(var(--spacing) * 0);
|
|
492
|
+
}
|
|
493
|
+
|
|
486
494
|
.top-1\\/2 {
|
|
487
495
|
top: 50%;
|
|
488
496
|
}
|
|
@@ -495,6 +503,10 @@ export {
|
|
|
495
503
|
left: calc(var(--spacing) * 2);
|
|
496
504
|
}
|
|
497
505
|
|
|
506
|
+
.z-10 {
|
|
507
|
+
z-index: 10;
|
|
508
|
+
}
|
|
509
|
+
|
|
498
510
|
.z-50 {
|
|
499
511
|
z-index: 50;
|
|
500
512
|
}
|
|
@@ -503,6 +515,40 @@ export {
|
|
|
503
515
|
grid-column: span 2 / span 2;
|
|
504
516
|
}
|
|
505
517
|
|
|
518
|
+
.container {
|
|
519
|
+
width: 100%;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
@media (min-width: 40rem) {
|
|
523
|
+
.container {
|
|
524
|
+
max-width: 40rem;
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
@media (min-width: 48rem) {
|
|
529
|
+
.container {
|
|
530
|
+
max-width: 48rem;
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
@media (min-width: 64rem) {
|
|
535
|
+
.container {
|
|
536
|
+
max-width: 64rem;
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
@media (min-width: 80rem) {
|
|
541
|
+
.container {
|
|
542
|
+
max-width: 80rem;
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
@media (min-width: 96rem) {
|
|
547
|
+
.container {
|
|
548
|
+
max-width: 96rem;
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
|
|
506
552
|
.-mx-1 {
|
|
507
553
|
margin-inline: calc(var(--spacing) * -1);
|
|
508
554
|
}
|
|
@@ -527,6 +573,10 @@ export {
|
|
|
527
573
|
margin-top: calc(var(--spacing) * 3);
|
|
528
574
|
}
|
|
529
575
|
|
|
576
|
+
.mt-4 {
|
|
577
|
+
margin-top: calc(var(--spacing) * 4);
|
|
578
|
+
}
|
|
579
|
+
|
|
530
580
|
.mr-1 {
|
|
531
581
|
margin-right: calc(var(--spacing) * 1);
|
|
532
582
|
}
|
|
@@ -555,6 +605,10 @@ export {
|
|
|
555
605
|
margin-bottom: calc(var(--spacing) * 3);
|
|
556
606
|
}
|
|
557
607
|
|
|
608
|
+
.mb-5 {
|
|
609
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
610
|
+
}
|
|
611
|
+
|
|
558
612
|
.ml-0\\.5 {
|
|
559
613
|
margin-left: calc(var(--spacing) * .5);
|
|
560
614
|
}
|
|
@@ -643,6 +697,10 @@ export {
|
|
|
643
697
|
height: calc(var(--spacing) * 10);
|
|
644
698
|
}
|
|
645
699
|
|
|
700
|
+
.h-11 {
|
|
701
|
+
height: calc(var(--spacing) * 11);
|
|
702
|
+
}
|
|
703
|
+
|
|
646
704
|
.h-12 {
|
|
647
705
|
height: calc(var(--spacing) * 12);
|
|
648
706
|
}
|
|
@@ -659,6 +717,10 @@ export {
|
|
|
659
717
|
height: 100%;
|
|
660
718
|
}
|
|
661
719
|
|
|
720
|
+
.max-h-28 {
|
|
721
|
+
max-height: calc(var(--spacing) * 28);
|
|
722
|
+
}
|
|
723
|
+
|
|
662
724
|
.max-h-36 {
|
|
663
725
|
max-height: calc(var(--spacing) * 36);
|
|
664
726
|
}
|
|
@@ -679,6 +741,10 @@ export {
|
|
|
679
741
|
max-height: 200px;
|
|
680
742
|
}
|
|
681
743
|
|
|
744
|
+
.max-h-\\[420px\\] {
|
|
745
|
+
max-height: 420px;
|
|
746
|
+
}
|
|
747
|
+
|
|
682
748
|
.max-h-full {
|
|
683
749
|
max-height: 100%;
|
|
684
750
|
}
|
|
@@ -699,6 +765,22 @@ export {
|
|
|
699
765
|
min-height: 200px;
|
|
700
766
|
}
|
|
701
767
|
|
|
768
|
+
.min-h-\\[260px\\] {
|
|
769
|
+
min-height: 260px;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.min-h-\\[320px\\] {
|
|
773
|
+
min-height: 320px;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.min-h-full {
|
|
777
|
+
min-height: 100%;
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.w-1 {
|
|
781
|
+
width: calc(var(--spacing) * 1);
|
|
782
|
+
}
|
|
783
|
+
|
|
702
784
|
.w-1\\.5 {
|
|
703
785
|
width: calc(var(--spacing) * 1.5);
|
|
704
786
|
}
|
|
@@ -763,6 +845,10 @@ export {
|
|
|
763
845
|
width: calc(var(--spacing) * 32);
|
|
764
846
|
}
|
|
765
847
|
|
|
848
|
+
.w-56 {
|
|
849
|
+
width: calc(var(--spacing) * 56);
|
|
850
|
+
}
|
|
851
|
+
|
|
766
852
|
.w-72 {
|
|
767
853
|
width: calc(var(--spacing) * 72);
|
|
768
854
|
}
|
|
@@ -771,6 +857,10 @@ export {
|
|
|
771
857
|
width: 100%;
|
|
772
858
|
}
|
|
773
859
|
|
|
860
|
+
.max-w-60 {
|
|
861
|
+
max-width: calc(var(--spacing) * 60);
|
|
862
|
+
}
|
|
863
|
+
|
|
774
864
|
.max-w-70 {
|
|
775
865
|
max-width: calc(var(--spacing) * 70);
|
|
776
866
|
}
|
|
@@ -787,6 +877,10 @@ export {
|
|
|
787
877
|
min-width: calc(var(--spacing) * 0);
|
|
788
878
|
}
|
|
789
879
|
|
|
880
|
+
.min-w-36 {
|
|
881
|
+
min-width: calc(var(--spacing) * 36);
|
|
882
|
+
}
|
|
883
|
+
|
|
790
884
|
.min-w-\\[90px\\] {
|
|
791
885
|
min-width: 90px;
|
|
792
886
|
}
|
|
@@ -803,6 +897,10 @@ export {
|
|
|
803
897
|
flex-shrink: 0;
|
|
804
898
|
}
|
|
805
899
|
|
|
900
|
+
.table-fixed {
|
|
901
|
+
table-layout: fixed;
|
|
902
|
+
}
|
|
903
|
+
|
|
806
904
|
.border-collapse {
|
|
807
905
|
border-collapse: collapse;
|
|
808
906
|
}
|
|
@@ -822,6 +920,10 @@ export {
|
|
|
822
920
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
823
921
|
}
|
|
824
922
|
|
|
923
|
+
.scale-\\[0\\.98\\] {
|
|
924
|
+
scale: .98;
|
|
925
|
+
}
|
|
926
|
+
|
|
825
927
|
.transform {
|
|
826
928
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
827
929
|
}
|
|
@@ -842,6 +944,10 @@ export {
|
|
|
842
944
|
cursor: pointer;
|
|
843
945
|
}
|
|
844
946
|
|
|
947
|
+
.touch-none {
|
|
948
|
+
touch-action: none;
|
|
949
|
+
}
|
|
950
|
+
|
|
845
951
|
.resize {
|
|
846
952
|
resize: both;
|
|
847
953
|
}
|
|
@@ -850,6 +956,10 @@ export {
|
|
|
850
956
|
resize: none;
|
|
851
957
|
}
|
|
852
958
|
|
|
959
|
+
.resize-y {
|
|
960
|
+
resize: vertical;
|
|
961
|
+
}
|
|
962
|
+
|
|
853
963
|
.appearance-none {
|
|
854
964
|
appearance: none;
|
|
855
965
|
}
|
|
@@ -890,6 +1000,10 @@ export {
|
|
|
890
1000
|
align-items: center;
|
|
891
1001
|
}
|
|
892
1002
|
|
|
1003
|
+
.items-stretch {
|
|
1004
|
+
align-items: stretch;
|
|
1005
|
+
}
|
|
1006
|
+
|
|
893
1007
|
.justify-between {
|
|
894
1008
|
justify-content: space-between;
|
|
895
1009
|
}
|
|
@@ -954,6 +1068,12 @@ export {
|
|
|
954
1068
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
955
1069
|
}
|
|
956
1070
|
|
|
1071
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
1072
|
+
--tw-space-y-reverse: 0;
|
|
1073
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
1074
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
1075
|
+
}
|
|
1076
|
+
|
|
957
1077
|
.gap-x-6 {
|
|
958
1078
|
column-gap: calc(var(--spacing) * 6);
|
|
959
1079
|
}
|
|
@@ -976,6 +1096,10 @@ export {
|
|
|
976
1096
|
overflow: hidden;
|
|
977
1097
|
}
|
|
978
1098
|
|
|
1099
|
+
.overflow-x-auto {
|
|
1100
|
+
overflow-x: auto;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
979
1103
|
.overflow-y-auto {
|
|
980
1104
|
overflow-y: auto;
|
|
981
1105
|
}
|
|
@@ -1015,6 +1139,11 @@ export {
|
|
|
1015
1139
|
border-width: 4px;
|
|
1016
1140
|
}
|
|
1017
1141
|
|
|
1142
|
+
.border-t-2 {
|
|
1143
|
+
border-top-style: var(--tw-border-style);
|
|
1144
|
+
border-top-width: 2px;
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1018
1147
|
.border-r {
|
|
1019
1148
|
border-right-style: var(--tw-border-style);
|
|
1020
1149
|
border-right-width: 1px;
|
|
@@ -1044,10 +1173,30 @@ export {
|
|
|
1044
1173
|
border-color: var(--color-black);
|
|
1045
1174
|
}
|
|
1046
1175
|
|
|
1176
|
+
.border-black\\/30 {
|
|
1177
|
+
border-color: #0000004d;
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1181
|
+
.border-black\\/30 {
|
|
1182
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
1183
|
+
}
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1047
1186
|
.border-coral-red {
|
|
1048
1187
|
border-color: var(--color-coral-red);
|
|
1049
1188
|
}
|
|
1050
1189
|
|
|
1190
|
+
.border-coral-red\\/30 {
|
|
1191
|
+
border-color: #ff6b6b4d;
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1195
|
+
.border-coral-red\\/30 {
|
|
1196
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1051
1200
|
.border-coral-red\\/40 {
|
|
1052
1201
|
border-color: #ff6b6b66;
|
|
1053
1202
|
}
|
|
@@ -1058,6 +1207,16 @@ export {
|
|
|
1058
1207
|
}
|
|
1059
1208
|
}
|
|
1060
1209
|
|
|
1210
|
+
.border-electric-blue\\/30 {
|
|
1211
|
+
border-color: #3b82f64d;
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1215
|
+
.border-electric-blue\\/30 {
|
|
1216
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1061
1220
|
.border-electric-blue\\/40 {
|
|
1062
1221
|
border-color: #3b82f666;
|
|
1063
1222
|
}
|
|
@@ -1076,10 +1235,30 @@ export {
|
|
|
1076
1235
|
border-color: var(--color-gray-700);
|
|
1077
1236
|
}
|
|
1078
1237
|
|
|
1238
|
+
.border-hot-pink\\/30 {
|
|
1239
|
+
border-color: #ec48994d;
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1243
|
+
.border-hot-pink\\/30 {
|
|
1244
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
1245
|
+
}
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1079
1248
|
.border-neon-green {
|
|
1080
1249
|
border-color: var(--color-neon-green);
|
|
1081
1250
|
}
|
|
1082
1251
|
|
|
1252
|
+
.border-neon-green\\/30 {
|
|
1253
|
+
border-color: #84cc164d;
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1257
|
+
.border-neon-green\\/30 {
|
|
1258
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1083
1262
|
.border-neon-green\\/40 {
|
|
1084
1263
|
border-color: #84cc1666;
|
|
1085
1264
|
}
|
|
@@ -1094,6 +1273,16 @@ export {
|
|
|
1094
1273
|
border-color: var(--color-primary);
|
|
1095
1274
|
}
|
|
1096
1275
|
|
|
1276
|
+
.border-primary\\/30 {
|
|
1277
|
+
border-color: #f9b11f4d;
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1281
|
+
.border-primary\\/30 {
|
|
1282
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1283
|
+
}
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1097
1286
|
.border-primary\\/40 {
|
|
1098
1287
|
border-color: #f9b11f66;
|
|
1099
1288
|
}
|
|
@@ -1108,6 +1297,16 @@ export {
|
|
|
1108
1297
|
border-color: #0000;
|
|
1109
1298
|
}
|
|
1110
1299
|
|
|
1300
|
+
.border-vibrant-purple\\/30 {
|
|
1301
|
+
border-color: #a855f74d;
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1305
|
+
.border-vibrant-purple\\/30 {
|
|
1306
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
1307
|
+
}
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1111
1310
|
.border-white\\/5 {
|
|
1112
1311
|
border-color: #ffffff0d;
|
|
1113
1312
|
}
|
|
@@ -1204,6 +1403,16 @@ export {
|
|
|
1204
1403
|
background-color: var(--color-electric-blue);
|
|
1205
1404
|
}
|
|
1206
1405
|
|
|
1406
|
+
.bg-electric-blue\\/10 {
|
|
1407
|
+
background-color: #3b82f61a;
|
|
1408
|
+
}
|
|
1409
|
+
|
|
1410
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1411
|
+
.bg-electric-blue\\/10 {
|
|
1412
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
1413
|
+
}
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1207
1416
|
.bg-electric-blue\\/20 {
|
|
1208
1417
|
background-color: #3b82f633;
|
|
1209
1418
|
}
|
|
@@ -1218,6 +1427,16 @@ export {
|
|
|
1218
1427
|
background-color: var(--color-hot-pink);
|
|
1219
1428
|
}
|
|
1220
1429
|
|
|
1430
|
+
.bg-hot-pink\\/10 {
|
|
1431
|
+
background-color: #ec48991a;
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1434
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1435
|
+
.bg-hot-pink\\/10 {
|
|
1436
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
1437
|
+
}
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1221
1440
|
.bg-neon-green {
|
|
1222
1441
|
background-color: var(--color-neon-green);
|
|
1223
1442
|
}
|
|
@@ -1286,6 +1505,16 @@ export {
|
|
|
1286
1505
|
}
|
|
1287
1506
|
}
|
|
1288
1507
|
|
|
1508
|
+
.bg-primary\\/30 {
|
|
1509
|
+
background-color: #f9b11f4d;
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1513
|
+
.bg-primary\\/30 {
|
|
1514
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1515
|
+
}
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1289
1518
|
.bg-transparent {
|
|
1290
1519
|
background-color: #0000;
|
|
1291
1520
|
}
|
|
@@ -1294,6 +1523,16 @@ export {
|
|
|
1294
1523
|
background-color: var(--color-vibrant-purple);
|
|
1295
1524
|
}
|
|
1296
1525
|
|
|
1526
|
+
.bg-vibrant-purple\\/10 {
|
|
1527
|
+
background-color: #a855f71a;
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1531
|
+
.bg-vibrant-purple\\/10 {
|
|
1532
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
1533
|
+
}
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1297
1536
|
.bg-white {
|
|
1298
1537
|
background-color: var(--color-white);
|
|
1299
1538
|
}
|
|
@@ -1370,6 +1609,10 @@ export {
|
|
|
1370
1609
|
padding: calc(var(--spacing) * 3);
|
|
1371
1610
|
}
|
|
1372
1611
|
|
|
1612
|
+
.p-3\\.5 {
|
|
1613
|
+
padding: calc(var(--spacing) * 3.5);
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1373
1616
|
.p-4 {
|
|
1374
1617
|
padding: calc(var(--spacing) * 4);
|
|
1375
1618
|
}
|
|
@@ -1434,6 +1677,10 @@ export {
|
|
|
1434
1677
|
padding-block: calc(var(--spacing) * 3);
|
|
1435
1678
|
}
|
|
1436
1679
|
|
|
1680
|
+
.py-4 {
|
|
1681
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1437
1684
|
.py-6 {
|
|
1438
1685
|
padding-block: calc(var(--spacing) * 6);
|
|
1439
1686
|
}
|
|
@@ -1442,6 +1689,10 @@ export {
|
|
|
1442
1689
|
padding-block: calc(var(--spacing) * 8);
|
|
1443
1690
|
}
|
|
1444
1691
|
|
|
1692
|
+
.pt-3 {
|
|
1693
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1445
1696
|
.pr-1 {
|
|
1446
1697
|
padding-right: calc(var(--spacing) * 1);
|
|
1447
1698
|
}
|
|
@@ -1466,6 +1717,14 @@ export {
|
|
|
1466
1717
|
padding-right: calc(var(--spacing) * 11);
|
|
1467
1718
|
}
|
|
1468
1719
|
|
|
1720
|
+
.pb-1 {
|
|
1721
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1724
|
+
.pb-2 {
|
|
1725
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1469
1728
|
.pl-1\\.5 {
|
|
1470
1729
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1471
1730
|
}
|
|
@@ -1506,6 +1765,10 @@ export {
|
|
|
1506
1765
|
vertical-align: middle;
|
|
1507
1766
|
}
|
|
1508
1767
|
|
|
1768
|
+
.align-top {
|
|
1769
|
+
vertical-align: top;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1509
1772
|
.font-mono {
|
|
1510
1773
|
font-family: var(--font-mono);
|
|
1511
1774
|
}
|
|
@@ -1567,6 +1830,11 @@ export {
|
|
|
1567
1830
|
line-height: calc(var(--spacing) * 6);
|
|
1568
1831
|
}
|
|
1569
1832
|
|
|
1833
|
+
.leading-7 {
|
|
1834
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1835
|
+
line-height: calc(var(--spacing) * 7);
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1570
1838
|
.leading-none {
|
|
1571
1839
|
--tw-leading: 1;
|
|
1572
1840
|
line-height: 1;
|
|
@@ -1597,6 +1865,10 @@ export {
|
|
|
1597
1865
|
letter-spacing: var(--tracking-widest);
|
|
1598
1866
|
}
|
|
1599
1867
|
|
|
1868
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
1869
|
+
overflow-wrap: anywhere;
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1600
1872
|
.break-all {
|
|
1601
1873
|
word-break: break-all;
|
|
1602
1874
|
}
|
|
@@ -1793,6 +2065,10 @@ export {
|
|
|
1793
2065
|
opacity: .7;
|
|
1794
2066
|
}
|
|
1795
2067
|
|
|
2068
|
+
.opacity-100 {
|
|
2069
|
+
opacity: 1;
|
|
2070
|
+
}
|
|
2071
|
+
|
|
1796
2072
|
.shadow-hard {
|
|
1797
2073
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
1798
2074
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -2036,6 +2312,11 @@ export {
|
|
|
2036
2312
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2037
2313
|
}
|
|
2038
2314
|
|
|
2315
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
2316
|
+
--tw-translate-x: 2px;
|
|
2317
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2039
2320
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
2040
2321
|
--tw-translate-x: 4px;
|
|
2041
2322
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2046,6 +2327,11 @@ export {
|
|
|
2046
2327
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2047
2328
|
}
|
|
2048
2329
|
|
|
2330
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
2331
|
+
--tw-translate-y: 2px;
|
|
2332
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2049
2335
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
2050
2336
|
--tw-translate-y: 4px;
|
|
2051
2337
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2122,6 +2408,10 @@ export {
|
|
|
2122
2408
|
.xl\\:grid-cols-3 {
|
|
2123
2409
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2124
2410
|
}
|
|
2411
|
+
|
|
2412
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
2413
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
2414
|
+
}
|
|
2125
2415
|
}
|
|
2126
2416
|
}
|
|
2127
2417
|
|