@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
|
@@ -475,6 +475,10 @@ export {
|
|
|
475
475
|
position: relative;
|
|
476
476
|
}
|
|
477
477
|
|
|
478
|
+
.sticky {
|
|
479
|
+
position: sticky;
|
|
480
|
+
}
|
|
481
|
+
|
|
478
482
|
.inset-0 {
|
|
479
483
|
inset: calc(var(--spacing) * 0);
|
|
480
484
|
}
|
|
@@ -487,6 +491,10 @@ export {
|
|
|
487
491
|
inset-inline-end: var(--spacing);
|
|
488
492
|
}
|
|
489
493
|
|
|
494
|
+
.top-0 {
|
|
495
|
+
top: calc(var(--spacing) * 0);
|
|
496
|
+
}
|
|
497
|
+
|
|
490
498
|
.top-1\\/2 {
|
|
491
499
|
top: 50%;
|
|
492
500
|
}
|
|
@@ -499,6 +507,10 @@ export {
|
|
|
499
507
|
left: calc(var(--spacing) * 2);
|
|
500
508
|
}
|
|
501
509
|
|
|
510
|
+
.z-10 {
|
|
511
|
+
z-index: 10;
|
|
512
|
+
}
|
|
513
|
+
|
|
502
514
|
.z-50 {
|
|
503
515
|
z-index: 50;
|
|
504
516
|
}
|
|
@@ -507,6 +519,40 @@ export {
|
|
|
507
519
|
grid-column: span 2 / span 2;
|
|
508
520
|
}
|
|
509
521
|
|
|
522
|
+
.container {
|
|
523
|
+
width: 100%;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
@media (min-width: 40rem) {
|
|
527
|
+
.container {
|
|
528
|
+
max-width: 40rem;
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
@media (min-width: 48rem) {
|
|
533
|
+
.container {
|
|
534
|
+
max-width: 48rem;
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
@media (min-width: 64rem) {
|
|
539
|
+
.container {
|
|
540
|
+
max-width: 64rem;
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
@media (min-width: 80rem) {
|
|
545
|
+
.container {
|
|
546
|
+
max-width: 80rem;
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
@media (min-width: 96rem) {
|
|
551
|
+
.container {
|
|
552
|
+
max-width: 96rem;
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
|
|
510
556
|
.-mx-1 {
|
|
511
557
|
margin-inline: calc(var(--spacing) * -1);
|
|
512
558
|
}
|
|
@@ -531,6 +577,10 @@ export {
|
|
|
531
577
|
margin-top: calc(var(--spacing) * 3);
|
|
532
578
|
}
|
|
533
579
|
|
|
580
|
+
.mt-4 {
|
|
581
|
+
margin-top: calc(var(--spacing) * 4);
|
|
582
|
+
}
|
|
583
|
+
|
|
534
584
|
.mr-1 {
|
|
535
585
|
margin-right: calc(var(--spacing) * 1);
|
|
536
586
|
}
|
|
@@ -559,6 +609,10 @@ export {
|
|
|
559
609
|
margin-bottom: calc(var(--spacing) * 3);
|
|
560
610
|
}
|
|
561
611
|
|
|
612
|
+
.mb-5 {
|
|
613
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
614
|
+
}
|
|
615
|
+
|
|
562
616
|
.ml-0\\.5 {
|
|
563
617
|
margin-left: calc(var(--spacing) * .5);
|
|
564
618
|
}
|
|
@@ -647,6 +701,10 @@ export {
|
|
|
647
701
|
height: calc(var(--spacing) * 10);
|
|
648
702
|
}
|
|
649
703
|
|
|
704
|
+
.h-11 {
|
|
705
|
+
height: calc(var(--spacing) * 11);
|
|
706
|
+
}
|
|
707
|
+
|
|
650
708
|
.h-12 {
|
|
651
709
|
height: calc(var(--spacing) * 12);
|
|
652
710
|
}
|
|
@@ -663,6 +721,10 @@ export {
|
|
|
663
721
|
height: 100%;
|
|
664
722
|
}
|
|
665
723
|
|
|
724
|
+
.max-h-28 {
|
|
725
|
+
max-height: calc(var(--spacing) * 28);
|
|
726
|
+
}
|
|
727
|
+
|
|
666
728
|
.max-h-36 {
|
|
667
729
|
max-height: calc(var(--spacing) * 36);
|
|
668
730
|
}
|
|
@@ -683,6 +745,10 @@ export {
|
|
|
683
745
|
max-height: 200px;
|
|
684
746
|
}
|
|
685
747
|
|
|
748
|
+
.max-h-\\[420px\\] {
|
|
749
|
+
max-height: 420px;
|
|
750
|
+
}
|
|
751
|
+
|
|
686
752
|
.max-h-full {
|
|
687
753
|
max-height: 100%;
|
|
688
754
|
}
|
|
@@ -703,6 +769,22 @@ export {
|
|
|
703
769
|
min-height: 200px;
|
|
704
770
|
}
|
|
705
771
|
|
|
772
|
+
.min-h-\\[260px\\] {
|
|
773
|
+
min-height: 260px;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.min-h-\\[320px\\] {
|
|
777
|
+
min-height: 320px;
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.min-h-full {
|
|
781
|
+
min-height: 100%;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.w-1 {
|
|
785
|
+
width: calc(var(--spacing) * 1);
|
|
786
|
+
}
|
|
787
|
+
|
|
706
788
|
.w-1\\.5 {
|
|
707
789
|
width: calc(var(--spacing) * 1.5);
|
|
708
790
|
}
|
|
@@ -767,6 +849,10 @@ export {
|
|
|
767
849
|
width: calc(var(--spacing) * 32);
|
|
768
850
|
}
|
|
769
851
|
|
|
852
|
+
.w-56 {
|
|
853
|
+
width: calc(var(--spacing) * 56);
|
|
854
|
+
}
|
|
855
|
+
|
|
770
856
|
.w-72 {
|
|
771
857
|
width: calc(var(--spacing) * 72);
|
|
772
858
|
}
|
|
@@ -775,6 +861,10 @@ export {
|
|
|
775
861
|
width: 100%;
|
|
776
862
|
}
|
|
777
863
|
|
|
864
|
+
.max-w-60 {
|
|
865
|
+
max-width: calc(var(--spacing) * 60);
|
|
866
|
+
}
|
|
867
|
+
|
|
778
868
|
.max-w-70 {
|
|
779
869
|
max-width: calc(var(--spacing) * 70);
|
|
780
870
|
}
|
|
@@ -791,6 +881,10 @@ export {
|
|
|
791
881
|
min-width: calc(var(--spacing) * 0);
|
|
792
882
|
}
|
|
793
883
|
|
|
884
|
+
.min-w-36 {
|
|
885
|
+
min-width: calc(var(--spacing) * 36);
|
|
886
|
+
}
|
|
887
|
+
|
|
794
888
|
.min-w-\\[90px\\] {
|
|
795
889
|
min-width: 90px;
|
|
796
890
|
}
|
|
@@ -807,6 +901,10 @@ export {
|
|
|
807
901
|
flex-shrink: 0;
|
|
808
902
|
}
|
|
809
903
|
|
|
904
|
+
.table-fixed {
|
|
905
|
+
table-layout: fixed;
|
|
906
|
+
}
|
|
907
|
+
|
|
810
908
|
.border-collapse {
|
|
811
909
|
border-collapse: collapse;
|
|
812
910
|
}
|
|
@@ -826,6 +924,10 @@ export {
|
|
|
826
924
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
827
925
|
}
|
|
828
926
|
|
|
927
|
+
.scale-\\[0\\.98\\] {
|
|
928
|
+
scale: .98;
|
|
929
|
+
}
|
|
930
|
+
|
|
829
931
|
.transform {
|
|
830
932
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
831
933
|
}
|
|
@@ -846,6 +948,10 @@ export {
|
|
|
846
948
|
cursor: pointer;
|
|
847
949
|
}
|
|
848
950
|
|
|
951
|
+
.touch-none {
|
|
952
|
+
touch-action: none;
|
|
953
|
+
}
|
|
954
|
+
|
|
849
955
|
.resize {
|
|
850
956
|
resize: both;
|
|
851
957
|
}
|
|
@@ -854,6 +960,10 @@ export {
|
|
|
854
960
|
resize: none;
|
|
855
961
|
}
|
|
856
962
|
|
|
963
|
+
.resize-y {
|
|
964
|
+
resize: vertical;
|
|
965
|
+
}
|
|
966
|
+
|
|
857
967
|
.appearance-none {
|
|
858
968
|
appearance: none;
|
|
859
969
|
}
|
|
@@ -894,6 +1004,10 @@ export {
|
|
|
894
1004
|
align-items: center;
|
|
895
1005
|
}
|
|
896
1006
|
|
|
1007
|
+
.items-stretch {
|
|
1008
|
+
align-items: stretch;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
897
1011
|
.justify-between {
|
|
898
1012
|
justify-content: space-between;
|
|
899
1013
|
}
|
|
@@ -958,6 +1072,12 @@ export {
|
|
|
958
1072
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
959
1073
|
}
|
|
960
1074
|
|
|
1075
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
1076
|
+
--tw-space-y-reverse: 0;
|
|
1077
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
1078
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
1079
|
+
}
|
|
1080
|
+
|
|
961
1081
|
.gap-x-6 {
|
|
962
1082
|
column-gap: calc(var(--spacing) * 6);
|
|
963
1083
|
}
|
|
@@ -980,6 +1100,10 @@ export {
|
|
|
980
1100
|
overflow: hidden;
|
|
981
1101
|
}
|
|
982
1102
|
|
|
1103
|
+
.overflow-x-auto {
|
|
1104
|
+
overflow-x: auto;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
983
1107
|
.overflow-y-auto {
|
|
984
1108
|
overflow-y: auto;
|
|
985
1109
|
}
|
|
@@ -1019,6 +1143,11 @@ export {
|
|
|
1019
1143
|
border-width: 4px;
|
|
1020
1144
|
}
|
|
1021
1145
|
|
|
1146
|
+
.border-t-2 {
|
|
1147
|
+
border-top-style: var(--tw-border-style);
|
|
1148
|
+
border-top-width: 2px;
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1022
1151
|
.border-r {
|
|
1023
1152
|
border-right-style: var(--tw-border-style);
|
|
1024
1153
|
border-right-width: 1px;
|
|
@@ -1048,10 +1177,30 @@ export {
|
|
|
1048
1177
|
border-color: var(--color-black);
|
|
1049
1178
|
}
|
|
1050
1179
|
|
|
1180
|
+
.border-black\\/30 {
|
|
1181
|
+
border-color: #0000004d;
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1185
|
+
.border-black\\/30 {
|
|
1186
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1051
1190
|
.border-coral-red {
|
|
1052
1191
|
border-color: var(--color-coral-red);
|
|
1053
1192
|
}
|
|
1054
1193
|
|
|
1194
|
+
.border-coral-red\\/30 {
|
|
1195
|
+
border-color: #ff6b6b4d;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1199
|
+
.border-coral-red\\/30 {
|
|
1200
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
1201
|
+
}
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1055
1204
|
.border-coral-red\\/40 {
|
|
1056
1205
|
border-color: #ff6b6b66;
|
|
1057
1206
|
}
|
|
@@ -1062,6 +1211,16 @@ export {
|
|
|
1062
1211
|
}
|
|
1063
1212
|
}
|
|
1064
1213
|
|
|
1214
|
+
.border-electric-blue\\/30 {
|
|
1215
|
+
border-color: #3b82f64d;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1219
|
+
.border-electric-blue\\/30 {
|
|
1220
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
1221
|
+
}
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1065
1224
|
.border-electric-blue\\/40 {
|
|
1066
1225
|
border-color: #3b82f666;
|
|
1067
1226
|
}
|
|
@@ -1080,10 +1239,30 @@ export {
|
|
|
1080
1239
|
border-color: var(--color-gray-700);
|
|
1081
1240
|
}
|
|
1082
1241
|
|
|
1242
|
+
.border-hot-pink\\/30 {
|
|
1243
|
+
border-color: #ec48994d;
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1247
|
+
.border-hot-pink\\/30 {
|
|
1248
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
1249
|
+
}
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1083
1252
|
.border-neon-green {
|
|
1084
1253
|
border-color: var(--color-neon-green);
|
|
1085
1254
|
}
|
|
1086
1255
|
|
|
1256
|
+
.border-neon-green\\/30 {
|
|
1257
|
+
border-color: #84cc164d;
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1260
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1261
|
+
.border-neon-green\\/30 {
|
|
1262
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
1263
|
+
}
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1087
1266
|
.border-neon-green\\/40 {
|
|
1088
1267
|
border-color: #84cc1666;
|
|
1089
1268
|
}
|
|
@@ -1098,6 +1277,16 @@ export {
|
|
|
1098
1277
|
border-color: var(--color-primary);
|
|
1099
1278
|
}
|
|
1100
1279
|
|
|
1280
|
+
.border-primary\\/30 {
|
|
1281
|
+
border-color: #f9b11f4d;
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1285
|
+
.border-primary\\/30 {
|
|
1286
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1287
|
+
}
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1101
1290
|
.border-primary\\/40 {
|
|
1102
1291
|
border-color: #f9b11f66;
|
|
1103
1292
|
}
|
|
@@ -1112,6 +1301,16 @@ export {
|
|
|
1112
1301
|
border-color: #0000;
|
|
1113
1302
|
}
|
|
1114
1303
|
|
|
1304
|
+
.border-vibrant-purple\\/30 {
|
|
1305
|
+
border-color: #a855f74d;
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1309
|
+
.border-vibrant-purple\\/30 {
|
|
1310
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
1311
|
+
}
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1115
1314
|
.border-white\\/5 {
|
|
1116
1315
|
border-color: #ffffff0d;
|
|
1117
1316
|
}
|
|
@@ -1208,6 +1407,16 @@ export {
|
|
|
1208
1407
|
background-color: var(--color-electric-blue);
|
|
1209
1408
|
}
|
|
1210
1409
|
|
|
1410
|
+
.bg-electric-blue\\/10 {
|
|
1411
|
+
background-color: #3b82f61a;
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1415
|
+
.bg-electric-blue\\/10 {
|
|
1416
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
1417
|
+
}
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1211
1420
|
.bg-electric-blue\\/20 {
|
|
1212
1421
|
background-color: #3b82f633;
|
|
1213
1422
|
}
|
|
@@ -1222,6 +1431,16 @@ export {
|
|
|
1222
1431
|
background-color: var(--color-hot-pink);
|
|
1223
1432
|
}
|
|
1224
1433
|
|
|
1434
|
+
.bg-hot-pink\\/10 {
|
|
1435
|
+
background-color: #ec48991a;
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1438
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1439
|
+
.bg-hot-pink\\/10 {
|
|
1440
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
1441
|
+
}
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1225
1444
|
.bg-neon-green {
|
|
1226
1445
|
background-color: var(--color-neon-green);
|
|
1227
1446
|
}
|
|
@@ -1290,6 +1509,16 @@ export {
|
|
|
1290
1509
|
}
|
|
1291
1510
|
}
|
|
1292
1511
|
|
|
1512
|
+
.bg-primary\\/30 {
|
|
1513
|
+
background-color: #f9b11f4d;
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1517
|
+
.bg-primary\\/30 {
|
|
1518
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1519
|
+
}
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1293
1522
|
.bg-transparent {
|
|
1294
1523
|
background-color: #0000;
|
|
1295
1524
|
}
|
|
@@ -1298,6 +1527,16 @@ export {
|
|
|
1298
1527
|
background-color: var(--color-vibrant-purple);
|
|
1299
1528
|
}
|
|
1300
1529
|
|
|
1530
|
+
.bg-vibrant-purple\\/10 {
|
|
1531
|
+
background-color: #a855f71a;
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1535
|
+
.bg-vibrant-purple\\/10 {
|
|
1536
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
1537
|
+
}
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1301
1540
|
.bg-white {
|
|
1302
1541
|
background-color: var(--color-white);
|
|
1303
1542
|
}
|
|
@@ -1374,6 +1613,10 @@ export {
|
|
|
1374
1613
|
padding: calc(var(--spacing) * 3);
|
|
1375
1614
|
}
|
|
1376
1615
|
|
|
1616
|
+
.p-3\\.5 {
|
|
1617
|
+
padding: calc(var(--spacing) * 3.5);
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1377
1620
|
.p-4 {
|
|
1378
1621
|
padding: calc(var(--spacing) * 4);
|
|
1379
1622
|
}
|
|
@@ -1438,6 +1681,10 @@ export {
|
|
|
1438
1681
|
padding-block: calc(var(--spacing) * 3);
|
|
1439
1682
|
}
|
|
1440
1683
|
|
|
1684
|
+
.py-4 {
|
|
1685
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1441
1688
|
.py-6 {
|
|
1442
1689
|
padding-block: calc(var(--spacing) * 6);
|
|
1443
1690
|
}
|
|
@@ -1446,6 +1693,10 @@ export {
|
|
|
1446
1693
|
padding-block: calc(var(--spacing) * 8);
|
|
1447
1694
|
}
|
|
1448
1695
|
|
|
1696
|
+
.pt-3 {
|
|
1697
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1449
1700
|
.pr-1 {
|
|
1450
1701
|
padding-right: calc(var(--spacing) * 1);
|
|
1451
1702
|
}
|
|
@@ -1470,6 +1721,14 @@ export {
|
|
|
1470
1721
|
padding-right: calc(var(--spacing) * 11);
|
|
1471
1722
|
}
|
|
1472
1723
|
|
|
1724
|
+
.pb-1 {
|
|
1725
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
.pb-2 {
|
|
1729
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1473
1732
|
.pl-1\\.5 {
|
|
1474
1733
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1475
1734
|
}
|
|
@@ -1510,6 +1769,10 @@ export {
|
|
|
1510
1769
|
vertical-align: middle;
|
|
1511
1770
|
}
|
|
1512
1771
|
|
|
1772
|
+
.align-top {
|
|
1773
|
+
vertical-align: top;
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1513
1776
|
.font-mono {
|
|
1514
1777
|
font-family: var(--font-mono);
|
|
1515
1778
|
}
|
|
@@ -1571,6 +1834,11 @@ export {
|
|
|
1571
1834
|
line-height: calc(var(--spacing) * 6);
|
|
1572
1835
|
}
|
|
1573
1836
|
|
|
1837
|
+
.leading-7 {
|
|
1838
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1839
|
+
line-height: calc(var(--spacing) * 7);
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1574
1842
|
.leading-none {
|
|
1575
1843
|
--tw-leading: 1;
|
|
1576
1844
|
line-height: 1;
|
|
@@ -1601,6 +1869,10 @@ export {
|
|
|
1601
1869
|
letter-spacing: var(--tracking-widest);
|
|
1602
1870
|
}
|
|
1603
1871
|
|
|
1872
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
1873
|
+
overflow-wrap: anywhere;
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1604
1876
|
.break-all {
|
|
1605
1877
|
word-break: break-all;
|
|
1606
1878
|
}
|
|
@@ -1797,6 +2069,10 @@ export {
|
|
|
1797
2069
|
opacity: .7;
|
|
1798
2070
|
}
|
|
1799
2071
|
|
|
2072
|
+
.opacity-100 {
|
|
2073
|
+
opacity: 1;
|
|
2074
|
+
}
|
|
2075
|
+
|
|
1800
2076
|
.shadow-hard {
|
|
1801
2077
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
1802
2078
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -2040,6 +2316,11 @@ export {
|
|
|
2040
2316
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2041
2317
|
}
|
|
2042
2318
|
|
|
2319
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
2320
|
+
--tw-translate-x: 2px;
|
|
2321
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2322
|
+
}
|
|
2323
|
+
|
|
2043
2324
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
2044
2325
|
--tw-translate-x: 4px;
|
|
2045
2326
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2050,6 +2331,11 @@ export {
|
|
|
2050
2331
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2051
2332
|
}
|
|
2052
2333
|
|
|
2334
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
2335
|
+
--tw-translate-y: 2px;
|
|
2336
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2337
|
+
}
|
|
2338
|
+
|
|
2053
2339
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
2054
2340
|
--tw-translate-y: 4px;
|
|
2055
2341
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2126,6 +2412,10 @@ export {
|
|
|
2126
2412
|
.xl\\:grid-cols-3 {
|
|
2127
2413
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2128
2414
|
}
|
|
2415
|
+
|
|
2416
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
2417
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
2418
|
+
}
|
|
2129
2419
|
}
|
|
2130
2420
|
}
|
|
2131
2421
|
|