@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/js-runner.mjs
CHANGED
|
@@ -40085,6 +40085,10 @@ export {
|
|
|
40085
40085
|
position: relative;
|
|
40086
40086
|
}
|
|
40087
40087
|
|
|
40088
|
+
.sticky {
|
|
40089
|
+
position: sticky;
|
|
40090
|
+
}
|
|
40091
|
+
|
|
40088
40092
|
.inset-0 {
|
|
40089
40093
|
inset: calc(var(--spacing) * 0);
|
|
40090
40094
|
}
|
|
@@ -40097,6 +40101,10 @@ export {
|
|
|
40097
40101
|
inset-inline-end: var(--spacing);
|
|
40098
40102
|
}
|
|
40099
40103
|
|
|
40104
|
+
.top-0 {
|
|
40105
|
+
top: calc(var(--spacing) * 0);
|
|
40106
|
+
}
|
|
40107
|
+
|
|
40100
40108
|
.top-1\\/2 {
|
|
40101
40109
|
top: 50%;
|
|
40102
40110
|
}
|
|
@@ -40109,6 +40117,10 @@ export {
|
|
|
40109
40117
|
left: calc(var(--spacing) * 2);
|
|
40110
40118
|
}
|
|
40111
40119
|
|
|
40120
|
+
.z-10 {
|
|
40121
|
+
z-index: 10;
|
|
40122
|
+
}
|
|
40123
|
+
|
|
40112
40124
|
.z-50 {
|
|
40113
40125
|
z-index: 50;
|
|
40114
40126
|
}
|
|
@@ -40117,6 +40129,40 @@ export {
|
|
|
40117
40129
|
grid-column: span 2 / span 2;
|
|
40118
40130
|
}
|
|
40119
40131
|
|
|
40132
|
+
.container {
|
|
40133
|
+
width: 100%;
|
|
40134
|
+
}
|
|
40135
|
+
|
|
40136
|
+
@media (min-width: 40rem) {
|
|
40137
|
+
.container {
|
|
40138
|
+
max-width: 40rem;
|
|
40139
|
+
}
|
|
40140
|
+
}
|
|
40141
|
+
|
|
40142
|
+
@media (min-width: 48rem) {
|
|
40143
|
+
.container {
|
|
40144
|
+
max-width: 48rem;
|
|
40145
|
+
}
|
|
40146
|
+
}
|
|
40147
|
+
|
|
40148
|
+
@media (min-width: 64rem) {
|
|
40149
|
+
.container {
|
|
40150
|
+
max-width: 64rem;
|
|
40151
|
+
}
|
|
40152
|
+
}
|
|
40153
|
+
|
|
40154
|
+
@media (min-width: 80rem) {
|
|
40155
|
+
.container {
|
|
40156
|
+
max-width: 80rem;
|
|
40157
|
+
}
|
|
40158
|
+
}
|
|
40159
|
+
|
|
40160
|
+
@media (min-width: 96rem) {
|
|
40161
|
+
.container {
|
|
40162
|
+
max-width: 96rem;
|
|
40163
|
+
}
|
|
40164
|
+
}
|
|
40165
|
+
|
|
40120
40166
|
.-mx-1 {
|
|
40121
40167
|
margin-inline: calc(var(--spacing) * -1);
|
|
40122
40168
|
}
|
|
@@ -40141,6 +40187,10 @@ export {
|
|
|
40141
40187
|
margin-top: calc(var(--spacing) * 3);
|
|
40142
40188
|
}
|
|
40143
40189
|
|
|
40190
|
+
.mt-4 {
|
|
40191
|
+
margin-top: calc(var(--spacing) * 4);
|
|
40192
|
+
}
|
|
40193
|
+
|
|
40144
40194
|
.mr-1 {
|
|
40145
40195
|
margin-right: calc(var(--spacing) * 1);
|
|
40146
40196
|
}
|
|
@@ -40169,6 +40219,10 @@ export {
|
|
|
40169
40219
|
margin-bottom: calc(var(--spacing) * 3);
|
|
40170
40220
|
}
|
|
40171
40221
|
|
|
40222
|
+
.mb-5 {
|
|
40223
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
40224
|
+
}
|
|
40225
|
+
|
|
40172
40226
|
.ml-0\\.5 {
|
|
40173
40227
|
margin-left: calc(var(--spacing) * .5);
|
|
40174
40228
|
}
|
|
@@ -40257,6 +40311,10 @@ export {
|
|
|
40257
40311
|
height: calc(var(--spacing) * 10);
|
|
40258
40312
|
}
|
|
40259
40313
|
|
|
40314
|
+
.h-11 {
|
|
40315
|
+
height: calc(var(--spacing) * 11);
|
|
40316
|
+
}
|
|
40317
|
+
|
|
40260
40318
|
.h-12 {
|
|
40261
40319
|
height: calc(var(--spacing) * 12);
|
|
40262
40320
|
}
|
|
@@ -40273,6 +40331,10 @@ export {
|
|
|
40273
40331
|
height: 100%;
|
|
40274
40332
|
}
|
|
40275
40333
|
|
|
40334
|
+
.max-h-28 {
|
|
40335
|
+
max-height: calc(var(--spacing) * 28);
|
|
40336
|
+
}
|
|
40337
|
+
|
|
40276
40338
|
.max-h-36 {
|
|
40277
40339
|
max-height: calc(var(--spacing) * 36);
|
|
40278
40340
|
}
|
|
@@ -40293,6 +40355,10 @@ export {
|
|
|
40293
40355
|
max-height: 200px;
|
|
40294
40356
|
}
|
|
40295
40357
|
|
|
40358
|
+
.max-h-\\[420px\\] {
|
|
40359
|
+
max-height: 420px;
|
|
40360
|
+
}
|
|
40361
|
+
|
|
40296
40362
|
.max-h-full {
|
|
40297
40363
|
max-height: 100%;
|
|
40298
40364
|
}
|
|
@@ -40313,6 +40379,22 @@ export {
|
|
|
40313
40379
|
min-height: 200px;
|
|
40314
40380
|
}
|
|
40315
40381
|
|
|
40382
|
+
.min-h-\\[260px\\] {
|
|
40383
|
+
min-height: 260px;
|
|
40384
|
+
}
|
|
40385
|
+
|
|
40386
|
+
.min-h-\\[320px\\] {
|
|
40387
|
+
min-height: 320px;
|
|
40388
|
+
}
|
|
40389
|
+
|
|
40390
|
+
.min-h-full {
|
|
40391
|
+
min-height: 100%;
|
|
40392
|
+
}
|
|
40393
|
+
|
|
40394
|
+
.w-1 {
|
|
40395
|
+
width: calc(var(--spacing) * 1);
|
|
40396
|
+
}
|
|
40397
|
+
|
|
40316
40398
|
.w-1\\.5 {
|
|
40317
40399
|
width: calc(var(--spacing) * 1.5);
|
|
40318
40400
|
}
|
|
@@ -40377,6 +40459,10 @@ export {
|
|
|
40377
40459
|
width: calc(var(--spacing) * 32);
|
|
40378
40460
|
}
|
|
40379
40461
|
|
|
40462
|
+
.w-56 {
|
|
40463
|
+
width: calc(var(--spacing) * 56);
|
|
40464
|
+
}
|
|
40465
|
+
|
|
40380
40466
|
.w-72 {
|
|
40381
40467
|
width: calc(var(--spacing) * 72);
|
|
40382
40468
|
}
|
|
@@ -40385,6 +40471,10 @@ export {
|
|
|
40385
40471
|
width: 100%;
|
|
40386
40472
|
}
|
|
40387
40473
|
|
|
40474
|
+
.max-w-60 {
|
|
40475
|
+
max-width: calc(var(--spacing) * 60);
|
|
40476
|
+
}
|
|
40477
|
+
|
|
40388
40478
|
.max-w-70 {
|
|
40389
40479
|
max-width: calc(var(--spacing) * 70);
|
|
40390
40480
|
}
|
|
@@ -40401,6 +40491,10 @@ export {
|
|
|
40401
40491
|
min-width: calc(var(--spacing) * 0);
|
|
40402
40492
|
}
|
|
40403
40493
|
|
|
40494
|
+
.min-w-36 {
|
|
40495
|
+
min-width: calc(var(--spacing) * 36);
|
|
40496
|
+
}
|
|
40497
|
+
|
|
40404
40498
|
.min-w-\\[90px\\] {
|
|
40405
40499
|
min-width: 90px;
|
|
40406
40500
|
}
|
|
@@ -40417,6 +40511,10 @@ export {
|
|
|
40417
40511
|
flex-shrink: 0;
|
|
40418
40512
|
}
|
|
40419
40513
|
|
|
40514
|
+
.table-fixed {
|
|
40515
|
+
table-layout: fixed;
|
|
40516
|
+
}
|
|
40517
|
+
|
|
40420
40518
|
.border-collapse {
|
|
40421
40519
|
border-collapse: collapse;
|
|
40422
40520
|
}
|
|
@@ -40436,6 +40534,10 @@ export {
|
|
|
40436
40534
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
40437
40535
|
}
|
|
40438
40536
|
|
|
40537
|
+
.scale-\\[0\\.98\\] {
|
|
40538
|
+
scale: .98;
|
|
40539
|
+
}
|
|
40540
|
+
|
|
40439
40541
|
.transform {
|
|
40440
40542
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
40441
40543
|
}
|
|
@@ -40456,6 +40558,10 @@ export {
|
|
|
40456
40558
|
cursor: pointer;
|
|
40457
40559
|
}
|
|
40458
40560
|
|
|
40561
|
+
.touch-none {
|
|
40562
|
+
touch-action: none;
|
|
40563
|
+
}
|
|
40564
|
+
|
|
40459
40565
|
.resize {
|
|
40460
40566
|
resize: both;
|
|
40461
40567
|
}
|
|
@@ -40464,6 +40570,10 @@ export {
|
|
|
40464
40570
|
resize: none;
|
|
40465
40571
|
}
|
|
40466
40572
|
|
|
40573
|
+
.resize-y {
|
|
40574
|
+
resize: vertical;
|
|
40575
|
+
}
|
|
40576
|
+
|
|
40467
40577
|
.appearance-none {
|
|
40468
40578
|
appearance: none;
|
|
40469
40579
|
}
|
|
@@ -40504,6 +40614,10 @@ export {
|
|
|
40504
40614
|
align-items: center;
|
|
40505
40615
|
}
|
|
40506
40616
|
|
|
40617
|
+
.items-stretch {
|
|
40618
|
+
align-items: stretch;
|
|
40619
|
+
}
|
|
40620
|
+
|
|
40507
40621
|
.justify-between {
|
|
40508
40622
|
justify-content: space-between;
|
|
40509
40623
|
}
|
|
@@ -40568,6 +40682,12 @@ export {
|
|
|
40568
40682
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
40569
40683
|
}
|
|
40570
40684
|
|
|
40685
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
40686
|
+
--tw-space-y-reverse: 0;
|
|
40687
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
40688
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
40689
|
+
}
|
|
40690
|
+
|
|
40571
40691
|
.gap-x-6 {
|
|
40572
40692
|
column-gap: calc(var(--spacing) * 6);
|
|
40573
40693
|
}
|
|
@@ -40590,6 +40710,10 @@ export {
|
|
|
40590
40710
|
overflow: hidden;
|
|
40591
40711
|
}
|
|
40592
40712
|
|
|
40713
|
+
.overflow-x-auto {
|
|
40714
|
+
overflow-x: auto;
|
|
40715
|
+
}
|
|
40716
|
+
|
|
40593
40717
|
.overflow-y-auto {
|
|
40594
40718
|
overflow-y: auto;
|
|
40595
40719
|
}
|
|
@@ -40629,6 +40753,11 @@ export {
|
|
|
40629
40753
|
border-width: 4px;
|
|
40630
40754
|
}
|
|
40631
40755
|
|
|
40756
|
+
.border-t-2 {
|
|
40757
|
+
border-top-style: var(--tw-border-style);
|
|
40758
|
+
border-top-width: 2px;
|
|
40759
|
+
}
|
|
40760
|
+
|
|
40632
40761
|
.border-r {
|
|
40633
40762
|
border-right-style: var(--tw-border-style);
|
|
40634
40763
|
border-right-width: 1px;
|
|
@@ -40658,10 +40787,30 @@ export {
|
|
|
40658
40787
|
border-color: var(--color-black);
|
|
40659
40788
|
}
|
|
40660
40789
|
|
|
40790
|
+
.border-black\\/30 {
|
|
40791
|
+
border-color: #0000004d;
|
|
40792
|
+
}
|
|
40793
|
+
|
|
40794
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
40795
|
+
.border-black\\/30 {
|
|
40796
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
40797
|
+
}
|
|
40798
|
+
}
|
|
40799
|
+
|
|
40661
40800
|
.border-coral-red {
|
|
40662
40801
|
border-color: var(--color-coral-red);
|
|
40663
40802
|
}
|
|
40664
40803
|
|
|
40804
|
+
.border-coral-red\\/30 {
|
|
40805
|
+
border-color: #ff6b6b4d;
|
|
40806
|
+
}
|
|
40807
|
+
|
|
40808
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
40809
|
+
.border-coral-red\\/30 {
|
|
40810
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
40811
|
+
}
|
|
40812
|
+
}
|
|
40813
|
+
|
|
40665
40814
|
.border-coral-red\\/40 {
|
|
40666
40815
|
border-color: #ff6b6b66;
|
|
40667
40816
|
}
|
|
@@ -40672,6 +40821,16 @@ export {
|
|
|
40672
40821
|
}
|
|
40673
40822
|
}
|
|
40674
40823
|
|
|
40824
|
+
.border-electric-blue\\/30 {
|
|
40825
|
+
border-color: #3b82f64d;
|
|
40826
|
+
}
|
|
40827
|
+
|
|
40828
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
40829
|
+
.border-electric-blue\\/30 {
|
|
40830
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
40831
|
+
}
|
|
40832
|
+
}
|
|
40833
|
+
|
|
40675
40834
|
.border-electric-blue\\/40 {
|
|
40676
40835
|
border-color: #3b82f666;
|
|
40677
40836
|
}
|
|
@@ -40690,10 +40849,30 @@ export {
|
|
|
40690
40849
|
border-color: var(--color-gray-700);
|
|
40691
40850
|
}
|
|
40692
40851
|
|
|
40852
|
+
.border-hot-pink\\/30 {
|
|
40853
|
+
border-color: #ec48994d;
|
|
40854
|
+
}
|
|
40855
|
+
|
|
40856
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
40857
|
+
.border-hot-pink\\/30 {
|
|
40858
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
40859
|
+
}
|
|
40860
|
+
}
|
|
40861
|
+
|
|
40693
40862
|
.border-neon-green {
|
|
40694
40863
|
border-color: var(--color-neon-green);
|
|
40695
40864
|
}
|
|
40696
40865
|
|
|
40866
|
+
.border-neon-green\\/30 {
|
|
40867
|
+
border-color: #84cc164d;
|
|
40868
|
+
}
|
|
40869
|
+
|
|
40870
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
40871
|
+
.border-neon-green\\/30 {
|
|
40872
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
40873
|
+
}
|
|
40874
|
+
}
|
|
40875
|
+
|
|
40697
40876
|
.border-neon-green\\/40 {
|
|
40698
40877
|
border-color: #84cc1666;
|
|
40699
40878
|
}
|
|
@@ -40708,6 +40887,16 @@ export {
|
|
|
40708
40887
|
border-color: var(--color-primary);
|
|
40709
40888
|
}
|
|
40710
40889
|
|
|
40890
|
+
.border-primary\\/30 {
|
|
40891
|
+
border-color: #f9b11f4d;
|
|
40892
|
+
}
|
|
40893
|
+
|
|
40894
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
40895
|
+
.border-primary\\/30 {
|
|
40896
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
40897
|
+
}
|
|
40898
|
+
}
|
|
40899
|
+
|
|
40711
40900
|
.border-primary\\/40 {
|
|
40712
40901
|
border-color: #f9b11f66;
|
|
40713
40902
|
}
|
|
@@ -40722,6 +40911,16 @@ export {
|
|
|
40722
40911
|
border-color: #0000;
|
|
40723
40912
|
}
|
|
40724
40913
|
|
|
40914
|
+
.border-vibrant-purple\\/30 {
|
|
40915
|
+
border-color: #a855f74d;
|
|
40916
|
+
}
|
|
40917
|
+
|
|
40918
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
40919
|
+
.border-vibrant-purple\\/30 {
|
|
40920
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
40921
|
+
}
|
|
40922
|
+
}
|
|
40923
|
+
|
|
40725
40924
|
.border-white\\/5 {
|
|
40726
40925
|
border-color: #ffffff0d;
|
|
40727
40926
|
}
|
|
@@ -40818,6 +41017,16 @@ export {
|
|
|
40818
41017
|
background-color: var(--color-electric-blue);
|
|
40819
41018
|
}
|
|
40820
41019
|
|
|
41020
|
+
.bg-electric-blue\\/10 {
|
|
41021
|
+
background-color: #3b82f61a;
|
|
41022
|
+
}
|
|
41023
|
+
|
|
41024
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
41025
|
+
.bg-electric-blue\\/10 {
|
|
41026
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
41027
|
+
}
|
|
41028
|
+
}
|
|
41029
|
+
|
|
40821
41030
|
.bg-electric-blue\\/20 {
|
|
40822
41031
|
background-color: #3b82f633;
|
|
40823
41032
|
}
|
|
@@ -40832,6 +41041,16 @@ export {
|
|
|
40832
41041
|
background-color: var(--color-hot-pink);
|
|
40833
41042
|
}
|
|
40834
41043
|
|
|
41044
|
+
.bg-hot-pink\\/10 {
|
|
41045
|
+
background-color: #ec48991a;
|
|
41046
|
+
}
|
|
41047
|
+
|
|
41048
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
41049
|
+
.bg-hot-pink\\/10 {
|
|
41050
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
41051
|
+
}
|
|
41052
|
+
}
|
|
41053
|
+
|
|
40835
41054
|
.bg-neon-green {
|
|
40836
41055
|
background-color: var(--color-neon-green);
|
|
40837
41056
|
}
|
|
@@ -40900,6 +41119,16 @@ export {
|
|
|
40900
41119
|
}
|
|
40901
41120
|
}
|
|
40902
41121
|
|
|
41122
|
+
.bg-primary\\/30 {
|
|
41123
|
+
background-color: #f9b11f4d;
|
|
41124
|
+
}
|
|
41125
|
+
|
|
41126
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
41127
|
+
.bg-primary\\/30 {
|
|
41128
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
41129
|
+
}
|
|
41130
|
+
}
|
|
41131
|
+
|
|
40903
41132
|
.bg-transparent {
|
|
40904
41133
|
background-color: #0000;
|
|
40905
41134
|
}
|
|
@@ -40908,6 +41137,16 @@ export {
|
|
|
40908
41137
|
background-color: var(--color-vibrant-purple);
|
|
40909
41138
|
}
|
|
40910
41139
|
|
|
41140
|
+
.bg-vibrant-purple\\/10 {
|
|
41141
|
+
background-color: #a855f71a;
|
|
41142
|
+
}
|
|
41143
|
+
|
|
41144
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
41145
|
+
.bg-vibrant-purple\\/10 {
|
|
41146
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
41147
|
+
}
|
|
41148
|
+
}
|
|
41149
|
+
|
|
40911
41150
|
.bg-white {
|
|
40912
41151
|
background-color: var(--color-white);
|
|
40913
41152
|
}
|
|
@@ -40984,6 +41223,10 @@ export {
|
|
|
40984
41223
|
padding: calc(var(--spacing) * 3);
|
|
40985
41224
|
}
|
|
40986
41225
|
|
|
41226
|
+
.p-3\\.5 {
|
|
41227
|
+
padding: calc(var(--spacing) * 3.5);
|
|
41228
|
+
}
|
|
41229
|
+
|
|
40987
41230
|
.p-4 {
|
|
40988
41231
|
padding: calc(var(--spacing) * 4);
|
|
40989
41232
|
}
|
|
@@ -41048,6 +41291,10 @@ export {
|
|
|
41048
41291
|
padding-block: calc(var(--spacing) * 3);
|
|
41049
41292
|
}
|
|
41050
41293
|
|
|
41294
|
+
.py-4 {
|
|
41295
|
+
padding-block: calc(var(--spacing) * 4);
|
|
41296
|
+
}
|
|
41297
|
+
|
|
41051
41298
|
.py-6 {
|
|
41052
41299
|
padding-block: calc(var(--spacing) * 6);
|
|
41053
41300
|
}
|
|
@@ -41056,6 +41303,10 @@ export {
|
|
|
41056
41303
|
padding-block: calc(var(--spacing) * 8);
|
|
41057
41304
|
}
|
|
41058
41305
|
|
|
41306
|
+
.pt-3 {
|
|
41307
|
+
padding-top: calc(var(--spacing) * 3);
|
|
41308
|
+
}
|
|
41309
|
+
|
|
41059
41310
|
.pr-1 {
|
|
41060
41311
|
padding-right: calc(var(--spacing) * 1);
|
|
41061
41312
|
}
|
|
@@ -41080,6 +41331,14 @@ export {
|
|
|
41080
41331
|
padding-right: calc(var(--spacing) * 11);
|
|
41081
41332
|
}
|
|
41082
41333
|
|
|
41334
|
+
.pb-1 {
|
|
41335
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
41336
|
+
}
|
|
41337
|
+
|
|
41338
|
+
.pb-2 {
|
|
41339
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
41340
|
+
}
|
|
41341
|
+
|
|
41083
41342
|
.pl-1\\.5 {
|
|
41084
41343
|
padding-left: calc(var(--spacing) * 1.5);
|
|
41085
41344
|
}
|
|
@@ -41120,6 +41379,10 @@ export {
|
|
|
41120
41379
|
vertical-align: middle;
|
|
41121
41380
|
}
|
|
41122
41381
|
|
|
41382
|
+
.align-top {
|
|
41383
|
+
vertical-align: top;
|
|
41384
|
+
}
|
|
41385
|
+
|
|
41123
41386
|
.font-mono {
|
|
41124
41387
|
font-family: var(--font-mono);
|
|
41125
41388
|
}
|
|
@@ -41181,6 +41444,11 @@ export {
|
|
|
41181
41444
|
line-height: calc(var(--spacing) * 6);
|
|
41182
41445
|
}
|
|
41183
41446
|
|
|
41447
|
+
.leading-7 {
|
|
41448
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
41449
|
+
line-height: calc(var(--spacing) * 7);
|
|
41450
|
+
}
|
|
41451
|
+
|
|
41184
41452
|
.leading-none {
|
|
41185
41453
|
--tw-leading: 1;
|
|
41186
41454
|
line-height: 1;
|
|
@@ -41211,6 +41479,10 @@ export {
|
|
|
41211
41479
|
letter-spacing: var(--tracking-widest);
|
|
41212
41480
|
}
|
|
41213
41481
|
|
|
41482
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
41483
|
+
overflow-wrap: anywhere;
|
|
41484
|
+
}
|
|
41485
|
+
|
|
41214
41486
|
.break-all {
|
|
41215
41487
|
word-break: break-all;
|
|
41216
41488
|
}
|
|
@@ -41407,6 +41679,10 @@ export {
|
|
|
41407
41679
|
opacity: .7;
|
|
41408
41680
|
}
|
|
41409
41681
|
|
|
41682
|
+
.opacity-100 {
|
|
41683
|
+
opacity: 1;
|
|
41684
|
+
}
|
|
41685
|
+
|
|
41410
41686
|
.shadow-hard {
|
|
41411
41687
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
41412
41688
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -41650,6 +41926,11 @@ export {
|
|
|
41650
41926
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
41651
41927
|
}
|
|
41652
41928
|
|
|
41929
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
41930
|
+
--tw-translate-x: 2px;
|
|
41931
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
41932
|
+
}
|
|
41933
|
+
|
|
41653
41934
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
41654
41935
|
--tw-translate-x: 4px;
|
|
41655
41936
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -41660,6 +41941,11 @@ export {
|
|
|
41660
41941
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
41661
41942
|
}
|
|
41662
41943
|
|
|
41944
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
41945
|
+
--tw-translate-y: 2px;
|
|
41946
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
41947
|
+
}
|
|
41948
|
+
|
|
41663
41949
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
41664
41950
|
--tw-translate-y: 4px;
|
|
41665
41951
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -41736,6 +42022,10 @@ export {
|
|
|
41736
42022
|
.xl\\:grid-cols-3 {
|
|
41737
42023
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
41738
42024
|
}
|
|
42025
|
+
|
|
42026
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
42027
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
42028
|
+
}
|
|
41739
42029
|
}
|
|
41740
42030
|
}
|
|
41741
42031
|
|