@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/qr-generator.mjs
CHANGED
|
@@ -376,6 +376,10 @@ export {
|
|
|
376
376
|
position: relative;
|
|
377
377
|
}
|
|
378
378
|
|
|
379
|
+
.sticky {
|
|
380
|
+
position: sticky;
|
|
381
|
+
}
|
|
382
|
+
|
|
379
383
|
.inset-0 {
|
|
380
384
|
inset: calc(var(--spacing) * 0);
|
|
381
385
|
}
|
|
@@ -388,6 +392,10 @@ export {
|
|
|
388
392
|
inset-inline-end: var(--spacing);
|
|
389
393
|
}
|
|
390
394
|
|
|
395
|
+
.top-0 {
|
|
396
|
+
top: calc(var(--spacing) * 0);
|
|
397
|
+
}
|
|
398
|
+
|
|
391
399
|
.top-1\\/2 {
|
|
392
400
|
top: 50%;
|
|
393
401
|
}
|
|
@@ -400,6 +408,10 @@ export {
|
|
|
400
408
|
left: calc(var(--spacing) * 2);
|
|
401
409
|
}
|
|
402
410
|
|
|
411
|
+
.z-10 {
|
|
412
|
+
z-index: 10;
|
|
413
|
+
}
|
|
414
|
+
|
|
403
415
|
.z-50 {
|
|
404
416
|
z-index: 50;
|
|
405
417
|
}
|
|
@@ -408,6 +420,40 @@ export {
|
|
|
408
420
|
grid-column: span 2 / span 2;
|
|
409
421
|
}
|
|
410
422
|
|
|
423
|
+
.container {
|
|
424
|
+
width: 100%;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
@media (min-width: 40rem) {
|
|
428
|
+
.container {
|
|
429
|
+
max-width: 40rem;
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
@media (min-width: 48rem) {
|
|
434
|
+
.container {
|
|
435
|
+
max-width: 48rem;
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
@media (min-width: 64rem) {
|
|
440
|
+
.container {
|
|
441
|
+
max-width: 64rem;
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
@media (min-width: 80rem) {
|
|
446
|
+
.container {
|
|
447
|
+
max-width: 80rem;
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
@media (min-width: 96rem) {
|
|
452
|
+
.container {
|
|
453
|
+
max-width: 96rem;
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
|
|
411
457
|
.-mx-1 {
|
|
412
458
|
margin-inline: calc(var(--spacing) * -1);
|
|
413
459
|
}
|
|
@@ -432,6 +478,10 @@ export {
|
|
|
432
478
|
margin-top: calc(var(--spacing) * 3);
|
|
433
479
|
}
|
|
434
480
|
|
|
481
|
+
.mt-4 {
|
|
482
|
+
margin-top: calc(var(--spacing) * 4);
|
|
483
|
+
}
|
|
484
|
+
|
|
435
485
|
.mr-1 {
|
|
436
486
|
margin-right: calc(var(--spacing) * 1);
|
|
437
487
|
}
|
|
@@ -460,6 +510,10 @@ export {
|
|
|
460
510
|
margin-bottom: calc(var(--spacing) * 3);
|
|
461
511
|
}
|
|
462
512
|
|
|
513
|
+
.mb-5 {
|
|
514
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
515
|
+
}
|
|
516
|
+
|
|
463
517
|
.ml-0\\.5 {
|
|
464
518
|
margin-left: calc(var(--spacing) * .5);
|
|
465
519
|
}
|
|
@@ -548,6 +602,10 @@ export {
|
|
|
548
602
|
height: calc(var(--spacing) * 10);
|
|
549
603
|
}
|
|
550
604
|
|
|
605
|
+
.h-11 {
|
|
606
|
+
height: calc(var(--spacing) * 11);
|
|
607
|
+
}
|
|
608
|
+
|
|
551
609
|
.h-12 {
|
|
552
610
|
height: calc(var(--spacing) * 12);
|
|
553
611
|
}
|
|
@@ -564,6 +622,10 @@ export {
|
|
|
564
622
|
height: 100%;
|
|
565
623
|
}
|
|
566
624
|
|
|
625
|
+
.max-h-28 {
|
|
626
|
+
max-height: calc(var(--spacing) * 28);
|
|
627
|
+
}
|
|
628
|
+
|
|
567
629
|
.max-h-36 {
|
|
568
630
|
max-height: calc(var(--spacing) * 36);
|
|
569
631
|
}
|
|
@@ -584,6 +646,10 @@ export {
|
|
|
584
646
|
max-height: 200px;
|
|
585
647
|
}
|
|
586
648
|
|
|
649
|
+
.max-h-\\[420px\\] {
|
|
650
|
+
max-height: 420px;
|
|
651
|
+
}
|
|
652
|
+
|
|
587
653
|
.max-h-full {
|
|
588
654
|
max-height: 100%;
|
|
589
655
|
}
|
|
@@ -604,6 +670,22 @@ export {
|
|
|
604
670
|
min-height: 200px;
|
|
605
671
|
}
|
|
606
672
|
|
|
673
|
+
.min-h-\\[260px\\] {
|
|
674
|
+
min-height: 260px;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.min-h-\\[320px\\] {
|
|
678
|
+
min-height: 320px;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.min-h-full {
|
|
682
|
+
min-height: 100%;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.w-1 {
|
|
686
|
+
width: calc(var(--spacing) * 1);
|
|
687
|
+
}
|
|
688
|
+
|
|
607
689
|
.w-1\\.5 {
|
|
608
690
|
width: calc(var(--spacing) * 1.5);
|
|
609
691
|
}
|
|
@@ -668,6 +750,10 @@ export {
|
|
|
668
750
|
width: calc(var(--spacing) * 32);
|
|
669
751
|
}
|
|
670
752
|
|
|
753
|
+
.w-56 {
|
|
754
|
+
width: calc(var(--spacing) * 56);
|
|
755
|
+
}
|
|
756
|
+
|
|
671
757
|
.w-72 {
|
|
672
758
|
width: calc(var(--spacing) * 72);
|
|
673
759
|
}
|
|
@@ -676,6 +762,10 @@ export {
|
|
|
676
762
|
width: 100%;
|
|
677
763
|
}
|
|
678
764
|
|
|
765
|
+
.max-w-60 {
|
|
766
|
+
max-width: calc(var(--spacing) * 60);
|
|
767
|
+
}
|
|
768
|
+
|
|
679
769
|
.max-w-70 {
|
|
680
770
|
max-width: calc(var(--spacing) * 70);
|
|
681
771
|
}
|
|
@@ -692,6 +782,10 @@ export {
|
|
|
692
782
|
min-width: calc(var(--spacing) * 0);
|
|
693
783
|
}
|
|
694
784
|
|
|
785
|
+
.min-w-36 {
|
|
786
|
+
min-width: calc(var(--spacing) * 36);
|
|
787
|
+
}
|
|
788
|
+
|
|
695
789
|
.min-w-\\[90px\\] {
|
|
696
790
|
min-width: 90px;
|
|
697
791
|
}
|
|
@@ -708,6 +802,10 @@ export {
|
|
|
708
802
|
flex-shrink: 0;
|
|
709
803
|
}
|
|
710
804
|
|
|
805
|
+
.table-fixed {
|
|
806
|
+
table-layout: fixed;
|
|
807
|
+
}
|
|
808
|
+
|
|
711
809
|
.border-collapse {
|
|
712
810
|
border-collapse: collapse;
|
|
713
811
|
}
|
|
@@ -727,6 +825,10 @@ export {
|
|
|
727
825
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
728
826
|
}
|
|
729
827
|
|
|
828
|
+
.scale-\\[0\\.98\\] {
|
|
829
|
+
scale: .98;
|
|
830
|
+
}
|
|
831
|
+
|
|
730
832
|
.transform {
|
|
731
833
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
732
834
|
}
|
|
@@ -747,6 +849,10 @@ export {
|
|
|
747
849
|
cursor: pointer;
|
|
748
850
|
}
|
|
749
851
|
|
|
852
|
+
.touch-none {
|
|
853
|
+
touch-action: none;
|
|
854
|
+
}
|
|
855
|
+
|
|
750
856
|
.resize {
|
|
751
857
|
resize: both;
|
|
752
858
|
}
|
|
@@ -755,6 +861,10 @@ export {
|
|
|
755
861
|
resize: none;
|
|
756
862
|
}
|
|
757
863
|
|
|
864
|
+
.resize-y {
|
|
865
|
+
resize: vertical;
|
|
866
|
+
}
|
|
867
|
+
|
|
758
868
|
.appearance-none {
|
|
759
869
|
appearance: none;
|
|
760
870
|
}
|
|
@@ -795,6 +905,10 @@ export {
|
|
|
795
905
|
align-items: center;
|
|
796
906
|
}
|
|
797
907
|
|
|
908
|
+
.items-stretch {
|
|
909
|
+
align-items: stretch;
|
|
910
|
+
}
|
|
911
|
+
|
|
798
912
|
.justify-between {
|
|
799
913
|
justify-content: space-between;
|
|
800
914
|
}
|
|
@@ -859,6 +973,12 @@ export {
|
|
|
859
973
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
860
974
|
}
|
|
861
975
|
|
|
976
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
977
|
+
--tw-space-y-reverse: 0;
|
|
978
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
979
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
980
|
+
}
|
|
981
|
+
|
|
862
982
|
.gap-x-6 {
|
|
863
983
|
column-gap: calc(var(--spacing) * 6);
|
|
864
984
|
}
|
|
@@ -881,6 +1001,10 @@ export {
|
|
|
881
1001
|
overflow: hidden;
|
|
882
1002
|
}
|
|
883
1003
|
|
|
1004
|
+
.overflow-x-auto {
|
|
1005
|
+
overflow-x: auto;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
884
1008
|
.overflow-y-auto {
|
|
885
1009
|
overflow-y: auto;
|
|
886
1010
|
}
|
|
@@ -920,6 +1044,11 @@ export {
|
|
|
920
1044
|
border-width: 4px;
|
|
921
1045
|
}
|
|
922
1046
|
|
|
1047
|
+
.border-t-2 {
|
|
1048
|
+
border-top-style: var(--tw-border-style);
|
|
1049
|
+
border-top-width: 2px;
|
|
1050
|
+
}
|
|
1051
|
+
|
|
923
1052
|
.border-r {
|
|
924
1053
|
border-right-style: var(--tw-border-style);
|
|
925
1054
|
border-right-width: 1px;
|
|
@@ -949,10 +1078,30 @@ export {
|
|
|
949
1078
|
border-color: var(--color-black);
|
|
950
1079
|
}
|
|
951
1080
|
|
|
1081
|
+
.border-black\\/30 {
|
|
1082
|
+
border-color: #0000004d;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1086
|
+
.border-black\\/30 {
|
|
1087
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
1088
|
+
}
|
|
1089
|
+
}
|
|
1090
|
+
|
|
952
1091
|
.border-coral-red {
|
|
953
1092
|
border-color: var(--color-coral-red);
|
|
954
1093
|
}
|
|
955
1094
|
|
|
1095
|
+
.border-coral-red\\/30 {
|
|
1096
|
+
border-color: #ff6b6b4d;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1100
|
+
.border-coral-red\\/30 {
|
|
1101
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
1102
|
+
}
|
|
1103
|
+
}
|
|
1104
|
+
|
|
956
1105
|
.border-coral-red\\/40 {
|
|
957
1106
|
border-color: #ff6b6b66;
|
|
958
1107
|
}
|
|
@@ -963,6 +1112,16 @@ export {
|
|
|
963
1112
|
}
|
|
964
1113
|
}
|
|
965
1114
|
|
|
1115
|
+
.border-electric-blue\\/30 {
|
|
1116
|
+
border-color: #3b82f64d;
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1120
|
+
.border-electric-blue\\/30 {
|
|
1121
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
1122
|
+
}
|
|
1123
|
+
}
|
|
1124
|
+
|
|
966
1125
|
.border-electric-blue\\/40 {
|
|
967
1126
|
border-color: #3b82f666;
|
|
968
1127
|
}
|
|
@@ -981,10 +1140,30 @@ export {
|
|
|
981
1140
|
border-color: var(--color-gray-700);
|
|
982
1141
|
}
|
|
983
1142
|
|
|
1143
|
+
.border-hot-pink\\/30 {
|
|
1144
|
+
border-color: #ec48994d;
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1148
|
+
.border-hot-pink\\/30 {
|
|
1149
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
1150
|
+
}
|
|
1151
|
+
}
|
|
1152
|
+
|
|
984
1153
|
.border-neon-green {
|
|
985
1154
|
border-color: var(--color-neon-green);
|
|
986
1155
|
}
|
|
987
1156
|
|
|
1157
|
+
.border-neon-green\\/30 {
|
|
1158
|
+
border-color: #84cc164d;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1162
|
+
.border-neon-green\\/30 {
|
|
1163
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
1164
|
+
}
|
|
1165
|
+
}
|
|
1166
|
+
|
|
988
1167
|
.border-neon-green\\/40 {
|
|
989
1168
|
border-color: #84cc1666;
|
|
990
1169
|
}
|
|
@@ -999,6 +1178,16 @@ export {
|
|
|
999
1178
|
border-color: var(--color-primary);
|
|
1000
1179
|
}
|
|
1001
1180
|
|
|
1181
|
+
.border-primary\\/30 {
|
|
1182
|
+
border-color: #f9b11f4d;
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1186
|
+
.border-primary\\/30 {
|
|
1187
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1002
1191
|
.border-primary\\/40 {
|
|
1003
1192
|
border-color: #f9b11f66;
|
|
1004
1193
|
}
|
|
@@ -1013,6 +1202,16 @@ export {
|
|
|
1013
1202
|
border-color: #0000;
|
|
1014
1203
|
}
|
|
1015
1204
|
|
|
1205
|
+
.border-vibrant-purple\\/30 {
|
|
1206
|
+
border-color: #a855f74d;
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1210
|
+
.border-vibrant-purple\\/30 {
|
|
1211
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
1212
|
+
}
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1016
1215
|
.border-white\\/5 {
|
|
1017
1216
|
border-color: #ffffff0d;
|
|
1018
1217
|
}
|
|
@@ -1109,6 +1308,16 @@ export {
|
|
|
1109
1308
|
background-color: var(--color-electric-blue);
|
|
1110
1309
|
}
|
|
1111
1310
|
|
|
1311
|
+
.bg-electric-blue\\/10 {
|
|
1312
|
+
background-color: #3b82f61a;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1316
|
+
.bg-electric-blue\\/10 {
|
|
1317
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
1318
|
+
}
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1112
1321
|
.bg-electric-blue\\/20 {
|
|
1113
1322
|
background-color: #3b82f633;
|
|
1114
1323
|
}
|
|
@@ -1123,6 +1332,16 @@ export {
|
|
|
1123
1332
|
background-color: var(--color-hot-pink);
|
|
1124
1333
|
}
|
|
1125
1334
|
|
|
1335
|
+
.bg-hot-pink\\/10 {
|
|
1336
|
+
background-color: #ec48991a;
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1340
|
+
.bg-hot-pink\\/10 {
|
|
1341
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
1342
|
+
}
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1126
1345
|
.bg-neon-green {
|
|
1127
1346
|
background-color: var(--color-neon-green);
|
|
1128
1347
|
}
|
|
@@ -1191,6 +1410,16 @@ export {
|
|
|
1191
1410
|
}
|
|
1192
1411
|
}
|
|
1193
1412
|
|
|
1413
|
+
.bg-primary\\/30 {
|
|
1414
|
+
background-color: #f9b11f4d;
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1418
|
+
.bg-primary\\/30 {
|
|
1419
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1420
|
+
}
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1194
1423
|
.bg-transparent {
|
|
1195
1424
|
background-color: #0000;
|
|
1196
1425
|
}
|
|
@@ -1199,6 +1428,16 @@ export {
|
|
|
1199
1428
|
background-color: var(--color-vibrant-purple);
|
|
1200
1429
|
}
|
|
1201
1430
|
|
|
1431
|
+
.bg-vibrant-purple\\/10 {
|
|
1432
|
+
background-color: #a855f71a;
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1436
|
+
.bg-vibrant-purple\\/10 {
|
|
1437
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
1438
|
+
}
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1202
1441
|
.bg-white {
|
|
1203
1442
|
background-color: var(--color-white);
|
|
1204
1443
|
}
|
|
@@ -1275,6 +1514,10 @@ export {
|
|
|
1275
1514
|
padding: calc(var(--spacing) * 3);
|
|
1276
1515
|
}
|
|
1277
1516
|
|
|
1517
|
+
.p-3\\.5 {
|
|
1518
|
+
padding: calc(var(--spacing) * 3.5);
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1278
1521
|
.p-4 {
|
|
1279
1522
|
padding: calc(var(--spacing) * 4);
|
|
1280
1523
|
}
|
|
@@ -1339,6 +1582,10 @@ export {
|
|
|
1339
1582
|
padding-block: calc(var(--spacing) * 3);
|
|
1340
1583
|
}
|
|
1341
1584
|
|
|
1585
|
+
.py-4 {
|
|
1586
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1342
1589
|
.py-6 {
|
|
1343
1590
|
padding-block: calc(var(--spacing) * 6);
|
|
1344
1591
|
}
|
|
@@ -1347,6 +1594,10 @@ export {
|
|
|
1347
1594
|
padding-block: calc(var(--spacing) * 8);
|
|
1348
1595
|
}
|
|
1349
1596
|
|
|
1597
|
+
.pt-3 {
|
|
1598
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1350
1601
|
.pr-1 {
|
|
1351
1602
|
padding-right: calc(var(--spacing) * 1);
|
|
1352
1603
|
}
|
|
@@ -1371,6 +1622,14 @@ export {
|
|
|
1371
1622
|
padding-right: calc(var(--spacing) * 11);
|
|
1372
1623
|
}
|
|
1373
1624
|
|
|
1625
|
+
.pb-1 {
|
|
1626
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
.pb-2 {
|
|
1630
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1374
1633
|
.pl-1\\.5 {
|
|
1375
1634
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1376
1635
|
}
|
|
@@ -1411,6 +1670,10 @@ export {
|
|
|
1411
1670
|
vertical-align: middle;
|
|
1412
1671
|
}
|
|
1413
1672
|
|
|
1673
|
+
.align-top {
|
|
1674
|
+
vertical-align: top;
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1414
1677
|
.font-mono {
|
|
1415
1678
|
font-family: var(--font-mono);
|
|
1416
1679
|
}
|
|
@@ -1472,6 +1735,11 @@ export {
|
|
|
1472
1735
|
line-height: calc(var(--spacing) * 6);
|
|
1473
1736
|
}
|
|
1474
1737
|
|
|
1738
|
+
.leading-7 {
|
|
1739
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1740
|
+
line-height: calc(var(--spacing) * 7);
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1475
1743
|
.leading-none {
|
|
1476
1744
|
--tw-leading: 1;
|
|
1477
1745
|
line-height: 1;
|
|
@@ -1502,6 +1770,10 @@ export {
|
|
|
1502
1770
|
letter-spacing: var(--tracking-widest);
|
|
1503
1771
|
}
|
|
1504
1772
|
|
|
1773
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
1774
|
+
overflow-wrap: anywhere;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1505
1777
|
.break-all {
|
|
1506
1778
|
word-break: break-all;
|
|
1507
1779
|
}
|
|
@@ -1698,6 +1970,10 @@ export {
|
|
|
1698
1970
|
opacity: .7;
|
|
1699
1971
|
}
|
|
1700
1972
|
|
|
1973
|
+
.opacity-100 {
|
|
1974
|
+
opacity: 1;
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1701
1977
|
.shadow-hard {
|
|
1702
1978
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
1703
1979
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1941,6 +2217,11 @@ export {
|
|
|
1941
2217
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1942
2218
|
}
|
|
1943
2219
|
|
|
2220
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
2221
|
+
--tw-translate-x: 2px;
|
|
2222
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2223
|
+
}
|
|
2224
|
+
|
|
1944
2225
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
1945
2226
|
--tw-translate-x: 4px;
|
|
1946
2227
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1951,6 +2232,11 @@ export {
|
|
|
1951
2232
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1952
2233
|
}
|
|
1953
2234
|
|
|
2235
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
2236
|
+
--tw-translate-y: 2px;
|
|
2237
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2238
|
+
}
|
|
2239
|
+
|
|
1954
2240
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
1955
2241
|
--tw-translate-y: 4px;
|
|
1956
2242
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2027,6 +2313,10 @@ export {
|
|
|
2027
2313
|
.xl\\:grid-cols-3 {
|
|
2028
2314
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2029
2315
|
}
|
|
2316
|
+
|
|
2317
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
2318
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
2319
|
+
}
|
|
2030
2320
|
}
|
|
2031
2321
|
}
|
|
2032
2322
|
|