@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/cyber-chef.mjs
CHANGED
|
@@ -24408,6 +24408,10 @@ export {
|
|
|
24408
24408
|
position: relative;
|
|
24409
24409
|
}
|
|
24410
24410
|
|
|
24411
|
+
.sticky {
|
|
24412
|
+
position: sticky;
|
|
24413
|
+
}
|
|
24414
|
+
|
|
24411
24415
|
.inset-0 {
|
|
24412
24416
|
inset: calc(var(--spacing) * 0);
|
|
24413
24417
|
}
|
|
@@ -24420,6 +24424,10 @@ export {
|
|
|
24420
24424
|
inset-inline-end: var(--spacing);
|
|
24421
24425
|
}
|
|
24422
24426
|
|
|
24427
|
+
.top-0 {
|
|
24428
|
+
top: calc(var(--spacing) * 0);
|
|
24429
|
+
}
|
|
24430
|
+
|
|
24423
24431
|
.top-1\\/2 {
|
|
24424
24432
|
top: 50%;
|
|
24425
24433
|
}
|
|
@@ -24432,6 +24440,10 @@ export {
|
|
|
24432
24440
|
left: calc(var(--spacing) * 2);
|
|
24433
24441
|
}
|
|
24434
24442
|
|
|
24443
|
+
.z-10 {
|
|
24444
|
+
z-index: 10;
|
|
24445
|
+
}
|
|
24446
|
+
|
|
24435
24447
|
.z-50 {
|
|
24436
24448
|
z-index: 50;
|
|
24437
24449
|
}
|
|
@@ -24440,6 +24452,40 @@ export {
|
|
|
24440
24452
|
grid-column: span 2 / span 2;
|
|
24441
24453
|
}
|
|
24442
24454
|
|
|
24455
|
+
.container {
|
|
24456
|
+
width: 100%;
|
|
24457
|
+
}
|
|
24458
|
+
|
|
24459
|
+
@media (min-width: 40rem) {
|
|
24460
|
+
.container {
|
|
24461
|
+
max-width: 40rem;
|
|
24462
|
+
}
|
|
24463
|
+
}
|
|
24464
|
+
|
|
24465
|
+
@media (min-width: 48rem) {
|
|
24466
|
+
.container {
|
|
24467
|
+
max-width: 48rem;
|
|
24468
|
+
}
|
|
24469
|
+
}
|
|
24470
|
+
|
|
24471
|
+
@media (min-width: 64rem) {
|
|
24472
|
+
.container {
|
|
24473
|
+
max-width: 64rem;
|
|
24474
|
+
}
|
|
24475
|
+
}
|
|
24476
|
+
|
|
24477
|
+
@media (min-width: 80rem) {
|
|
24478
|
+
.container {
|
|
24479
|
+
max-width: 80rem;
|
|
24480
|
+
}
|
|
24481
|
+
}
|
|
24482
|
+
|
|
24483
|
+
@media (min-width: 96rem) {
|
|
24484
|
+
.container {
|
|
24485
|
+
max-width: 96rem;
|
|
24486
|
+
}
|
|
24487
|
+
}
|
|
24488
|
+
|
|
24443
24489
|
.-mx-1 {
|
|
24444
24490
|
margin-inline: calc(var(--spacing) * -1);
|
|
24445
24491
|
}
|
|
@@ -24464,6 +24510,10 @@ export {
|
|
|
24464
24510
|
margin-top: calc(var(--spacing) * 3);
|
|
24465
24511
|
}
|
|
24466
24512
|
|
|
24513
|
+
.mt-4 {
|
|
24514
|
+
margin-top: calc(var(--spacing) * 4);
|
|
24515
|
+
}
|
|
24516
|
+
|
|
24467
24517
|
.mr-1 {
|
|
24468
24518
|
margin-right: calc(var(--spacing) * 1);
|
|
24469
24519
|
}
|
|
@@ -24492,6 +24542,10 @@ export {
|
|
|
24492
24542
|
margin-bottom: calc(var(--spacing) * 3);
|
|
24493
24543
|
}
|
|
24494
24544
|
|
|
24545
|
+
.mb-5 {
|
|
24546
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
24547
|
+
}
|
|
24548
|
+
|
|
24495
24549
|
.ml-0\\.5 {
|
|
24496
24550
|
margin-left: calc(var(--spacing) * .5);
|
|
24497
24551
|
}
|
|
@@ -24580,6 +24634,10 @@ export {
|
|
|
24580
24634
|
height: calc(var(--spacing) * 10);
|
|
24581
24635
|
}
|
|
24582
24636
|
|
|
24637
|
+
.h-11 {
|
|
24638
|
+
height: calc(var(--spacing) * 11);
|
|
24639
|
+
}
|
|
24640
|
+
|
|
24583
24641
|
.h-12 {
|
|
24584
24642
|
height: calc(var(--spacing) * 12);
|
|
24585
24643
|
}
|
|
@@ -24596,6 +24654,10 @@ export {
|
|
|
24596
24654
|
height: 100%;
|
|
24597
24655
|
}
|
|
24598
24656
|
|
|
24657
|
+
.max-h-28 {
|
|
24658
|
+
max-height: calc(var(--spacing) * 28);
|
|
24659
|
+
}
|
|
24660
|
+
|
|
24599
24661
|
.max-h-36 {
|
|
24600
24662
|
max-height: calc(var(--spacing) * 36);
|
|
24601
24663
|
}
|
|
@@ -24616,6 +24678,10 @@ export {
|
|
|
24616
24678
|
max-height: 200px;
|
|
24617
24679
|
}
|
|
24618
24680
|
|
|
24681
|
+
.max-h-\\[420px\\] {
|
|
24682
|
+
max-height: 420px;
|
|
24683
|
+
}
|
|
24684
|
+
|
|
24619
24685
|
.max-h-full {
|
|
24620
24686
|
max-height: 100%;
|
|
24621
24687
|
}
|
|
@@ -24636,6 +24702,22 @@ export {
|
|
|
24636
24702
|
min-height: 200px;
|
|
24637
24703
|
}
|
|
24638
24704
|
|
|
24705
|
+
.min-h-\\[260px\\] {
|
|
24706
|
+
min-height: 260px;
|
|
24707
|
+
}
|
|
24708
|
+
|
|
24709
|
+
.min-h-\\[320px\\] {
|
|
24710
|
+
min-height: 320px;
|
|
24711
|
+
}
|
|
24712
|
+
|
|
24713
|
+
.min-h-full {
|
|
24714
|
+
min-height: 100%;
|
|
24715
|
+
}
|
|
24716
|
+
|
|
24717
|
+
.w-1 {
|
|
24718
|
+
width: calc(var(--spacing) * 1);
|
|
24719
|
+
}
|
|
24720
|
+
|
|
24639
24721
|
.w-1\\.5 {
|
|
24640
24722
|
width: calc(var(--spacing) * 1.5);
|
|
24641
24723
|
}
|
|
@@ -24700,6 +24782,10 @@ export {
|
|
|
24700
24782
|
width: calc(var(--spacing) * 32);
|
|
24701
24783
|
}
|
|
24702
24784
|
|
|
24785
|
+
.w-56 {
|
|
24786
|
+
width: calc(var(--spacing) * 56);
|
|
24787
|
+
}
|
|
24788
|
+
|
|
24703
24789
|
.w-72 {
|
|
24704
24790
|
width: calc(var(--spacing) * 72);
|
|
24705
24791
|
}
|
|
@@ -24708,6 +24794,10 @@ export {
|
|
|
24708
24794
|
width: 100%;
|
|
24709
24795
|
}
|
|
24710
24796
|
|
|
24797
|
+
.max-w-60 {
|
|
24798
|
+
max-width: calc(var(--spacing) * 60);
|
|
24799
|
+
}
|
|
24800
|
+
|
|
24711
24801
|
.max-w-70 {
|
|
24712
24802
|
max-width: calc(var(--spacing) * 70);
|
|
24713
24803
|
}
|
|
@@ -24724,6 +24814,10 @@ export {
|
|
|
24724
24814
|
min-width: calc(var(--spacing) * 0);
|
|
24725
24815
|
}
|
|
24726
24816
|
|
|
24817
|
+
.min-w-36 {
|
|
24818
|
+
min-width: calc(var(--spacing) * 36);
|
|
24819
|
+
}
|
|
24820
|
+
|
|
24727
24821
|
.min-w-\\[90px\\] {
|
|
24728
24822
|
min-width: 90px;
|
|
24729
24823
|
}
|
|
@@ -24740,6 +24834,10 @@ export {
|
|
|
24740
24834
|
flex-shrink: 0;
|
|
24741
24835
|
}
|
|
24742
24836
|
|
|
24837
|
+
.table-fixed {
|
|
24838
|
+
table-layout: fixed;
|
|
24839
|
+
}
|
|
24840
|
+
|
|
24743
24841
|
.border-collapse {
|
|
24744
24842
|
border-collapse: collapse;
|
|
24745
24843
|
}
|
|
@@ -24759,6 +24857,10 @@ export {
|
|
|
24759
24857
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
24760
24858
|
}
|
|
24761
24859
|
|
|
24860
|
+
.scale-\\[0\\.98\\] {
|
|
24861
|
+
scale: .98;
|
|
24862
|
+
}
|
|
24863
|
+
|
|
24762
24864
|
.transform {
|
|
24763
24865
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
24764
24866
|
}
|
|
@@ -24779,6 +24881,10 @@ export {
|
|
|
24779
24881
|
cursor: pointer;
|
|
24780
24882
|
}
|
|
24781
24883
|
|
|
24884
|
+
.touch-none {
|
|
24885
|
+
touch-action: none;
|
|
24886
|
+
}
|
|
24887
|
+
|
|
24782
24888
|
.resize {
|
|
24783
24889
|
resize: both;
|
|
24784
24890
|
}
|
|
@@ -24787,6 +24893,10 @@ export {
|
|
|
24787
24893
|
resize: none;
|
|
24788
24894
|
}
|
|
24789
24895
|
|
|
24896
|
+
.resize-y {
|
|
24897
|
+
resize: vertical;
|
|
24898
|
+
}
|
|
24899
|
+
|
|
24790
24900
|
.appearance-none {
|
|
24791
24901
|
appearance: none;
|
|
24792
24902
|
}
|
|
@@ -24827,6 +24937,10 @@ export {
|
|
|
24827
24937
|
align-items: center;
|
|
24828
24938
|
}
|
|
24829
24939
|
|
|
24940
|
+
.items-stretch {
|
|
24941
|
+
align-items: stretch;
|
|
24942
|
+
}
|
|
24943
|
+
|
|
24830
24944
|
.justify-between {
|
|
24831
24945
|
justify-content: space-between;
|
|
24832
24946
|
}
|
|
@@ -24891,6 +25005,12 @@ export {
|
|
|
24891
25005
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
24892
25006
|
}
|
|
24893
25007
|
|
|
25008
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
25009
|
+
--tw-space-y-reverse: 0;
|
|
25010
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
25011
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
25012
|
+
}
|
|
25013
|
+
|
|
24894
25014
|
.gap-x-6 {
|
|
24895
25015
|
column-gap: calc(var(--spacing) * 6);
|
|
24896
25016
|
}
|
|
@@ -24913,6 +25033,10 @@ export {
|
|
|
24913
25033
|
overflow: hidden;
|
|
24914
25034
|
}
|
|
24915
25035
|
|
|
25036
|
+
.overflow-x-auto {
|
|
25037
|
+
overflow-x: auto;
|
|
25038
|
+
}
|
|
25039
|
+
|
|
24916
25040
|
.overflow-y-auto {
|
|
24917
25041
|
overflow-y: auto;
|
|
24918
25042
|
}
|
|
@@ -24952,6 +25076,11 @@ export {
|
|
|
24952
25076
|
border-width: 4px;
|
|
24953
25077
|
}
|
|
24954
25078
|
|
|
25079
|
+
.border-t-2 {
|
|
25080
|
+
border-top-style: var(--tw-border-style);
|
|
25081
|
+
border-top-width: 2px;
|
|
25082
|
+
}
|
|
25083
|
+
|
|
24955
25084
|
.border-r {
|
|
24956
25085
|
border-right-style: var(--tw-border-style);
|
|
24957
25086
|
border-right-width: 1px;
|
|
@@ -24981,10 +25110,30 @@ export {
|
|
|
24981
25110
|
border-color: var(--color-black);
|
|
24982
25111
|
}
|
|
24983
25112
|
|
|
25113
|
+
.border-black\\/30 {
|
|
25114
|
+
border-color: #0000004d;
|
|
25115
|
+
}
|
|
25116
|
+
|
|
25117
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
25118
|
+
.border-black\\/30 {
|
|
25119
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
25120
|
+
}
|
|
25121
|
+
}
|
|
25122
|
+
|
|
24984
25123
|
.border-coral-red {
|
|
24985
25124
|
border-color: var(--color-coral-red);
|
|
24986
25125
|
}
|
|
24987
25126
|
|
|
25127
|
+
.border-coral-red\\/30 {
|
|
25128
|
+
border-color: #ff6b6b4d;
|
|
25129
|
+
}
|
|
25130
|
+
|
|
25131
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
25132
|
+
.border-coral-red\\/30 {
|
|
25133
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
25134
|
+
}
|
|
25135
|
+
}
|
|
25136
|
+
|
|
24988
25137
|
.border-coral-red\\/40 {
|
|
24989
25138
|
border-color: #ff6b6b66;
|
|
24990
25139
|
}
|
|
@@ -24995,6 +25144,16 @@ export {
|
|
|
24995
25144
|
}
|
|
24996
25145
|
}
|
|
24997
25146
|
|
|
25147
|
+
.border-electric-blue\\/30 {
|
|
25148
|
+
border-color: #3b82f64d;
|
|
25149
|
+
}
|
|
25150
|
+
|
|
25151
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
25152
|
+
.border-electric-blue\\/30 {
|
|
25153
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
25154
|
+
}
|
|
25155
|
+
}
|
|
25156
|
+
|
|
24998
25157
|
.border-electric-blue\\/40 {
|
|
24999
25158
|
border-color: #3b82f666;
|
|
25000
25159
|
}
|
|
@@ -25013,10 +25172,30 @@ export {
|
|
|
25013
25172
|
border-color: var(--color-gray-700);
|
|
25014
25173
|
}
|
|
25015
25174
|
|
|
25175
|
+
.border-hot-pink\\/30 {
|
|
25176
|
+
border-color: #ec48994d;
|
|
25177
|
+
}
|
|
25178
|
+
|
|
25179
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
25180
|
+
.border-hot-pink\\/30 {
|
|
25181
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
25182
|
+
}
|
|
25183
|
+
}
|
|
25184
|
+
|
|
25016
25185
|
.border-neon-green {
|
|
25017
25186
|
border-color: var(--color-neon-green);
|
|
25018
25187
|
}
|
|
25019
25188
|
|
|
25189
|
+
.border-neon-green\\/30 {
|
|
25190
|
+
border-color: #84cc164d;
|
|
25191
|
+
}
|
|
25192
|
+
|
|
25193
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
25194
|
+
.border-neon-green\\/30 {
|
|
25195
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
25196
|
+
}
|
|
25197
|
+
}
|
|
25198
|
+
|
|
25020
25199
|
.border-neon-green\\/40 {
|
|
25021
25200
|
border-color: #84cc1666;
|
|
25022
25201
|
}
|
|
@@ -25031,6 +25210,16 @@ export {
|
|
|
25031
25210
|
border-color: var(--color-primary);
|
|
25032
25211
|
}
|
|
25033
25212
|
|
|
25213
|
+
.border-primary\\/30 {
|
|
25214
|
+
border-color: #f9b11f4d;
|
|
25215
|
+
}
|
|
25216
|
+
|
|
25217
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
25218
|
+
.border-primary\\/30 {
|
|
25219
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
25220
|
+
}
|
|
25221
|
+
}
|
|
25222
|
+
|
|
25034
25223
|
.border-primary\\/40 {
|
|
25035
25224
|
border-color: #f9b11f66;
|
|
25036
25225
|
}
|
|
@@ -25045,6 +25234,16 @@ export {
|
|
|
25045
25234
|
border-color: #0000;
|
|
25046
25235
|
}
|
|
25047
25236
|
|
|
25237
|
+
.border-vibrant-purple\\/30 {
|
|
25238
|
+
border-color: #a855f74d;
|
|
25239
|
+
}
|
|
25240
|
+
|
|
25241
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
25242
|
+
.border-vibrant-purple\\/30 {
|
|
25243
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
25244
|
+
}
|
|
25245
|
+
}
|
|
25246
|
+
|
|
25048
25247
|
.border-white\\/5 {
|
|
25049
25248
|
border-color: #ffffff0d;
|
|
25050
25249
|
}
|
|
@@ -25141,6 +25340,16 @@ export {
|
|
|
25141
25340
|
background-color: var(--color-electric-blue);
|
|
25142
25341
|
}
|
|
25143
25342
|
|
|
25343
|
+
.bg-electric-blue\\/10 {
|
|
25344
|
+
background-color: #3b82f61a;
|
|
25345
|
+
}
|
|
25346
|
+
|
|
25347
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
25348
|
+
.bg-electric-blue\\/10 {
|
|
25349
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
25350
|
+
}
|
|
25351
|
+
}
|
|
25352
|
+
|
|
25144
25353
|
.bg-electric-blue\\/20 {
|
|
25145
25354
|
background-color: #3b82f633;
|
|
25146
25355
|
}
|
|
@@ -25155,6 +25364,16 @@ export {
|
|
|
25155
25364
|
background-color: var(--color-hot-pink);
|
|
25156
25365
|
}
|
|
25157
25366
|
|
|
25367
|
+
.bg-hot-pink\\/10 {
|
|
25368
|
+
background-color: #ec48991a;
|
|
25369
|
+
}
|
|
25370
|
+
|
|
25371
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
25372
|
+
.bg-hot-pink\\/10 {
|
|
25373
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
25374
|
+
}
|
|
25375
|
+
}
|
|
25376
|
+
|
|
25158
25377
|
.bg-neon-green {
|
|
25159
25378
|
background-color: var(--color-neon-green);
|
|
25160
25379
|
}
|
|
@@ -25223,6 +25442,16 @@ export {
|
|
|
25223
25442
|
}
|
|
25224
25443
|
}
|
|
25225
25444
|
|
|
25445
|
+
.bg-primary\\/30 {
|
|
25446
|
+
background-color: #f9b11f4d;
|
|
25447
|
+
}
|
|
25448
|
+
|
|
25449
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
25450
|
+
.bg-primary\\/30 {
|
|
25451
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
25452
|
+
}
|
|
25453
|
+
}
|
|
25454
|
+
|
|
25226
25455
|
.bg-transparent {
|
|
25227
25456
|
background-color: #0000;
|
|
25228
25457
|
}
|
|
@@ -25231,6 +25460,16 @@ export {
|
|
|
25231
25460
|
background-color: var(--color-vibrant-purple);
|
|
25232
25461
|
}
|
|
25233
25462
|
|
|
25463
|
+
.bg-vibrant-purple\\/10 {
|
|
25464
|
+
background-color: #a855f71a;
|
|
25465
|
+
}
|
|
25466
|
+
|
|
25467
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
25468
|
+
.bg-vibrant-purple\\/10 {
|
|
25469
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
25470
|
+
}
|
|
25471
|
+
}
|
|
25472
|
+
|
|
25234
25473
|
.bg-white {
|
|
25235
25474
|
background-color: var(--color-white);
|
|
25236
25475
|
}
|
|
@@ -25307,6 +25546,10 @@ export {
|
|
|
25307
25546
|
padding: calc(var(--spacing) * 3);
|
|
25308
25547
|
}
|
|
25309
25548
|
|
|
25549
|
+
.p-3\\.5 {
|
|
25550
|
+
padding: calc(var(--spacing) * 3.5);
|
|
25551
|
+
}
|
|
25552
|
+
|
|
25310
25553
|
.p-4 {
|
|
25311
25554
|
padding: calc(var(--spacing) * 4);
|
|
25312
25555
|
}
|
|
@@ -25371,6 +25614,10 @@ export {
|
|
|
25371
25614
|
padding-block: calc(var(--spacing) * 3);
|
|
25372
25615
|
}
|
|
25373
25616
|
|
|
25617
|
+
.py-4 {
|
|
25618
|
+
padding-block: calc(var(--spacing) * 4);
|
|
25619
|
+
}
|
|
25620
|
+
|
|
25374
25621
|
.py-6 {
|
|
25375
25622
|
padding-block: calc(var(--spacing) * 6);
|
|
25376
25623
|
}
|
|
@@ -25379,6 +25626,10 @@ export {
|
|
|
25379
25626
|
padding-block: calc(var(--spacing) * 8);
|
|
25380
25627
|
}
|
|
25381
25628
|
|
|
25629
|
+
.pt-3 {
|
|
25630
|
+
padding-top: calc(var(--spacing) * 3);
|
|
25631
|
+
}
|
|
25632
|
+
|
|
25382
25633
|
.pr-1 {
|
|
25383
25634
|
padding-right: calc(var(--spacing) * 1);
|
|
25384
25635
|
}
|
|
@@ -25403,6 +25654,14 @@ export {
|
|
|
25403
25654
|
padding-right: calc(var(--spacing) * 11);
|
|
25404
25655
|
}
|
|
25405
25656
|
|
|
25657
|
+
.pb-1 {
|
|
25658
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
25659
|
+
}
|
|
25660
|
+
|
|
25661
|
+
.pb-2 {
|
|
25662
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
25663
|
+
}
|
|
25664
|
+
|
|
25406
25665
|
.pl-1\\.5 {
|
|
25407
25666
|
padding-left: calc(var(--spacing) * 1.5);
|
|
25408
25667
|
}
|
|
@@ -25443,6 +25702,10 @@ export {
|
|
|
25443
25702
|
vertical-align: middle;
|
|
25444
25703
|
}
|
|
25445
25704
|
|
|
25705
|
+
.align-top {
|
|
25706
|
+
vertical-align: top;
|
|
25707
|
+
}
|
|
25708
|
+
|
|
25446
25709
|
.font-mono {
|
|
25447
25710
|
font-family: var(--font-mono);
|
|
25448
25711
|
}
|
|
@@ -25504,6 +25767,11 @@ export {
|
|
|
25504
25767
|
line-height: calc(var(--spacing) * 6);
|
|
25505
25768
|
}
|
|
25506
25769
|
|
|
25770
|
+
.leading-7 {
|
|
25771
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
25772
|
+
line-height: calc(var(--spacing) * 7);
|
|
25773
|
+
}
|
|
25774
|
+
|
|
25507
25775
|
.leading-none {
|
|
25508
25776
|
--tw-leading: 1;
|
|
25509
25777
|
line-height: 1;
|
|
@@ -25534,6 +25802,10 @@ export {
|
|
|
25534
25802
|
letter-spacing: var(--tracking-widest);
|
|
25535
25803
|
}
|
|
25536
25804
|
|
|
25805
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
25806
|
+
overflow-wrap: anywhere;
|
|
25807
|
+
}
|
|
25808
|
+
|
|
25537
25809
|
.break-all {
|
|
25538
25810
|
word-break: break-all;
|
|
25539
25811
|
}
|
|
@@ -25730,6 +26002,10 @@ export {
|
|
|
25730
26002
|
opacity: .7;
|
|
25731
26003
|
}
|
|
25732
26004
|
|
|
26005
|
+
.opacity-100 {
|
|
26006
|
+
opacity: 1;
|
|
26007
|
+
}
|
|
26008
|
+
|
|
25733
26009
|
.shadow-hard {
|
|
25734
26010
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
25735
26011
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -25973,6 +26249,11 @@ export {
|
|
|
25973
26249
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
25974
26250
|
}
|
|
25975
26251
|
|
|
26252
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
26253
|
+
--tw-translate-x: 2px;
|
|
26254
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
26255
|
+
}
|
|
26256
|
+
|
|
25976
26257
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
25977
26258
|
--tw-translate-x: 4px;
|
|
25978
26259
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -25983,6 +26264,11 @@ export {
|
|
|
25983
26264
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
25984
26265
|
}
|
|
25985
26266
|
|
|
26267
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
26268
|
+
--tw-translate-y: 2px;
|
|
26269
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
26270
|
+
}
|
|
26271
|
+
|
|
25986
26272
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
25987
26273
|
--tw-translate-y: 4px;
|
|
25988
26274
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -26059,6 +26345,10 @@ export {
|
|
|
26059
26345
|
.xl\\:grid-cols-3 {
|
|
26060
26346
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
26061
26347
|
}
|
|
26348
|
+
|
|
26349
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
26350
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
26351
|
+
}
|
|
26062
26352
|
}
|
|
26063
26353
|
}
|
|
26064
26354
|
|