@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
|
@@ -285,6 +285,10 @@ export {
|
|
|
285
285
|
position: relative;
|
|
286
286
|
}
|
|
287
287
|
|
|
288
|
+
.sticky {
|
|
289
|
+
position: sticky;
|
|
290
|
+
}
|
|
291
|
+
|
|
288
292
|
.inset-0 {
|
|
289
293
|
inset: calc(var(--spacing) * 0);
|
|
290
294
|
}
|
|
@@ -297,6 +301,10 @@ export {
|
|
|
297
301
|
inset-inline-end: var(--spacing);
|
|
298
302
|
}
|
|
299
303
|
|
|
304
|
+
.top-0 {
|
|
305
|
+
top: calc(var(--spacing) * 0);
|
|
306
|
+
}
|
|
307
|
+
|
|
300
308
|
.top-1\\/2 {
|
|
301
309
|
top: 50%;
|
|
302
310
|
}
|
|
@@ -309,6 +317,10 @@ export {
|
|
|
309
317
|
left: calc(var(--spacing) * 2);
|
|
310
318
|
}
|
|
311
319
|
|
|
320
|
+
.z-10 {
|
|
321
|
+
z-index: 10;
|
|
322
|
+
}
|
|
323
|
+
|
|
312
324
|
.z-50 {
|
|
313
325
|
z-index: 50;
|
|
314
326
|
}
|
|
@@ -317,6 +329,40 @@ export {
|
|
|
317
329
|
grid-column: span 2 / span 2;
|
|
318
330
|
}
|
|
319
331
|
|
|
332
|
+
.container {
|
|
333
|
+
width: 100%;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
@media (min-width: 40rem) {
|
|
337
|
+
.container {
|
|
338
|
+
max-width: 40rem;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
@media (min-width: 48rem) {
|
|
343
|
+
.container {
|
|
344
|
+
max-width: 48rem;
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
@media (min-width: 64rem) {
|
|
349
|
+
.container {
|
|
350
|
+
max-width: 64rem;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
@media (min-width: 80rem) {
|
|
355
|
+
.container {
|
|
356
|
+
max-width: 80rem;
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
@media (min-width: 96rem) {
|
|
361
|
+
.container {
|
|
362
|
+
max-width: 96rem;
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
320
366
|
.-mx-1 {
|
|
321
367
|
margin-inline: calc(var(--spacing) * -1);
|
|
322
368
|
}
|
|
@@ -341,6 +387,10 @@ export {
|
|
|
341
387
|
margin-top: calc(var(--spacing) * 3);
|
|
342
388
|
}
|
|
343
389
|
|
|
390
|
+
.mt-4 {
|
|
391
|
+
margin-top: calc(var(--spacing) * 4);
|
|
392
|
+
}
|
|
393
|
+
|
|
344
394
|
.mr-1 {
|
|
345
395
|
margin-right: calc(var(--spacing) * 1);
|
|
346
396
|
}
|
|
@@ -369,6 +419,10 @@ export {
|
|
|
369
419
|
margin-bottom: calc(var(--spacing) * 3);
|
|
370
420
|
}
|
|
371
421
|
|
|
422
|
+
.mb-5 {
|
|
423
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
424
|
+
}
|
|
425
|
+
|
|
372
426
|
.ml-0\\.5 {
|
|
373
427
|
margin-left: calc(var(--spacing) * .5);
|
|
374
428
|
}
|
|
@@ -457,6 +511,10 @@ export {
|
|
|
457
511
|
height: calc(var(--spacing) * 10);
|
|
458
512
|
}
|
|
459
513
|
|
|
514
|
+
.h-11 {
|
|
515
|
+
height: calc(var(--spacing) * 11);
|
|
516
|
+
}
|
|
517
|
+
|
|
460
518
|
.h-12 {
|
|
461
519
|
height: calc(var(--spacing) * 12);
|
|
462
520
|
}
|
|
@@ -473,6 +531,10 @@ export {
|
|
|
473
531
|
height: 100%;
|
|
474
532
|
}
|
|
475
533
|
|
|
534
|
+
.max-h-28 {
|
|
535
|
+
max-height: calc(var(--spacing) * 28);
|
|
536
|
+
}
|
|
537
|
+
|
|
476
538
|
.max-h-36 {
|
|
477
539
|
max-height: calc(var(--spacing) * 36);
|
|
478
540
|
}
|
|
@@ -493,6 +555,10 @@ export {
|
|
|
493
555
|
max-height: 200px;
|
|
494
556
|
}
|
|
495
557
|
|
|
558
|
+
.max-h-\\[420px\\] {
|
|
559
|
+
max-height: 420px;
|
|
560
|
+
}
|
|
561
|
+
|
|
496
562
|
.max-h-full {
|
|
497
563
|
max-height: 100%;
|
|
498
564
|
}
|
|
@@ -513,6 +579,22 @@ export {
|
|
|
513
579
|
min-height: 200px;
|
|
514
580
|
}
|
|
515
581
|
|
|
582
|
+
.min-h-\\[260px\\] {
|
|
583
|
+
min-height: 260px;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.min-h-\\[320px\\] {
|
|
587
|
+
min-height: 320px;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.min-h-full {
|
|
591
|
+
min-height: 100%;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.w-1 {
|
|
595
|
+
width: calc(var(--spacing) * 1);
|
|
596
|
+
}
|
|
597
|
+
|
|
516
598
|
.w-1\\.5 {
|
|
517
599
|
width: calc(var(--spacing) * 1.5);
|
|
518
600
|
}
|
|
@@ -577,6 +659,10 @@ export {
|
|
|
577
659
|
width: calc(var(--spacing) * 32);
|
|
578
660
|
}
|
|
579
661
|
|
|
662
|
+
.w-56 {
|
|
663
|
+
width: calc(var(--spacing) * 56);
|
|
664
|
+
}
|
|
665
|
+
|
|
580
666
|
.w-72 {
|
|
581
667
|
width: calc(var(--spacing) * 72);
|
|
582
668
|
}
|
|
@@ -585,6 +671,10 @@ export {
|
|
|
585
671
|
width: 100%;
|
|
586
672
|
}
|
|
587
673
|
|
|
674
|
+
.max-w-60 {
|
|
675
|
+
max-width: calc(var(--spacing) * 60);
|
|
676
|
+
}
|
|
677
|
+
|
|
588
678
|
.max-w-70 {
|
|
589
679
|
max-width: calc(var(--spacing) * 70);
|
|
590
680
|
}
|
|
@@ -601,6 +691,10 @@ export {
|
|
|
601
691
|
min-width: calc(var(--spacing) * 0);
|
|
602
692
|
}
|
|
603
693
|
|
|
694
|
+
.min-w-36 {
|
|
695
|
+
min-width: calc(var(--spacing) * 36);
|
|
696
|
+
}
|
|
697
|
+
|
|
604
698
|
.min-w-\\[90px\\] {
|
|
605
699
|
min-width: 90px;
|
|
606
700
|
}
|
|
@@ -617,6 +711,10 @@ export {
|
|
|
617
711
|
flex-shrink: 0;
|
|
618
712
|
}
|
|
619
713
|
|
|
714
|
+
.table-fixed {
|
|
715
|
+
table-layout: fixed;
|
|
716
|
+
}
|
|
717
|
+
|
|
620
718
|
.border-collapse {
|
|
621
719
|
border-collapse: collapse;
|
|
622
720
|
}
|
|
@@ -636,6 +734,10 @@ export {
|
|
|
636
734
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
637
735
|
}
|
|
638
736
|
|
|
737
|
+
.scale-\\[0\\.98\\] {
|
|
738
|
+
scale: .98;
|
|
739
|
+
}
|
|
740
|
+
|
|
639
741
|
.transform {
|
|
640
742
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
641
743
|
}
|
|
@@ -656,6 +758,10 @@ export {
|
|
|
656
758
|
cursor: pointer;
|
|
657
759
|
}
|
|
658
760
|
|
|
761
|
+
.touch-none {
|
|
762
|
+
touch-action: none;
|
|
763
|
+
}
|
|
764
|
+
|
|
659
765
|
.resize {
|
|
660
766
|
resize: both;
|
|
661
767
|
}
|
|
@@ -664,6 +770,10 @@ export {
|
|
|
664
770
|
resize: none;
|
|
665
771
|
}
|
|
666
772
|
|
|
773
|
+
.resize-y {
|
|
774
|
+
resize: vertical;
|
|
775
|
+
}
|
|
776
|
+
|
|
667
777
|
.appearance-none {
|
|
668
778
|
appearance: none;
|
|
669
779
|
}
|
|
@@ -704,6 +814,10 @@ export {
|
|
|
704
814
|
align-items: center;
|
|
705
815
|
}
|
|
706
816
|
|
|
817
|
+
.items-stretch {
|
|
818
|
+
align-items: stretch;
|
|
819
|
+
}
|
|
820
|
+
|
|
707
821
|
.justify-between {
|
|
708
822
|
justify-content: space-between;
|
|
709
823
|
}
|
|
@@ -768,6 +882,12 @@ export {
|
|
|
768
882
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
769
883
|
}
|
|
770
884
|
|
|
885
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
886
|
+
--tw-space-y-reverse: 0;
|
|
887
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
888
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
889
|
+
}
|
|
890
|
+
|
|
771
891
|
.gap-x-6 {
|
|
772
892
|
column-gap: calc(var(--spacing) * 6);
|
|
773
893
|
}
|
|
@@ -790,6 +910,10 @@ export {
|
|
|
790
910
|
overflow: hidden;
|
|
791
911
|
}
|
|
792
912
|
|
|
913
|
+
.overflow-x-auto {
|
|
914
|
+
overflow-x: auto;
|
|
915
|
+
}
|
|
916
|
+
|
|
793
917
|
.overflow-y-auto {
|
|
794
918
|
overflow-y: auto;
|
|
795
919
|
}
|
|
@@ -829,6 +953,11 @@ export {
|
|
|
829
953
|
border-width: 4px;
|
|
830
954
|
}
|
|
831
955
|
|
|
956
|
+
.border-t-2 {
|
|
957
|
+
border-top-style: var(--tw-border-style);
|
|
958
|
+
border-top-width: 2px;
|
|
959
|
+
}
|
|
960
|
+
|
|
832
961
|
.border-r {
|
|
833
962
|
border-right-style: var(--tw-border-style);
|
|
834
963
|
border-right-width: 1px;
|
|
@@ -858,10 +987,30 @@ export {
|
|
|
858
987
|
border-color: var(--color-black);
|
|
859
988
|
}
|
|
860
989
|
|
|
990
|
+
.border-black\\/30 {
|
|
991
|
+
border-color: #0000004d;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
995
|
+
.border-black\\/30 {
|
|
996
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
997
|
+
}
|
|
998
|
+
}
|
|
999
|
+
|
|
861
1000
|
.border-coral-red {
|
|
862
1001
|
border-color: var(--color-coral-red);
|
|
863
1002
|
}
|
|
864
1003
|
|
|
1004
|
+
.border-coral-red\\/30 {
|
|
1005
|
+
border-color: #ff6b6b4d;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1009
|
+
.border-coral-red\\/30 {
|
|
1010
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
1011
|
+
}
|
|
1012
|
+
}
|
|
1013
|
+
|
|
865
1014
|
.border-coral-red\\/40 {
|
|
866
1015
|
border-color: #ff6b6b66;
|
|
867
1016
|
}
|
|
@@ -872,6 +1021,16 @@ export {
|
|
|
872
1021
|
}
|
|
873
1022
|
}
|
|
874
1023
|
|
|
1024
|
+
.border-electric-blue\\/30 {
|
|
1025
|
+
border-color: #3b82f64d;
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1029
|
+
.border-electric-blue\\/30 {
|
|
1030
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
|
|
875
1034
|
.border-electric-blue\\/40 {
|
|
876
1035
|
border-color: #3b82f666;
|
|
877
1036
|
}
|
|
@@ -890,10 +1049,30 @@ export {
|
|
|
890
1049
|
border-color: var(--color-gray-700);
|
|
891
1050
|
}
|
|
892
1051
|
|
|
1052
|
+
.border-hot-pink\\/30 {
|
|
1053
|
+
border-color: #ec48994d;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1057
|
+
.border-hot-pink\\/30 {
|
|
1058
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
1059
|
+
}
|
|
1060
|
+
}
|
|
1061
|
+
|
|
893
1062
|
.border-neon-green {
|
|
894
1063
|
border-color: var(--color-neon-green);
|
|
895
1064
|
}
|
|
896
1065
|
|
|
1066
|
+
.border-neon-green\\/30 {
|
|
1067
|
+
border-color: #84cc164d;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1071
|
+
.border-neon-green\\/30 {
|
|
1072
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
1073
|
+
}
|
|
1074
|
+
}
|
|
1075
|
+
|
|
897
1076
|
.border-neon-green\\/40 {
|
|
898
1077
|
border-color: #84cc1666;
|
|
899
1078
|
}
|
|
@@ -908,6 +1087,16 @@ export {
|
|
|
908
1087
|
border-color: var(--color-primary);
|
|
909
1088
|
}
|
|
910
1089
|
|
|
1090
|
+
.border-primary\\/30 {
|
|
1091
|
+
border-color: #f9b11f4d;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1095
|
+
.border-primary\\/30 {
|
|
1096
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1097
|
+
}
|
|
1098
|
+
}
|
|
1099
|
+
|
|
911
1100
|
.border-primary\\/40 {
|
|
912
1101
|
border-color: #f9b11f66;
|
|
913
1102
|
}
|
|
@@ -922,6 +1111,16 @@ export {
|
|
|
922
1111
|
border-color: #0000;
|
|
923
1112
|
}
|
|
924
1113
|
|
|
1114
|
+
.border-vibrant-purple\\/30 {
|
|
1115
|
+
border-color: #a855f74d;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1119
|
+
.border-vibrant-purple\\/30 {
|
|
1120
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
1121
|
+
}
|
|
1122
|
+
}
|
|
1123
|
+
|
|
925
1124
|
.border-white\\/5 {
|
|
926
1125
|
border-color: #ffffff0d;
|
|
927
1126
|
}
|
|
@@ -1018,6 +1217,16 @@ export {
|
|
|
1018
1217
|
background-color: var(--color-electric-blue);
|
|
1019
1218
|
}
|
|
1020
1219
|
|
|
1220
|
+
.bg-electric-blue\\/10 {
|
|
1221
|
+
background-color: #3b82f61a;
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1225
|
+
.bg-electric-blue\\/10 {
|
|
1226
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1021
1230
|
.bg-electric-blue\\/20 {
|
|
1022
1231
|
background-color: #3b82f633;
|
|
1023
1232
|
}
|
|
@@ -1032,6 +1241,16 @@ export {
|
|
|
1032
1241
|
background-color: var(--color-hot-pink);
|
|
1033
1242
|
}
|
|
1034
1243
|
|
|
1244
|
+
.bg-hot-pink\\/10 {
|
|
1245
|
+
background-color: #ec48991a;
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1249
|
+
.bg-hot-pink\\/10 {
|
|
1250
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1035
1254
|
.bg-neon-green {
|
|
1036
1255
|
background-color: var(--color-neon-green);
|
|
1037
1256
|
}
|
|
@@ -1100,6 +1319,16 @@ export {
|
|
|
1100
1319
|
}
|
|
1101
1320
|
}
|
|
1102
1321
|
|
|
1322
|
+
.bg-primary\\/30 {
|
|
1323
|
+
background-color: #f9b11f4d;
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1327
|
+
.bg-primary\\/30 {
|
|
1328
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1329
|
+
}
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1103
1332
|
.bg-transparent {
|
|
1104
1333
|
background-color: #0000;
|
|
1105
1334
|
}
|
|
@@ -1108,6 +1337,16 @@ export {
|
|
|
1108
1337
|
background-color: var(--color-vibrant-purple);
|
|
1109
1338
|
}
|
|
1110
1339
|
|
|
1340
|
+
.bg-vibrant-purple\\/10 {
|
|
1341
|
+
background-color: #a855f71a;
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1345
|
+
.bg-vibrant-purple\\/10 {
|
|
1346
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
1347
|
+
}
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1111
1350
|
.bg-white {
|
|
1112
1351
|
background-color: var(--color-white);
|
|
1113
1352
|
}
|
|
@@ -1184,6 +1423,10 @@ export {
|
|
|
1184
1423
|
padding: calc(var(--spacing) * 3);
|
|
1185
1424
|
}
|
|
1186
1425
|
|
|
1426
|
+
.p-3\\.5 {
|
|
1427
|
+
padding: calc(var(--spacing) * 3.5);
|
|
1428
|
+
}
|
|
1429
|
+
|
|
1187
1430
|
.p-4 {
|
|
1188
1431
|
padding: calc(var(--spacing) * 4);
|
|
1189
1432
|
}
|
|
@@ -1248,6 +1491,10 @@ export {
|
|
|
1248
1491
|
padding-block: calc(var(--spacing) * 3);
|
|
1249
1492
|
}
|
|
1250
1493
|
|
|
1494
|
+
.py-4 {
|
|
1495
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1251
1498
|
.py-6 {
|
|
1252
1499
|
padding-block: calc(var(--spacing) * 6);
|
|
1253
1500
|
}
|
|
@@ -1256,6 +1503,10 @@ export {
|
|
|
1256
1503
|
padding-block: calc(var(--spacing) * 8);
|
|
1257
1504
|
}
|
|
1258
1505
|
|
|
1506
|
+
.pt-3 {
|
|
1507
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1259
1510
|
.pr-1 {
|
|
1260
1511
|
padding-right: calc(var(--spacing) * 1);
|
|
1261
1512
|
}
|
|
@@ -1280,6 +1531,14 @@ export {
|
|
|
1280
1531
|
padding-right: calc(var(--spacing) * 11);
|
|
1281
1532
|
}
|
|
1282
1533
|
|
|
1534
|
+
.pb-1 {
|
|
1535
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
.pb-2 {
|
|
1539
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1283
1542
|
.pl-1\\.5 {
|
|
1284
1543
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1285
1544
|
}
|
|
@@ -1320,6 +1579,10 @@ export {
|
|
|
1320
1579
|
vertical-align: middle;
|
|
1321
1580
|
}
|
|
1322
1581
|
|
|
1582
|
+
.align-top {
|
|
1583
|
+
vertical-align: top;
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1323
1586
|
.font-mono {
|
|
1324
1587
|
font-family: var(--font-mono);
|
|
1325
1588
|
}
|
|
@@ -1381,6 +1644,11 @@ export {
|
|
|
1381
1644
|
line-height: calc(var(--spacing) * 6);
|
|
1382
1645
|
}
|
|
1383
1646
|
|
|
1647
|
+
.leading-7 {
|
|
1648
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1649
|
+
line-height: calc(var(--spacing) * 7);
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1384
1652
|
.leading-none {
|
|
1385
1653
|
--tw-leading: 1;
|
|
1386
1654
|
line-height: 1;
|
|
@@ -1411,6 +1679,10 @@ export {
|
|
|
1411
1679
|
letter-spacing: var(--tracking-widest);
|
|
1412
1680
|
}
|
|
1413
1681
|
|
|
1682
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
1683
|
+
overflow-wrap: anywhere;
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1414
1686
|
.break-all {
|
|
1415
1687
|
word-break: break-all;
|
|
1416
1688
|
}
|
|
@@ -1607,6 +1879,10 @@ export {
|
|
|
1607
1879
|
opacity: .7;
|
|
1608
1880
|
}
|
|
1609
1881
|
|
|
1882
|
+
.opacity-100 {
|
|
1883
|
+
opacity: 1;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1610
1886
|
.shadow-hard {
|
|
1611
1887
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
1612
1888
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1850,6 +2126,11 @@ export {
|
|
|
1850
2126
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1851
2127
|
}
|
|
1852
2128
|
|
|
2129
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
2130
|
+
--tw-translate-x: 2px;
|
|
2131
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2132
|
+
}
|
|
2133
|
+
|
|
1853
2134
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
1854
2135
|
--tw-translate-x: 4px;
|
|
1855
2136
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1860,6 +2141,11 @@ export {
|
|
|
1860
2141
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1861
2142
|
}
|
|
1862
2143
|
|
|
2144
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
2145
|
+
--tw-translate-y: 2px;
|
|
2146
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2147
|
+
}
|
|
2148
|
+
|
|
1863
2149
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
1864
2150
|
--tw-translate-y: 4px;
|
|
1865
2151
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1936,6 +2222,10 @@ export {
|
|
|
1936
2222
|
.xl\\:grid-cols-3 {
|
|
1937
2223
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1938
2224
|
}
|
|
2225
|
+
|
|
2226
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
2227
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
2228
|
+
}
|
|
1939
2229
|
}
|
|
1940
2230
|
}
|
|
1941
2231
|
|