@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
|
@@ -477,6 +477,10 @@ export {
|
|
|
477
477
|
position: relative;
|
|
478
478
|
}
|
|
479
479
|
|
|
480
|
+
.sticky {
|
|
481
|
+
position: sticky;
|
|
482
|
+
}
|
|
483
|
+
|
|
480
484
|
.inset-0 {
|
|
481
485
|
inset: calc(var(--spacing) * 0);
|
|
482
486
|
}
|
|
@@ -489,6 +493,10 @@ export {
|
|
|
489
493
|
inset-inline-end: var(--spacing);
|
|
490
494
|
}
|
|
491
495
|
|
|
496
|
+
.top-0 {
|
|
497
|
+
top: calc(var(--spacing) * 0);
|
|
498
|
+
}
|
|
499
|
+
|
|
492
500
|
.top-1\\/2 {
|
|
493
501
|
top: 50%;
|
|
494
502
|
}
|
|
@@ -501,6 +509,10 @@ export {
|
|
|
501
509
|
left: calc(var(--spacing) * 2);
|
|
502
510
|
}
|
|
503
511
|
|
|
512
|
+
.z-10 {
|
|
513
|
+
z-index: 10;
|
|
514
|
+
}
|
|
515
|
+
|
|
504
516
|
.z-50 {
|
|
505
517
|
z-index: 50;
|
|
506
518
|
}
|
|
@@ -509,6 +521,40 @@ export {
|
|
|
509
521
|
grid-column: span 2 / span 2;
|
|
510
522
|
}
|
|
511
523
|
|
|
524
|
+
.container {
|
|
525
|
+
width: 100%;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
@media (min-width: 40rem) {
|
|
529
|
+
.container {
|
|
530
|
+
max-width: 40rem;
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
@media (min-width: 48rem) {
|
|
535
|
+
.container {
|
|
536
|
+
max-width: 48rem;
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
@media (min-width: 64rem) {
|
|
541
|
+
.container {
|
|
542
|
+
max-width: 64rem;
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
@media (min-width: 80rem) {
|
|
547
|
+
.container {
|
|
548
|
+
max-width: 80rem;
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
@media (min-width: 96rem) {
|
|
553
|
+
.container {
|
|
554
|
+
max-width: 96rem;
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
|
|
512
558
|
.-mx-1 {
|
|
513
559
|
margin-inline: calc(var(--spacing) * -1);
|
|
514
560
|
}
|
|
@@ -533,6 +579,10 @@ export {
|
|
|
533
579
|
margin-top: calc(var(--spacing) * 3);
|
|
534
580
|
}
|
|
535
581
|
|
|
582
|
+
.mt-4 {
|
|
583
|
+
margin-top: calc(var(--spacing) * 4);
|
|
584
|
+
}
|
|
585
|
+
|
|
536
586
|
.mr-1 {
|
|
537
587
|
margin-right: calc(var(--spacing) * 1);
|
|
538
588
|
}
|
|
@@ -561,6 +611,10 @@ export {
|
|
|
561
611
|
margin-bottom: calc(var(--spacing) * 3);
|
|
562
612
|
}
|
|
563
613
|
|
|
614
|
+
.mb-5 {
|
|
615
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
616
|
+
}
|
|
617
|
+
|
|
564
618
|
.ml-0\\.5 {
|
|
565
619
|
margin-left: calc(var(--spacing) * .5);
|
|
566
620
|
}
|
|
@@ -649,6 +703,10 @@ export {
|
|
|
649
703
|
height: calc(var(--spacing) * 10);
|
|
650
704
|
}
|
|
651
705
|
|
|
706
|
+
.h-11 {
|
|
707
|
+
height: calc(var(--spacing) * 11);
|
|
708
|
+
}
|
|
709
|
+
|
|
652
710
|
.h-12 {
|
|
653
711
|
height: calc(var(--spacing) * 12);
|
|
654
712
|
}
|
|
@@ -665,6 +723,10 @@ export {
|
|
|
665
723
|
height: 100%;
|
|
666
724
|
}
|
|
667
725
|
|
|
726
|
+
.max-h-28 {
|
|
727
|
+
max-height: calc(var(--spacing) * 28);
|
|
728
|
+
}
|
|
729
|
+
|
|
668
730
|
.max-h-36 {
|
|
669
731
|
max-height: calc(var(--spacing) * 36);
|
|
670
732
|
}
|
|
@@ -685,6 +747,10 @@ export {
|
|
|
685
747
|
max-height: 200px;
|
|
686
748
|
}
|
|
687
749
|
|
|
750
|
+
.max-h-\\[420px\\] {
|
|
751
|
+
max-height: 420px;
|
|
752
|
+
}
|
|
753
|
+
|
|
688
754
|
.max-h-full {
|
|
689
755
|
max-height: 100%;
|
|
690
756
|
}
|
|
@@ -705,6 +771,22 @@ export {
|
|
|
705
771
|
min-height: 200px;
|
|
706
772
|
}
|
|
707
773
|
|
|
774
|
+
.min-h-\\[260px\\] {
|
|
775
|
+
min-height: 260px;
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
.min-h-\\[320px\\] {
|
|
779
|
+
min-height: 320px;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.min-h-full {
|
|
783
|
+
min-height: 100%;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
.w-1 {
|
|
787
|
+
width: calc(var(--spacing) * 1);
|
|
788
|
+
}
|
|
789
|
+
|
|
708
790
|
.w-1\\.5 {
|
|
709
791
|
width: calc(var(--spacing) * 1.5);
|
|
710
792
|
}
|
|
@@ -769,6 +851,10 @@ export {
|
|
|
769
851
|
width: calc(var(--spacing) * 32);
|
|
770
852
|
}
|
|
771
853
|
|
|
854
|
+
.w-56 {
|
|
855
|
+
width: calc(var(--spacing) * 56);
|
|
856
|
+
}
|
|
857
|
+
|
|
772
858
|
.w-72 {
|
|
773
859
|
width: calc(var(--spacing) * 72);
|
|
774
860
|
}
|
|
@@ -777,6 +863,10 @@ export {
|
|
|
777
863
|
width: 100%;
|
|
778
864
|
}
|
|
779
865
|
|
|
866
|
+
.max-w-60 {
|
|
867
|
+
max-width: calc(var(--spacing) * 60);
|
|
868
|
+
}
|
|
869
|
+
|
|
780
870
|
.max-w-70 {
|
|
781
871
|
max-width: calc(var(--spacing) * 70);
|
|
782
872
|
}
|
|
@@ -793,6 +883,10 @@ export {
|
|
|
793
883
|
min-width: calc(var(--spacing) * 0);
|
|
794
884
|
}
|
|
795
885
|
|
|
886
|
+
.min-w-36 {
|
|
887
|
+
min-width: calc(var(--spacing) * 36);
|
|
888
|
+
}
|
|
889
|
+
|
|
796
890
|
.min-w-\\[90px\\] {
|
|
797
891
|
min-width: 90px;
|
|
798
892
|
}
|
|
@@ -809,6 +903,10 @@ export {
|
|
|
809
903
|
flex-shrink: 0;
|
|
810
904
|
}
|
|
811
905
|
|
|
906
|
+
.table-fixed {
|
|
907
|
+
table-layout: fixed;
|
|
908
|
+
}
|
|
909
|
+
|
|
812
910
|
.border-collapse {
|
|
813
911
|
border-collapse: collapse;
|
|
814
912
|
}
|
|
@@ -828,6 +926,10 @@ export {
|
|
|
828
926
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
829
927
|
}
|
|
830
928
|
|
|
929
|
+
.scale-\\[0\\.98\\] {
|
|
930
|
+
scale: .98;
|
|
931
|
+
}
|
|
932
|
+
|
|
831
933
|
.transform {
|
|
832
934
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
833
935
|
}
|
|
@@ -848,6 +950,10 @@ export {
|
|
|
848
950
|
cursor: pointer;
|
|
849
951
|
}
|
|
850
952
|
|
|
953
|
+
.touch-none {
|
|
954
|
+
touch-action: none;
|
|
955
|
+
}
|
|
956
|
+
|
|
851
957
|
.resize {
|
|
852
958
|
resize: both;
|
|
853
959
|
}
|
|
@@ -856,6 +962,10 @@ export {
|
|
|
856
962
|
resize: none;
|
|
857
963
|
}
|
|
858
964
|
|
|
965
|
+
.resize-y {
|
|
966
|
+
resize: vertical;
|
|
967
|
+
}
|
|
968
|
+
|
|
859
969
|
.appearance-none {
|
|
860
970
|
appearance: none;
|
|
861
971
|
}
|
|
@@ -896,6 +1006,10 @@ export {
|
|
|
896
1006
|
align-items: center;
|
|
897
1007
|
}
|
|
898
1008
|
|
|
1009
|
+
.items-stretch {
|
|
1010
|
+
align-items: stretch;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
899
1013
|
.justify-between {
|
|
900
1014
|
justify-content: space-between;
|
|
901
1015
|
}
|
|
@@ -960,6 +1074,12 @@ export {
|
|
|
960
1074
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
961
1075
|
}
|
|
962
1076
|
|
|
1077
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
1078
|
+
--tw-space-y-reverse: 0;
|
|
1079
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
1080
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
1081
|
+
}
|
|
1082
|
+
|
|
963
1083
|
.gap-x-6 {
|
|
964
1084
|
column-gap: calc(var(--spacing) * 6);
|
|
965
1085
|
}
|
|
@@ -982,6 +1102,10 @@ export {
|
|
|
982
1102
|
overflow: hidden;
|
|
983
1103
|
}
|
|
984
1104
|
|
|
1105
|
+
.overflow-x-auto {
|
|
1106
|
+
overflow-x: auto;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
985
1109
|
.overflow-y-auto {
|
|
986
1110
|
overflow-y: auto;
|
|
987
1111
|
}
|
|
@@ -1021,6 +1145,11 @@ export {
|
|
|
1021
1145
|
border-width: 4px;
|
|
1022
1146
|
}
|
|
1023
1147
|
|
|
1148
|
+
.border-t-2 {
|
|
1149
|
+
border-top-style: var(--tw-border-style);
|
|
1150
|
+
border-top-width: 2px;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1024
1153
|
.border-r {
|
|
1025
1154
|
border-right-style: var(--tw-border-style);
|
|
1026
1155
|
border-right-width: 1px;
|
|
@@ -1050,10 +1179,30 @@ export {
|
|
|
1050
1179
|
border-color: var(--color-black);
|
|
1051
1180
|
}
|
|
1052
1181
|
|
|
1182
|
+
.border-black\\/30 {
|
|
1183
|
+
border-color: #0000004d;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1187
|
+
.border-black\\/30 {
|
|
1188
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
1189
|
+
}
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1053
1192
|
.border-coral-red {
|
|
1054
1193
|
border-color: var(--color-coral-red);
|
|
1055
1194
|
}
|
|
1056
1195
|
|
|
1196
|
+
.border-coral-red\\/30 {
|
|
1197
|
+
border-color: #ff6b6b4d;
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1201
|
+
.border-coral-red\\/30 {
|
|
1202
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
1203
|
+
}
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1057
1206
|
.border-coral-red\\/40 {
|
|
1058
1207
|
border-color: #ff6b6b66;
|
|
1059
1208
|
}
|
|
@@ -1064,6 +1213,16 @@ export {
|
|
|
1064
1213
|
}
|
|
1065
1214
|
}
|
|
1066
1215
|
|
|
1216
|
+
.border-electric-blue\\/30 {
|
|
1217
|
+
border-color: #3b82f64d;
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1221
|
+
.border-electric-blue\\/30 {
|
|
1222
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
1223
|
+
}
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1067
1226
|
.border-electric-blue\\/40 {
|
|
1068
1227
|
border-color: #3b82f666;
|
|
1069
1228
|
}
|
|
@@ -1082,10 +1241,30 @@ export {
|
|
|
1082
1241
|
border-color: var(--color-gray-700);
|
|
1083
1242
|
}
|
|
1084
1243
|
|
|
1244
|
+
.border-hot-pink\\/30 {
|
|
1245
|
+
border-color: #ec48994d;
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1249
|
+
.border-hot-pink\\/30 {
|
|
1250
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1085
1254
|
.border-neon-green {
|
|
1086
1255
|
border-color: var(--color-neon-green);
|
|
1087
1256
|
}
|
|
1088
1257
|
|
|
1258
|
+
.border-neon-green\\/30 {
|
|
1259
|
+
border-color: #84cc164d;
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1263
|
+
.border-neon-green\\/30 {
|
|
1264
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
1265
|
+
}
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1089
1268
|
.border-neon-green\\/40 {
|
|
1090
1269
|
border-color: #84cc1666;
|
|
1091
1270
|
}
|
|
@@ -1100,6 +1279,16 @@ export {
|
|
|
1100
1279
|
border-color: var(--color-primary);
|
|
1101
1280
|
}
|
|
1102
1281
|
|
|
1282
|
+
.border-primary\\/30 {
|
|
1283
|
+
border-color: #f9b11f4d;
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1287
|
+
.border-primary\\/30 {
|
|
1288
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1289
|
+
}
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1103
1292
|
.border-primary\\/40 {
|
|
1104
1293
|
border-color: #f9b11f66;
|
|
1105
1294
|
}
|
|
@@ -1114,6 +1303,16 @@ export {
|
|
|
1114
1303
|
border-color: #0000;
|
|
1115
1304
|
}
|
|
1116
1305
|
|
|
1306
|
+
.border-vibrant-purple\\/30 {
|
|
1307
|
+
border-color: #a855f74d;
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1311
|
+
.border-vibrant-purple\\/30 {
|
|
1312
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
1313
|
+
}
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1117
1316
|
.border-white\\/5 {
|
|
1118
1317
|
border-color: #ffffff0d;
|
|
1119
1318
|
}
|
|
@@ -1210,6 +1409,16 @@ export {
|
|
|
1210
1409
|
background-color: var(--color-electric-blue);
|
|
1211
1410
|
}
|
|
1212
1411
|
|
|
1412
|
+
.bg-electric-blue\\/10 {
|
|
1413
|
+
background-color: #3b82f61a;
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1417
|
+
.bg-electric-blue\\/10 {
|
|
1418
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
1419
|
+
}
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1213
1422
|
.bg-electric-blue\\/20 {
|
|
1214
1423
|
background-color: #3b82f633;
|
|
1215
1424
|
}
|
|
@@ -1224,6 +1433,16 @@ export {
|
|
|
1224
1433
|
background-color: var(--color-hot-pink);
|
|
1225
1434
|
}
|
|
1226
1435
|
|
|
1436
|
+
.bg-hot-pink\\/10 {
|
|
1437
|
+
background-color: #ec48991a;
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1441
|
+
.bg-hot-pink\\/10 {
|
|
1442
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
1443
|
+
}
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1227
1446
|
.bg-neon-green {
|
|
1228
1447
|
background-color: var(--color-neon-green);
|
|
1229
1448
|
}
|
|
@@ -1292,6 +1511,16 @@ export {
|
|
|
1292
1511
|
}
|
|
1293
1512
|
}
|
|
1294
1513
|
|
|
1514
|
+
.bg-primary\\/30 {
|
|
1515
|
+
background-color: #f9b11f4d;
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1519
|
+
.bg-primary\\/30 {
|
|
1520
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1521
|
+
}
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1295
1524
|
.bg-transparent {
|
|
1296
1525
|
background-color: #0000;
|
|
1297
1526
|
}
|
|
@@ -1300,6 +1529,16 @@ export {
|
|
|
1300
1529
|
background-color: var(--color-vibrant-purple);
|
|
1301
1530
|
}
|
|
1302
1531
|
|
|
1532
|
+
.bg-vibrant-purple\\/10 {
|
|
1533
|
+
background-color: #a855f71a;
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1537
|
+
.bg-vibrant-purple\\/10 {
|
|
1538
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
1539
|
+
}
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1303
1542
|
.bg-white {
|
|
1304
1543
|
background-color: var(--color-white);
|
|
1305
1544
|
}
|
|
@@ -1376,6 +1615,10 @@ export {
|
|
|
1376
1615
|
padding: calc(var(--spacing) * 3);
|
|
1377
1616
|
}
|
|
1378
1617
|
|
|
1618
|
+
.p-3\\.5 {
|
|
1619
|
+
padding: calc(var(--spacing) * 3.5);
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1379
1622
|
.p-4 {
|
|
1380
1623
|
padding: calc(var(--spacing) * 4);
|
|
1381
1624
|
}
|
|
@@ -1440,6 +1683,10 @@ export {
|
|
|
1440
1683
|
padding-block: calc(var(--spacing) * 3);
|
|
1441
1684
|
}
|
|
1442
1685
|
|
|
1686
|
+
.py-4 {
|
|
1687
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1443
1690
|
.py-6 {
|
|
1444
1691
|
padding-block: calc(var(--spacing) * 6);
|
|
1445
1692
|
}
|
|
@@ -1448,6 +1695,10 @@ export {
|
|
|
1448
1695
|
padding-block: calc(var(--spacing) * 8);
|
|
1449
1696
|
}
|
|
1450
1697
|
|
|
1698
|
+
.pt-3 {
|
|
1699
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1451
1702
|
.pr-1 {
|
|
1452
1703
|
padding-right: calc(var(--spacing) * 1);
|
|
1453
1704
|
}
|
|
@@ -1472,6 +1723,14 @@ export {
|
|
|
1472
1723
|
padding-right: calc(var(--spacing) * 11);
|
|
1473
1724
|
}
|
|
1474
1725
|
|
|
1726
|
+
.pb-1 {
|
|
1727
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
.pb-2 {
|
|
1731
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1475
1734
|
.pl-1\\.5 {
|
|
1476
1735
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1477
1736
|
}
|
|
@@ -1512,6 +1771,10 @@ export {
|
|
|
1512
1771
|
vertical-align: middle;
|
|
1513
1772
|
}
|
|
1514
1773
|
|
|
1774
|
+
.align-top {
|
|
1775
|
+
vertical-align: top;
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1515
1778
|
.font-mono {
|
|
1516
1779
|
font-family: var(--font-mono);
|
|
1517
1780
|
}
|
|
@@ -1573,6 +1836,11 @@ export {
|
|
|
1573
1836
|
line-height: calc(var(--spacing) * 6);
|
|
1574
1837
|
}
|
|
1575
1838
|
|
|
1839
|
+
.leading-7 {
|
|
1840
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1841
|
+
line-height: calc(var(--spacing) * 7);
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1576
1844
|
.leading-none {
|
|
1577
1845
|
--tw-leading: 1;
|
|
1578
1846
|
line-height: 1;
|
|
@@ -1603,6 +1871,10 @@ export {
|
|
|
1603
1871
|
letter-spacing: var(--tracking-widest);
|
|
1604
1872
|
}
|
|
1605
1873
|
|
|
1874
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
1875
|
+
overflow-wrap: anywhere;
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1606
1878
|
.break-all {
|
|
1607
1879
|
word-break: break-all;
|
|
1608
1880
|
}
|
|
@@ -1799,6 +2071,10 @@ export {
|
|
|
1799
2071
|
opacity: .7;
|
|
1800
2072
|
}
|
|
1801
2073
|
|
|
2074
|
+
.opacity-100 {
|
|
2075
|
+
opacity: 1;
|
|
2076
|
+
}
|
|
2077
|
+
|
|
1802
2078
|
.shadow-hard {
|
|
1803
2079
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
1804
2080
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -2042,6 +2318,11 @@ export {
|
|
|
2042
2318
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2043
2319
|
}
|
|
2044
2320
|
|
|
2321
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
2322
|
+
--tw-translate-x: 2px;
|
|
2323
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2045
2326
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
2046
2327
|
--tw-translate-x: 4px;
|
|
2047
2328
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2052,6 +2333,11 @@ export {
|
|
|
2052
2333
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2053
2334
|
}
|
|
2054
2335
|
|
|
2336
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
2337
|
+
--tw-translate-y: 2px;
|
|
2338
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2339
|
+
}
|
|
2340
|
+
|
|
2055
2341
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
2056
2342
|
--tw-translate-y: 4px;
|
|
2057
2343
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2128,6 +2414,10 @@ export {
|
|
|
2128
2414
|
.xl\\:grid-cols-3 {
|
|
2129
2415
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2130
2416
|
}
|
|
2417
|
+
|
|
2418
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
2419
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
2420
|
+
}
|
|
2131
2421
|
}
|
|
2132
2422
|
}
|
|
2133
2423
|
|