@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
|
@@ -424,6 +424,10 @@ export {
|
|
|
424
424
|
position: relative;
|
|
425
425
|
}
|
|
426
426
|
|
|
427
|
+
.sticky {
|
|
428
|
+
position: sticky;
|
|
429
|
+
}
|
|
430
|
+
|
|
427
431
|
.inset-0 {
|
|
428
432
|
inset: calc(var(--spacing) * 0);
|
|
429
433
|
}
|
|
@@ -436,6 +440,10 @@ export {
|
|
|
436
440
|
inset-inline-end: var(--spacing);
|
|
437
441
|
}
|
|
438
442
|
|
|
443
|
+
.top-0 {
|
|
444
|
+
top: calc(var(--spacing) * 0);
|
|
445
|
+
}
|
|
446
|
+
|
|
439
447
|
.top-1\\/2 {
|
|
440
448
|
top: 50%;
|
|
441
449
|
}
|
|
@@ -448,6 +456,10 @@ export {
|
|
|
448
456
|
left: calc(var(--spacing) * 2);
|
|
449
457
|
}
|
|
450
458
|
|
|
459
|
+
.z-10 {
|
|
460
|
+
z-index: 10;
|
|
461
|
+
}
|
|
462
|
+
|
|
451
463
|
.z-50 {
|
|
452
464
|
z-index: 50;
|
|
453
465
|
}
|
|
@@ -456,6 +468,40 @@ export {
|
|
|
456
468
|
grid-column: span 2 / span 2;
|
|
457
469
|
}
|
|
458
470
|
|
|
471
|
+
.container {
|
|
472
|
+
width: 100%;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
@media (min-width: 40rem) {
|
|
476
|
+
.container {
|
|
477
|
+
max-width: 40rem;
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
@media (min-width: 48rem) {
|
|
482
|
+
.container {
|
|
483
|
+
max-width: 48rem;
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
@media (min-width: 64rem) {
|
|
488
|
+
.container {
|
|
489
|
+
max-width: 64rem;
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
@media (min-width: 80rem) {
|
|
494
|
+
.container {
|
|
495
|
+
max-width: 80rem;
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
@media (min-width: 96rem) {
|
|
500
|
+
.container {
|
|
501
|
+
max-width: 96rem;
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
|
|
459
505
|
.-mx-1 {
|
|
460
506
|
margin-inline: calc(var(--spacing) * -1);
|
|
461
507
|
}
|
|
@@ -480,6 +526,10 @@ export {
|
|
|
480
526
|
margin-top: calc(var(--spacing) * 3);
|
|
481
527
|
}
|
|
482
528
|
|
|
529
|
+
.mt-4 {
|
|
530
|
+
margin-top: calc(var(--spacing) * 4);
|
|
531
|
+
}
|
|
532
|
+
|
|
483
533
|
.mr-1 {
|
|
484
534
|
margin-right: calc(var(--spacing) * 1);
|
|
485
535
|
}
|
|
@@ -508,6 +558,10 @@ export {
|
|
|
508
558
|
margin-bottom: calc(var(--spacing) * 3);
|
|
509
559
|
}
|
|
510
560
|
|
|
561
|
+
.mb-5 {
|
|
562
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
563
|
+
}
|
|
564
|
+
|
|
511
565
|
.ml-0\\.5 {
|
|
512
566
|
margin-left: calc(var(--spacing) * .5);
|
|
513
567
|
}
|
|
@@ -596,6 +650,10 @@ export {
|
|
|
596
650
|
height: calc(var(--spacing) * 10);
|
|
597
651
|
}
|
|
598
652
|
|
|
653
|
+
.h-11 {
|
|
654
|
+
height: calc(var(--spacing) * 11);
|
|
655
|
+
}
|
|
656
|
+
|
|
599
657
|
.h-12 {
|
|
600
658
|
height: calc(var(--spacing) * 12);
|
|
601
659
|
}
|
|
@@ -612,6 +670,10 @@ export {
|
|
|
612
670
|
height: 100%;
|
|
613
671
|
}
|
|
614
672
|
|
|
673
|
+
.max-h-28 {
|
|
674
|
+
max-height: calc(var(--spacing) * 28);
|
|
675
|
+
}
|
|
676
|
+
|
|
615
677
|
.max-h-36 {
|
|
616
678
|
max-height: calc(var(--spacing) * 36);
|
|
617
679
|
}
|
|
@@ -632,6 +694,10 @@ export {
|
|
|
632
694
|
max-height: 200px;
|
|
633
695
|
}
|
|
634
696
|
|
|
697
|
+
.max-h-\\[420px\\] {
|
|
698
|
+
max-height: 420px;
|
|
699
|
+
}
|
|
700
|
+
|
|
635
701
|
.max-h-full {
|
|
636
702
|
max-height: 100%;
|
|
637
703
|
}
|
|
@@ -652,6 +718,22 @@ export {
|
|
|
652
718
|
min-height: 200px;
|
|
653
719
|
}
|
|
654
720
|
|
|
721
|
+
.min-h-\\[260px\\] {
|
|
722
|
+
min-height: 260px;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.min-h-\\[320px\\] {
|
|
726
|
+
min-height: 320px;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.min-h-full {
|
|
730
|
+
min-height: 100%;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.w-1 {
|
|
734
|
+
width: calc(var(--spacing) * 1);
|
|
735
|
+
}
|
|
736
|
+
|
|
655
737
|
.w-1\\.5 {
|
|
656
738
|
width: calc(var(--spacing) * 1.5);
|
|
657
739
|
}
|
|
@@ -716,6 +798,10 @@ export {
|
|
|
716
798
|
width: calc(var(--spacing) * 32);
|
|
717
799
|
}
|
|
718
800
|
|
|
801
|
+
.w-56 {
|
|
802
|
+
width: calc(var(--spacing) * 56);
|
|
803
|
+
}
|
|
804
|
+
|
|
719
805
|
.w-72 {
|
|
720
806
|
width: calc(var(--spacing) * 72);
|
|
721
807
|
}
|
|
@@ -724,6 +810,10 @@ export {
|
|
|
724
810
|
width: 100%;
|
|
725
811
|
}
|
|
726
812
|
|
|
813
|
+
.max-w-60 {
|
|
814
|
+
max-width: calc(var(--spacing) * 60);
|
|
815
|
+
}
|
|
816
|
+
|
|
727
817
|
.max-w-70 {
|
|
728
818
|
max-width: calc(var(--spacing) * 70);
|
|
729
819
|
}
|
|
@@ -740,6 +830,10 @@ export {
|
|
|
740
830
|
min-width: calc(var(--spacing) * 0);
|
|
741
831
|
}
|
|
742
832
|
|
|
833
|
+
.min-w-36 {
|
|
834
|
+
min-width: calc(var(--spacing) * 36);
|
|
835
|
+
}
|
|
836
|
+
|
|
743
837
|
.min-w-\\[90px\\] {
|
|
744
838
|
min-width: 90px;
|
|
745
839
|
}
|
|
@@ -756,6 +850,10 @@ export {
|
|
|
756
850
|
flex-shrink: 0;
|
|
757
851
|
}
|
|
758
852
|
|
|
853
|
+
.table-fixed {
|
|
854
|
+
table-layout: fixed;
|
|
855
|
+
}
|
|
856
|
+
|
|
759
857
|
.border-collapse {
|
|
760
858
|
border-collapse: collapse;
|
|
761
859
|
}
|
|
@@ -775,6 +873,10 @@ export {
|
|
|
775
873
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
776
874
|
}
|
|
777
875
|
|
|
876
|
+
.scale-\\[0\\.98\\] {
|
|
877
|
+
scale: .98;
|
|
878
|
+
}
|
|
879
|
+
|
|
778
880
|
.transform {
|
|
779
881
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
780
882
|
}
|
|
@@ -795,6 +897,10 @@ export {
|
|
|
795
897
|
cursor: pointer;
|
|
796
898
|
}
|
|
797
899
|
|
|
900
|
+
.touch-none {
|
|
901
|
+
touch-action: none;
|
|
902
|
+
}
|
|
903
|
+
|
|
798
904
|
.resize {
|
|
799
905
|
resize: both;
|
|
800
906
|
}
|
|
@@ -803,6 +909,10 @@ export {
|
|
|
803
909
|
resize: none;
|
|
804
910
|
}
|
|
805
911
|
|
|
912
|
+
.resize-y {
|
|
913
|
+
resize: vertical;
|
|
914
|
+
}
|
|
915
|
+
|
|
806
916
|
.appearance-none {
|
|
807
917
|
appearance: none;
|
|
808
918
|
}
|
|
@@ -843,6 +953,10 @@ export {
|
|
|
843
953
|
align-items: center;
|
|
844
954
|
}
|
|
845
955
|
|
|
956
|
+
.items-stretch {
|
|
957
|
+
align-items: stretch;
|
|
958
|
+
}
|
|
959
|
+
|
|
846
960
|
.justify-between {
|
|
847
961
|
justify-content: space-between;
|
|
848
962
|
}
|
|
@@ -907,6 +1021,12 @@ export {
|
|
|
907
1021
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
908
1022
|
}
|
|
909
1023
|
|
|
1024
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
1025
|
+
--tw-space-y-reverse: 0;
|
|
1026
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
1027
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
1028
|
+
}
|
|
1029
|
+
|
|
910
1030
|
.gap-x-6 {
|
|
911
1031
|
column-gap: calc(var(--spacing) * 6);
|
|
912
1032
|
}
|
|
@@ -929,6 +1049,10 @@ export {
|
|
|
929
1049
|
overflow: hidden;
|
|
930
1050
|
}
|
|
931
1051
|
|
|
1052
|
+
.overflow-x-auto {
|
|
1053
|
+
overflow-x: auto;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
932
1056
|
.overflow-y-auto {
|
|
933
1057
|
overflow-y: auto;
|
|
934
1058
|
}
|
|
@@ -968,6 +1092,11 @@ export {
|
|
|
968
1092
|
border-width: 4px;
|
|
969
1093
|
}
|
|
970
1094
|
|
|
1095
|
+
.border-t-2 {
|
|
1096
|
+
border-top-style: var(--tw-border-style);
|
|
1097
|
+
border-top-width: 2px;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
971
1100
|
.border-r {
|
|
972
1101
|
border-right-style: var(--tw-border-style);
|
|
973
1102
|
border-right-width: 1px;
|
|
@@ -997,10 +1126,30 @@ export {
|
|
|
997
1126
|
border-color: var(--color-black);
|
|
998
1127
|
}
|
|
999
1128
|
|
|
1129
|
+
.border-black\\/30 {
|
|
1130
|
+
border-color: #0000004d;
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1134
|
+
.border-black\\/30 {
|
|
1135
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
1136
|
+
}
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1000
1139
|
.border-coral-red {
|
|
1001
1140
|
border-color: var(--color-coral-red);
|
|
1002
1141
|
}
|
|
1003
1142
|
|
|
1143
|
+
.border-coral-red\\/30 {
|
|
1144
|
+
border-color: #ff6b6b4d;
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1148
|
+
.border-coral-red\\/30 {
|
|
1149
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
1150
|
+
}
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1004
1153
|
.border-coral-red\\/40 {
|
|
1005
1154
|
border-color: #ff6b6b66;
|
|
1006
1155
|
}
|
|
@@ -1011,6 +1160,16 @@ export {
|
|
|
1011
1160
|
}
|
|
1012
1161
|
}
|
|
1013
1162
|
|
|
1163
|
+
.border-electric-blue\\/30 {
|
|
1164
|
+
border-color: #3b82f64d;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1168
|
+
.border-electric-blue\\/30 {
|
|
1169
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
1170
|
+
}
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1014
1173
|
.border-electric-blue\\/40 {
|
|
1015
1174
|
border-color: #3b82f666;
|
|
1016
1175
|
}
|
|
@@ -1029,10 +1188,30 @@ export {
|
|
|
1029
1188
|
border-color: var(--color-gray-700);
|
|
1030
1189
|
}
|
|
1031
1190
|
|
|
1191
|
+
.border-hot-pink\\/30 {
|
|
1192
|
+
border-color: #ec48994d;
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1196
|
+
.border-hot-pink\\/30 {
|
|
1197
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
1198
|
+
}
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1032
1201
|
.border-neon-green {
|
|
1033
1202
|
border-color: var(--color-neon-green);
|
|
1034
1203
|
}
|
|
1035
1204
|
|
|
1205
|
+
.border-neon-green\\/30 {
|
|
1206
|
+
border-color: #84cc164d;
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1210
|
+
.border-neon-green\\/30 {
|
|
1211
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
1212
|
+
}
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1036
1215
|
.border-neon-green\\/40 {
|
|
1037
1216
|
border-color: #84cc1666;
|
|
1038
1217
|
}
|
|
@@ -1047,6 +1226,16 @@ export {
|
|
|
1047
1226
|
border-color: var(--color-primary);
|
|
1048
1227
|
}
|
|
1049
1228
|
|
|
1229
|
+
.border-primary\\/30 {
|
|
1230
|
+
border-color: #f9b11f4d;
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1234
|
+
.border-primary\\/30 {
|
|
1235
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1236
|
+
}
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1050
1239
|
.border-primary\\/40 {
|
|
1051
1240
|
border-color: #f9b11f66;
|
|
1052
1241
|
}
|
|
@@ -1061,6 +1250,16 @@ export {
|
|
|
1061
1250
|
border-color: #0000;
|
|
1062
1251
|
}
|
|
1063
1252
|
|
|
1253
|
+
.border-vibrant-purple\\/30 {
|
|
1254
|
+
border-color: #a855f74d;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1258
|
+
.border-vibrant-purple\\/30 {
|
|
1259
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
1260
|
+
}
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1064
1263
|
.border-white\\/5 {
|
|
1065
1264
|
border-color: #ffffff0d;
|
|
1066
1265
|
}
|
|
@@ -1157,6 +1356,16 @@ export {
|
|
|
1157
1356
|
background-color: var(--color-electric-blue);
|
|
1158
1357
|
}
|
|
1159
1358
|
|
|
1359
|
+
.bg-electric-blue\\/10 {
|
|
1360
|
+
background-color: #3b82f61a;
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1364
|
+
.bg-electric-blue\\/10 {
|
|
1365
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
1366
|
+
}
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1160
1369
|
.bg-electric-blue\\/20 {
|
|
1161
1370
|
background-color: #3b82f633;
|
|
1162
1371
|
}
|
|
@@ -1171,6 +1380,16 @@ export {
|
|
|
1171
1380
|
background-color: var(--color-hot-pink);
|
|
1172
1381
|
}
|
|
1173
1382
|
|
|
1383
|
+
.bg-hot-pink\\/10 {
|
|
1384
|
+
background-color: #ec48991a;
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1388
|
+
.bg-hot-pink\\/10 {
|
|
1389
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
1390
|
+
}
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1174
1393
|
.bg-neon-green {
|
|
1175
1394
|
background-color: var(--color-neon-green);
|
|
1176
1395
|
}
|
|
@@ -1239,6 +1458,16 @@ export {
|
|
|
1239
1458
|
}
|
|
1240
1459
|
}
|
|
1241
1460
|
|
|
1461
|
+
.bg-primary\\/30 {
|
|
1462
|
+
background-color: #f9b11f4d;
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1466
|
+
.bg-primary\\/30 {
|
|
1467
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1468
|
+
}
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1242
1471
|
.bg-transparent {
|
|
1243
1472
|
background-color: #0000;
|
|
1244
1473
|
}
|
|
@@ -1247,6 +1476,16 @@ export {
|
|
|
1247
1476
|
background-color: var(--color-vibrant-purple);
|
|
1248
1477
|
}
|
|
1249
1478
|
|
|
1479
|
+
.bg-vibrant-purple\\/10 {
|
|
1480
|
+
background-color: #a855f71a;
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1483
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1484
|
+
.bg-vibrant-purple\\/10 {
|
|
1485
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
1486
|
+
}
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1250
1489
|
.bg-white {
|
|
1251
1490
|
background-color: var(--color-white);
|
|
1252
1491
|
}
|
|
@@ -1323,6 +1562,10 @@ export {
|
|
|
1323
1562
|
padding: calc(var(--spacing) * 3);
|
|
1324
1563
|
}
|
|
1325
1564
|
|
|
1565
|
+
.p-3\\.5 {
|
|
1566
|
+
padding: calc(var(--spacing) * 3.5);
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1326
1569
|
.p-4 {
|
|
1327
1570
|
padding: calc(var(--spacing) * 4);
|
|
1328
1571
|
}
|
|
@@ -1387,6 +1630,10 @@ export {
|
|
|
1387
1630
|
padding-block: calc(var(--spacing) * 3);
|
|
1388
1631
|
}
|
|
1389
1632
|
|
|
1633
|
+
.py-4 {
|
|
1634
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1390
1637
|
.py-6 {
|
|
1391
1638
|
padding-block: calc(var(--spacing) * 6);
|
|
1392
1639
|
}
|
|
@@ -1395,6 +1642,10 @@ export {
|
|
|
1395
1642
|
padding-block: calc(var(--spacing) * 8);
|
|
1396
1643
|
}
|
|
1397
1644
|
|
|
1645
|
+
.pt-3 {
|
|
1646
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1398
1649
|
.pr-1 {
|
|
1399
1650
|
padding-right: calc(var(--spacing) * 1);
|
|
1400
1651
|
}
|
|
@@ -1419,6 +1670,14 @@ export {
|
|
|
1419
1670
|
padding-right: calc(var(--spacing) * 11);
|
|
1420
1671
|
}
|
|
1421
1672
|
|
|
1673
|
+
.pb-1 {
|
|
1674
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
.pb-2 {
|
|
1678
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1422
1681
|
.pl-1\\.5 {
|
|
1423
1682
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1424
1683
|
}
|
|
@@ -1459,6 +1718,10 @@ export {
|
|
|
1459
1718
|
vertical-align: middle;
|
|
1460
1719
|
}
|
|
1461
1720
|
|
|
1721
|
+
.align-top {
|
|
1722
|
+
vertical-align: top;
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1462
1725
|
.font-mono {
|
|
1463
1726
|
font-family: var(--font-mono);
|
|
1464
1727
|
}
|
|
@@ -1520,6 +1783,11 @@ export {
|
|
|
1520
1783
|
line-height: calc(var(--spacing) * 6);
|
|
1521
1784
|
}
|
|
1522
1785
|
|
|
1786
|
+
.leading-7 {
|
|
1787
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1788
|
+
line-height: calc(var(--spacing) * 7);
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1523
1791
|
.leading-none {
|
|
1524
1792
|
--tw-leading: 1;
|
|
1525
1793
|
line-height: 1;
|
|
@@ -1550,6 +1818,10 @@ export {
|
|
|
1550
1818
|
letter-spacing: var(--tracking-widest);
|
|
1551
1819
|
}
|
|
1552
1820
|
|
|
1821
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
1822
|
+
overflow-wrap: anywhere;
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1553
1825
|
.break-all {
|
|
1554
1826
|
word-break: break-all;
|
|
1555
1827
|
}
|
|
@@ -1746,6 +2018,10 @@ export {
|
|
|
1746
2018
|
opacity: .7;
|
|
1747
2019
|
}
|
|
1748
2020
|
|
|
2021
|
+
.opacity-100 {
|
|
2022
|
+
opacity: 1;
|
|
2023
|
+
}
|
|
2024
|
+
|
|
1749
2025
|
.shadow-hard {
|
|
1750
2026
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
1751
2027
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1989,6 +2265,11 @@ export {
|
|
|
1989
2265
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1990
2266
|
}
|
|
1991
2267
|
|
|
2268
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
2269
|
+
--tw-translate-x: 2px;
|
|
2270
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2271
|
+
}
|
|
2272
|
+
|
|
1992
2273
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
1993
2274
|
--tw-translate-x: 4px;
|
|
1994
2275
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1999,6 +2280,11 @@ export {
|
|
|
1999
2280
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2000
2281
|
}
|
|
2001
2282
|
|
|
2283
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
2284
|
+
--tw-translate-y: 2px;
|
|
2285
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2002
2288
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
2003
2289
|
--tw-translate-y: 4px;
|
|
2004
2290
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2075,6 +2361,10 @@ export {
|
|
|
2075
2361
|
.xl\\:grid-cols-3 {
|
|
2076
2362
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2077
2363
|
}
|
|
2364
|
+
|
|
2365
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
2366
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
2367
|
+
}
|
|
2078
2368
|
}
|
|
2079
2369
|
}
|
|
2080
2370
|
|