@agrada_digital/pbm 0.0.128 → 0.0.129

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/index.css DELETED
@@ -1,1432 +0,0 @@
1
- /* src/pbm-scoped.css */
2
- @layer properties;
3
- @layer pbm-library {
4
- @layer theme, base, components, utilities;
5
- @layer theme {
6
- :root,
7
- :host {
8
- --font-sans:
9
- ui-sans-serif,
10
- system-ui,
11
- sans-serif,
12
- "Apple Color Emoji",
13
- "Segoe UI Emoji",
14
- "Segoe UI Symbol",
15
- "Noto Color Emoji";
16
- --font-mono:
17
- ui-monospace,
18
- SFMono-Regular,
19
- Menlo,
20
- Monaco,
21
- Consolas,
22
- "Liberation Mono",
23
- "Courier New",
24
- monospace;
25
- --color-red-50: oklch(97.1% 0.013 17.38);
26
- --color-red-300: oklch(80.8% 0.114 19.571);
27
- --color-red-400: oklch(70.4% 0.191 22.216);
28
- --color-red-500: oklch(63.7% 0.237 25.331);
29
- --color-red-600: oklch(57.7% 0.245 27.325);
30
- --color-green-100: oklch(96.2% 0.044 156.743);
31
- --color-green-400: oklch(79.2% 0.209 151.711);
32
- --color-green-500: oklch(72.3% 0.219 149.579);
33
- --color-emerald-50: oklch(97.9% 0.021 166.113);
34
- --color-emerald-200: oklch(90.5% 0.093 164.15);
35
- --color-emerald-500: oklch(69.6% 0.17 162.48);
36
- --color-emerald-600: oklch(59.6% 0.145 163.225);
37
- --color-emerald-700: oklch(50.8% 0.118 165.612);
38
- --color-blue-400: oklch(70.7% 0.165 254.624);
39
- --color-blue-500: oklch(62.3% 0.214 259.815);
40
- --color-gray-50: oklch(98.5% 0.002 247.839);
41
- --color-gray-100: oklch(96.7% 0.003 264.542);
42
- --color-gray-200: oklch(92.8% 0.006 264.531);
43
- --color-gray-300: oklch(87.2% 0.01 258.338);
44
- --color-gray-400: oklch(70.7% 0.022 261.325);
45
- --color-gray-500: oklch(55.1% 0.027 264.364);
46
- --color-gray-600: oklch(44.6% 0.03 256.802);
47
- --color-gray-800: oklch(27.8% 0.033 256.848);
48
- --color-zinc-50: oklch(98.5% 0 0);
49
- --color-zinc-100: oklch(96.7% 0.001 286.375);
50
- --color-zinc-200: oklch(92% 0.004 286.32);
51
- --color-zinc-300: oklch(87.1% 0.006 286.286);
52
- --color-zinc-400: oklch(70.5% 0.015 286.067);
53
- --color-zinc-500: oklch(55.2% 0.016 285.938);
54
- --color-zinc-600: oklch(44.2% 0.017 285.786);
55
- --color-zinc-700: oklch(37% 0.013 285.805);
56
- --color-zinc-800: oklch(27.4% 0.006 286.033);
57
- --color-zinc-900: oklch(21% 0.006 285.885);
58
- --color-black: #000;
59
- --color-white: #fff;
60
- --spacing: 0.25rem;
61
- --container-3xs: 16rem;
62
- --text-xs: 0.75rem;
63
- --text-xs--line-height: calc(1 / 0.75);
64
- --text-sm: 0.875rem;
65
- --text-sm--line-height: calc(1.25 / 0.875);
66
- --text-base: 1rem;
67
- --text-base--line-height: calc(1.5 / 1);
68
- --text-lg: 1.125rem;
69
- --text-lg--line-height: calc(1.75 / 1.125);
70
- --text-xl: 1.25rem;
71
- --text-xl--line-height: calc(1.75 / 1.25);
72
- --font-weight-light: 300;
73
- --font-weight-normal: 400;
74
- --font-weight-medium: 500;
75
- --font-weight-semibold: 600;
76
- --font-weight-bold: 700;
77
- --tracking-wide: 0.025em;
78
- --leading-snug: 1.375;
79
- --radius-lg: 0.5rem;
80
- --radius-xl: 0.75rem;
81
- --radius-2xl: 1rem;
82
- --animate-spin: spin 1s linear infinite;
83
- --default-transition-duration: 150ms;
84
- --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
85
- --default-font-family: var(--font-sans);
86
- --default-mono-font-family: var(--font-mono);
87
- }
88
- }
89
- @layer base {
90
- *,
91
- ::after,
92
- ::before,
93
- ::backdrop,
94
- ::file-selector-button {
95
- box-sizing: border-box;
96
- margin: 0;
97
- padding: 0;
98
- border: 0 solid;
99
- }
100
- html,
101
- :host {
102
- line-height: 1.5;
103
- -webkit-text-size-adjust: 100%;
104
- tab-size: 4;
105
- font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
106
- font-feature-settings: var(--default-font-feature-settings, normal);
107
- font-variation-settings: var(--default-font-variation-settings, normal);
108
- -webkit-tap-highlight-color: transparent;
109
- }
110
- hr {
111
- height: 0;
112
- color: inherit;
113
- border-top-width: 1px;
114
- }
115
- abbr:where([title]) {
116
- -webkit-text-decoration: underline dotted;
117
- text-decoration: underline dotted;
118
- }
119
- h1,
120
- h2,
121
- h3,
122
- h4,
123
- h5,
124
- h6 {
125
- font-size: inherit;
126
- font-weight: inherit;
127
- }
128
- a {
129
- color: inherit;
130
- -webkit-text-decoration: inherit;
131
- text-decoration: inherit;
132
- }
133
- b,
134
- strong {
135
- font-weight: bolder;
136
- }
137
- code,
138
- kbd,
139
- samp,
140
- pre {
141
- font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
142
- font-feature-settings: var(--default-mono-font-feature-settings, normal);
143
- font-variation-settings: var(--default-mono-font-variation-settings, normal);
144
- font-size: 1em;
145
- }
146
- small {
147
- font-size: 80%;
148
- }
149
- sub,
150
- sup {
151
- font-size: 75%;
152
- line-height: 0;
153
- position: relative;
154
- vertical-align: baseline;
155
- }
156
- sub {
157
- bottom: -0.25em;
158
- }
159
- sup {
160
- top: -0.5em;
161
- }
162
- table {
163
- text-indent: 0;
164
- border-color: inherit;
165
- border-collapse: collapse;
166
- }
167
- :-moz-focusring {
168
- outline: auto;
169
- }
170
- progress {
171
- vertical-align: baseline;
172
- }
173
- summary {
174
- display: list-item;
175
- }
176
- ol,
177
- ul,
178
- menu {
179
- list-style: none;
180
- }
181
- img,
182
- svg,
183
- video,
184
- canvas,
185
- audio,
186
- iframe,
187
- embed,
188
- object {
189
- display: block;
190
- vertical-align: middle;
191
- }
192
- img,
193
- video {
194
- max-width: 100%;
195
- height: auto;
196
- }
197
- button,
198
- input,
199
- select,
200
- optgroup,
201
- textarea,
202
- ::file-selector-button {
203
- font: inherit;
204
- font-feature-settings: inherit;
205
- font-variation-settings: inherit;
206
- letter-spacing: inherit;
207
- color: inherit;
208
- border-radius: 0;
209
- background-color: transparent;
210
- opacity: 1;
211
- }
212
- :where(select:is([multiple], [size])) optgroup {
213
- font-weight: bolder;
214
- }
215
- :where(select:is([multiple], [size])) optgroup option {
216
- padding-inline-start: 20px;
217
- }
218
- ::file-selector-button {
219
- margin-inline-end: 4px;
220
- }
221
- ::placeholder {
222
- opacity: 1;
223
- }
224
- @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
225
- ::placeholder {
226
- color: currentcolor;
227
- @supports (color: color-mix(in lab, red, red)) {
228
- color: color-mix(in oklab, currentcolor 50%, transparent);
229
- }
230
- }
231
- }
232
- textarea {
233
- resize: vertical;
234
- }
235
- ::-webkit-search-decoration {
236
- -webkit-appearance: none;
237
- }
238
- ::-webkit-date-and-time-value {
239
- min-height: 1lh;
240
- text-align: inherit;
241
- }
242
- ::-webkit-datetime-edit {
243
- display: inline-flex;
244
- }
245
- ::-webkit-datetime-edit-fields-wrapper {
246
- padding: 0;
247
- }
248
- ::-webkit-datetime-edit,
249
- ::-webkit-datetime-edit-year-field,
250
- ::-webkit-datetime-edit-month-field,
251
- ::-webkit-datetime-edit-day-field,
252
- ::-webkit-datetime-edit-hour-field,
253
- ::-webkit-datetime-edit-minute-field,
254
- ::-webkit-datetime-edit-second-field,
255
- ::-webkit-datetime-edit-millisecond-field,
256
- ::-webkit-datetime-edit-meridiem-field {
257
- padding-block: 0;
258
- }
259
- ::-webkit-calendar-picker-indicator {
260
- line-height: 1;
261
- }
262
- :-moz-ui-invalid {
263
- box-shadow: none;
264
- }
265
- button,
266
- input:where([type=button], [type=reset], [type=submit]),
267
- ::file-selector-button {
268
- appearance: button;
269
- }
270
- ::-webkit-inner-spin-button,
271
- ::-webkit-outer-spin-button {
272
- height: auto;
273
- }
274
- [hidden]:where(:not([hidden=until-found])) {
275
- display: none !important;
276
- }
277
- }
278
- @layer utilities {
279
- .pointer-events-auto {
280
- pointer-events: auto;
281
- }
282
- .pointer-events-none {
283
- pointer-events: none;
284
- }
285
- .visible {
286
- visibility: visible;
287
- }
288
- .sr-only {
289
- position: absolute;
290
- width: 1px;
291
- height: 1px;
292
- padding: 0;
293
- margin: -1px;
294
- overflow: hidden;
295
- clip-path: inset(50%);
296
- white-space: nowrap;
297
- border-width: 0;
298
- }
299
- .absolute {
300
- position: absolute;
301
- }
302
- .fixed {
303
- position: fixed;
304
- }
305
- .relative {
306
- position: relative;
307
- }
308
- .static {
309
- position: static;
310
- }
311
- .sticky {
312
- position: sticky;
313
- }
314
- .inset-0 {
315
- inset: calc(var(--spacing) * 0);
316
- }
317
- .start {
318
- inset-inline-start: var(--spacing);
319
- }
320
- .end {
321
- inset-inline-end: var(--spacing);
322
- }
323
- .-top-4 {
324
- top: calc(var(--spacing) * -4);
325
- }
326
- .top-1\/2 {
327
- top: calc(1 / 2 * 100%);
328
- }
329
- .top-3\.5 {
330
- top: calc(var(--spacing) * 3.5);
331
- }
332
- .-right-3 {
333
- right: calc(var(--spacing) * -3);
334
- }
335
- .right-3 {
336
- right: calc(var(--spacing) * 3);
337
- }
338
- .-bottom-3 {
339
- bottom: calc(var(--spacing) * -3);
340
- }
341
- .left-2 {
342
- left: calc(var(--spacing) * 2);
343
- }
344
- .left-10 {
345
- left: calc(var(--spacing) * 10);
346
- }
347
- .z-10 {
348
- z-index: 10;
349
- }
350
- .z-50 {
351
- z-index: 50;
352
- }
353
- .container {
354
- width: 100%;
355
- @media (width >= 40rem) {
356
- max-width: 40rem;
357
- }
358
- @media (width >= 48rem) {
359
- max-width: 48rem;
360
- }
361
- @media (width >= 64rem) {
362
- max-width: 64rem;
363
- }
364
- @media (width >= 80rem) {
365
- max-width: 80rem;
366
- }
367
- @media (width >= 96rem) {
368
- max-width: 96rem;
369
- }
370
- }
371
- .mx-4 {
372
- margin-inline: calc(var(--spacing) * 4);
373
- }
374
- .mt-0\.5 {
375
- margin-top: calc(var(--spacing) * 0.5);
376
- }
377
- .mt-1 {
378
- margin-top: calc(var(--spacing) * 1);
379
- }
380
- .mt-2 {
381
- margin-top: calc(var(--spacing) * 2);
382
- }
383
- .mt-5 {
384
- margin-top: calc(var(--spacing) * 5);
385
- }
386
- .mb-1 {
387
- margin-bottom: calc(var(--spacing) * 1);
388
- }
389
- .mb-2 {
390
- margin-bottom: calc(var(--spacing) * 2);
391
- }
392
- .mb-4 {
393
- margin-bottom: calc(var(--spacing) * 4);
394
- }
395
- .mb-6 {
396
- margin-bottom: calc(var(--spacing) * 6);
397
- }
398
- .ml-1 {
399
- margin-left: calc(var(--spacing) * 1);
400
- }
401
- .ml-auto {
402
- margin-left: auto;
403
- }
404
- .block {
405
- display: block;
406
- }
407
- .flex {
408
- display: flex;
409
- }
410
- .grid {
411
- display: grid;
412
- }
413
- .hidden {
414
- display: none;
415
- }
416
- .inline {
417
- display: inline;
418
- }
419
- .table {
420
- display: table;
421
- }
422
- .aspect-auto {
423
- aspect-ratio: auto;
424
- }
425
- .h-0 {
426
- height: calc(var(--spacing) * 0);
427
- }
428
- .h-0\.5 {
429
- height: calc(var(--spacing) * 0.5);
430
- }
431
- .h-2\.5 {
432
- height: calc(var(--spacing) * 2.5);
433
- }
434
- .h-3\.5 {
435
- height: calc(var(--spacing) * 3.5);
436
- }
437
- .h-4 {
438
- height: calc(var(--spacing) * 4);
439
- }
440
- .h-5 {
441
- height: calc(var(--spacing) * 5);
442
- }
443
- .h-7 {
444
- height: calc(var(--spacing) * 7);
445
- }
446
- .h-8 {
447
- height: calc(var(--spacing) * 8);
448
- }
449
- .h-10 {
450
- height: calc(var(--spacing) * 10);
451
- }
452
- .h-16 {
453
- height: calc(var(--spacing) * 16);
454
- }
455
- .h-auto {
456
- height: auto;
457
- }
458
- .max-h-\[90vh\] {
459
- max-height: 90vh;
460
- }
461
- .w-1\/5 {
462
- width: calc(1 / 5 * 100%);
463
- }
464
- .w-2\.5 {
465
- width: calc(var(--spacing) * 2.5);
466
- }
467
- .w-3\.5 {
468
- width: calc(var(--spacing) * 3.5);
469
- }
470
- .w-3xs {
471
- width: var(--container-3xs);
472
- }
473
- .w-4 {
474
- width: calc(var(--spacing) * 4);
475
- }
476
- .w-4\/5 {
477
- width: calc(4 / 5 * 100%);
478
- }
479
- .w-5 {
480
- width: calc(var(--spacing) * 5);
481
- }
482
- .w-7 {
483
- width: calc(var(--spacing) * 7);
484
- }
485
- .w-8 {
486
- width: calc(var(--spacing) * 8);
487
- }
488
- .w-16 {
489
- width: calc(var(--spacing) * 16);
490
- }
491
- .w-auto {
492
- width: auto;
493
- }
494
- .w-full {
495
- width: 100%;
496
- }
497
- .max-w-\(--max-container\) {
498
- max-width: var(--max-container);
499
- }
500
- .max-w-125 {
501
- max-width: calc(var(--spacing) * 125);
502
- }
503
- .max-w-\[var\(--max-container\)\] {
504
- max-width: var(--max-container);
505
- }
506
- .min-w-\(--min-container\) {
507
- min-width: var(--min-container);
508
- }
509
- .min-w-0 {
510
- min-width: calc(var(--spacing) * 0);
511
- }
512
- .min-w-20 {
513
- min-width: calc(var(--spacing) * 20);
514
- }
515
- .min-w-125 {
516
- min-width: calc(var(--spacing) * 125);
517
- }
518
- .min-w-\[var\(--min-container\)\] {
519
- min-width: var(--min-container);
520
- }
521
- .flex-1 {
522
- flex: 1;
523
- }
524
- .flex-2 {
525
- flex: 2;
526
- }
527
- .shrink-0 {
528
- flex-shrink: 0;
529
- }
530
- .-translate-y-1\/2 {
531
- --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
532
- translate: var(--tw-translate-x) var(--tw-translate-y);
533
- }
534
- .rotate-0 {
535
- rotate: 0deg;
536
- }
537
- .rotate-180 {
538
- rotate: 180deg;
539
- }
540
- .transform {
541
- transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
542
- }
543
- .animate-spin {
544
- animation: var(--animate-spin);
545
- }
546
- .cursor-not-allowed {
547
- cursor: not-allowed;
548
- }
549
- .cursor-pointer {
550
- cursor: pointer;
551
- }
552
- .grid-cols-2 {
553
- grid-template-columns: repeat(2, minmax(0, 1fr));
554
- }
555
- .grid-cols-3 {
556
- grid-template-columns: repeat(3, minmax(0, 1fr));
557
- }
558
- .flex-col {
559
- flex-direction: column;
560
- }
561
- .items-center {
562
- align-items: center;
563
- }
564
- .items-center-safe {
565
- align-items: safe center;
566
- }
567
- .items-end {
568
- align-items: flex-end;
569
- }
570
- .items-start {
571
- align-items: flex-start;
572
- }
573
- .justify-between {
574
- justify-content: space-between;
575
- }
576
- .justify-center {
577
- justify-content: center;
578
- }
579
- .justify-center-safe {
580
- justify-content: safe center;
581
- }
582
- .justify-end {
583
- justify-content: flex-end;
584
- }
585
- .justify-end-safe {
586
- justify-content: safe flex-end;
587
- }
588
- .justify-start {
589
- justify-content: flex-start;
590
- }
591
- .gap-1 {
592
- gap: calc(var(--spacing) * 1);
593
- }
594
- .gap-2 {
595
- gap: calc(var(--spacing) * 2);
596
- }
597
- .gap-3 {
598
- gap: calc(var(--spacing) * 3);
599
- }
600
- .gap-4 {
601
- gap: calc(var(--spacing) * 4);
602
- }
603
- .gap-4\.5 {
604
- gap: calc(var(--spacing) * 4.5);
605
- }
606
- .gap-5 {
607
- gap: calc(var(--spacing) * 5);
608
- }
609
- .overflow-hidden {
610
- overflow: hidden;
611
- }
612
- .overflow-y-auto {
613
- overflow-y: auto;
614
- }
615
- .rounded {
616
- border-radius: 0.25rem;
617
- }
618
- .rounded-2xl {
619
- border-radius: var(--radius-2xl);
620
- }
621
- .rounded-full {
622
- border-radius: calc(infinity * 1px);
623
- }
624
- .rounded-lg {
625
- border-radius: var(--radius-lg);
626
- }
627
- .rounded-xl {
628
- border-radius: var(--radius-xl);
629
- }
630
- .rounded-s-lg {
631
- border-start-start-radius: var(--radius-lg);
632
- border-end-start-radius: var(--radius-lg);
633
- }
634
- .border {
635
- border-style: var(--tw-border-style);
636
- border-width: 1px;
637
- }
638
- .border-3 {
639
- border-style: var(--tw-border-style);
640
- border-width: 3px;
641
- }
642
- .border-4 {
643
- border-style: var(--tw-border-style);
644
- border-width: 4px;
645
- }
646
- .border-y {
647
- border-block-style: var(--tw-border-style);
648
- border-block-width: 1px;
649
- }
650
- .border-t {
651
- border-top-style: var(--tw-border-style);
652
- border-top-width: 1px;
653
- }
654
- .border-\(--pbm-border\) {
655
- border-color: var(--pbm-border);
656
- }
657
- .border-\(--pbm-primary\) {
658
- border-color: var(--pbm-primary);
659
- }
660
- .border-emerald-200 {
661
- border-color: var(--color-emerald-200);
662
- }
663
- .border-emerald-700 {
664
- border-color: var(--color-emerald-700);
665
- }
666
- .border-gray-100 {
667
- border-color: var(--color-gray-100);
668
- }
669
- .border-gray-200 {
670
- border-color: var(--color-gray-200);
671
- }
672
- .border-gray-300 {
673
- border-color: var(--color-gray-300);
674
- }
675
- .border-red-300 {
676
- border-color: var(--color-red-300);
677
- }
678
- .border-red-400 {
679
- border-color: var(--color-red-400);
680
- }
681
- .border-zinc-100 {
682
- border-color: var(--color-zinc-100);
683
- }
684
- .border-zinc-300 {
685
- border-color: var(--color-zinc-300);
686
- }
687
- .border-zinc-400\/50 {
688
- border-color: color-mix(in srgb, oklch(70.5% 0.015 286.067) 50%, transparent);
689
- @supports (color: color-mix(in lab, red, red)) {
690
- border-color: color-mix(in oklab, var(--color-zinc-400) 50%, transparent);
691
- }
692
- }
693
- .bg-\(--pbm-input-background\) {
694
- background-color: var(--pbm-input-background);
695
- }
696
- .bg-\(--pbm-primary\) {
697
- background-color: var(--pbm-primary);
698
- }
699
- .bg-\(--primary-color\) {
700
- background-color: var(--primary-color);
701
- }
702
- .bg-black\/40 {
703
- background-color: color-mix(in srgb, #000 40%, transparent);
704
- @supports (color: color-mix(in lab, red, red)) {
705
- background-color: color-mix(in oklab, var(--color-black) 40%, transparent);
706
- }
707
- }
708
- .bg-blue-500 {
709
- background-color: var(--color-blue-500);
710
- }
711
- .bg-emerald-50\/60 {
712
- background-color: color-mix(in srgb, oklch(97.9% 0.021 166.113) 60%, transparent);
713
- @supports (color: color-mix(in lab, red, red)) {
714
- background-color: color-mix(in oklab, var(--color-emerald-50) 60%, transparent);
715
- }
716
- }
717
- .bg-emerald-600 {
718
- background-color: var(--color-emerald-600);
719
- }
720
- .bg-gray-50 {
721
- background-color: var(--color-gray-50);
722
- }
723
- .bg-gray-100 {
724
- background-color: var(--color-gray-100);
725
- }
726
- .bg-gray-600 {
727
- background-color: var(--color-gray-600);
728
- }
729
- .bg-green-100 {
730
- background-color: var(--color-green-100);
731
- }
732
- .bg-green-500 {
733
- background-color: var(--color-green-500);
734
- }
735
- .bg-red-50 {
736
- background-color: var(--color-red-50);
737
- }
738
- .bg-red-50\/40 {
739
- background-color: color-mix(in srgb, oklch(97.1% 0.013 17.38) 40%, transparent);
740
- @supports (color: color-mix(in lab, red, red)) {
741
- background-color: color-mix(in oklab, var(--color-red-50) 40%, transparent);
742
- }
743
- }
744
- .bg-transparent {
745
- background-color: transparent;
746
- }
747
- .bg-white {
748
- background-color: var(--color-white);
749
- }
750
- .bg-zinc-50\/40 {
751
- background-color: color-mix(in srgb, oklch(98.5% 0 0) 40%, transparent);
752
- @supports (color: color-mix(in lab, red, red)) {
753
- background-color: color-mix(in oklab, var(--color-zinc-50) 40%, transparent);
754
- }
755
- }
756
- .bg-zinc-100 {
757
- background-color: var(--color-zinc-100);
758
- }
759
- .bg-zinc-200 {
760
- background-color: var(--color-zinc-200);
761
- }
762
- .bg-zinc-300\/60 {
763
- background-color: color-mix(in srgb, oklch(87.1% 0.006 286.286) 60%, transparent);
764
- @supports (color: color-mix(in lab, red, red)) {
765
- background-color: color-mix(in oklab, var(--color-zinc-300) 60%, transparent);
766
- }
767
- }
768
- .p-0 {
769
- padding: calc(var(--spacing) * 0);
770
- }
771
- .p-0\.5 {
772
- padding: calc(var(--spacing) * 0.5);
773
- }
774
- .p-3 {
775
- padding: calc(var(--spacing) * 3);
776
- }
777
- .p-4 {
778
- padding: calc(var(--spacing) * 4);
779
- }
780
- .p-6 {
781
- padding: calc(var(--spacing) * 6);
782
- }
783
- .p-8 {
784
- padding: calc(var(--spacing) * 8);
785
- }
786
- .px-2 {
787
- padding-inline: calc(var(--spacing) * 2);
788
- }
789
- .px-2\.5 {
790
- padding-inline: calc(var(--spacing) * 2.5);
791
- }
792
- .px-3 {
793
- padding-inline: calc(var(--spacing) * 3);
794
- }
795
- .px-4 {
796
- padding-inline: calc(var(--spacing) * 4);
797
- }
798
- .px-6 {
799
- padding-inline: calc(var(--spacing) * 6);
800
- }
801
- .py-0\.5 {
802
- padding-block: calc(var(--spacing) * 0.5);
803
- }
804
- .py-1 {
805
- padding-block: calc(var(--spacing) * 1);
806
- }
807
- .py-2 {
808
- padding-block: calc(var(--spacing) * 2);
809
- }
810
- .py-2\.5 {
811
- padding-block: calc(var(--spacing) * 2.5);
812
- }
813
- .py-4 {
814
- padding-block: calc(var(--spacing) * 4);
815
- }
816
- .py-6 {
817
- padding-block: calc(var(--spacing) * 6);
818
- }
819
- .pt-4 {
820
- padding-top: calc(var(--spacing) * 4);
821
- }
822
- .pl-1 {
823
- padding-left: calc(var(--spacing) * 1);
824
- }
825
- .pl-2 {
826
- padding-left: calc(var(--spacing) * 2);
827
- }
828
- .text-center {
829
- text-align: center;
830
- }
831
- .text-start {
832
- text-align: start;
833
- }
834
- .text-base {
835
- font-size: var(--text-base);
836
- line-height: var(--tw-leading, var(--text-base--line-height));
837
- }
838
- .text-lg {
839
- font-size: var(--text-lg);
840
- line-height: var(--tw-leading, var(--text-lg--line-height));
841
- }
842
- .text-sm {
843
- font-size: var(--text-sm);
844
- line-height: var(--tw-leading, var(--text-sm--line-height));
845
- }
846
- .text-xl {
847
- font-size: var(--text-xl);
848
- line-height: var(--tw-leading, var(--text-xl--line-height));
849
- }
850
- .text-xs {
851
- font-size: var(--text-xs);
852
- line-height: var(--tw-leading, var(--text-xs--line-height));
853
- }
854
- .text-\[10px\] {
855
- font-size: 10px;
856
- }
857
- .leading-snug {
858
- --tw-leading: var(--leading-snug);
859
- line-height: var(--leading-snug);
860
- }
861
- .font-bold {
862
- --tw-font-weight: var(--font-weight-bold);
863
- font-weight: var(--font-weight-bold);
864
- }
865
- .font-light {
866
- --tw-font-weight: var(--font-weight-light);
867
- font-weight: var(--font-weight-light);
868
- }
869
- .font-medium {
870
- --tw-font-weight: var(--font-weight-medium);
871
- font-weight: var(--font-weight-medium);
872
- }
873
- .font-normal {
874
- --tw-font-weight: var(--font-weight-normal);
875
- font-weight: var(--font-weight-normal);
876
- }
877
- .font-semibold {
878
- --tw-font-weight: var(--font-weight-semibold);
879
- font-weight: var(--font-weight-semibold);
880
- }
881
- .tracking-wide {
882
- --tw-tracking: var(--tracking-wide);
883
- letter-spacing: var(--tracking-wide);
884
- }
885
- .text-nowrap {
886
- text-wrap: nowrap;
887
- }
888
- .whitespace-nowrap {
889
- white-space: nowrap;
890
- }
891
- .text-\(--pbm-primary\) {
892
- color: var(--pbm-primary);
893
- }
894
- .text-blue-500 {
895
- color: var(--color-blue-500);
896
- }
897
- .text-emerald-600 {
898
- color: var(--color-emerald-600);
899
- }
900
- .text-gray-400 {
901
- color: var(--color-gray-400);
902
- }
903
- .text-gray-500 {
904
- color: var(--color-gray-500);
905
- }
906
- .text-gray-600 {
907
- color: var(--color-gray-600);
908
- }
909
- .text-gray-800 {
910
- color: var(--color-gray-800);
911
- }
912
- .text-green-500 {
913
- color: var(--color-green-500);
914
- }
915
- .text-red-400 {
916
- color: var(--color-red-400);
917
- }
918
- .text-red-500 {
919
- color: var(--color-red-500);
920
- }
921
- .text-white {
922
- color: var(--color-white);
923
- }
924
- .text-zinc-400 {
925
- color: var(--color-zinc-400);
926
- }
927
- .text-zinc-500 {
928
- color: var(--color-zinc-500);
929
- }
930
- .text-zinc-600 {
931
- color: var(--color-zinc-600);
932
- }
933
- .text-zinc-700 {
934
- color: var(--color-zinc-700);
935
- }
936
- .text-zinc-800 {
937
- color: var(--color-zinc-800);
938
- }
939
- .text-zinc-900 {
940
- color: var(--color-zinc-900);
941
- }
942
- .uppercase {
943
- text-transform: uppercase;
944
- }
945
- .line-through {
946
- text-decoration-line: line-through;
947
- }
948
- .underline {
949
- text-decoration-line: underline;
950
- }
951
- .underline-offset-2 {
952
- text-underline-offset: 2px;
953
- }
954
- .opacity-0 {
955
- opacity: 0%;
956
- }
957
- .opacity-25 {
958
- opacity: 25%;
959
- }
960
- .opacity-60 {
961
- opacity: 60%;
962
- }
963
- .opacity-75 {
964
- opacity: 75%;
965
- }
966
- .opacity-100 {
967
- opacity: 100%;
968
- }
969
- .shadow {
970
- --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
971
- box-shadow:
972
- var(--tw-inset-shadow),
973
- var(--tw-inset-ring-shadow),
974
- var(--tw-ring-offset-shadow),
975
- var(--tw-ring-shadow),
976
- var(--tw-shadow);
977
- }
978
- .shadow-xl {
979
- --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
980
- box-shadow:
981
- var(--tw-inset-shadow),
982
- var(--tw-inset-ring-shadow),
983
- var(--tw-ring-offset-shadow),
984
- var(--tw-ring-shadow),
985
- var(--tw-shadow);
986
- }
987
- .ring-4 {
988
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
989
- box-shadow:
990
- var(--tw-inset-shadow),
991
- var(--tw-inset-ring-shadow),
992
- var(--tw-ring-offset-shadow),
993
- var(--tw-ring-shadow),
994
- var(--tw-shadow);
995
- }
996
- .ring-\(--pbm-primary\)\/15 {
997
- --tw-ring-color: var(--pbm-primary);
998
- @supports (color: color-mix(in lab, red, red)) {
999
- --tw-ring-color: color-mix(in oklab, var(--pbm-primary) 15%, transparent);
1000
- }
1001
- }
1002
- .outline {
1003
- outline-style: var(--tw-outline-style);
1004
- outline-width: 1px;
1005
- }
1006
- .outline-\(--pbm-outline-color\) {
1007
- outline-color: var(--pbm-outline-color);
1008
- }
1009
- .outline-red-600 {
1010
- outline-color: var(--color-red-600);
1011
- }
1012
- .filter {
1013
- filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
1014
- }
1015
- .transition-all {
1016
- transition-property: all;
1017
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1018
- transition-duration: var(--tw-duration, var(--default-transition-duration));
1019
- }
1020
- .transition-colors {
1021
- transition-property:
1022
- color,
1023
- background-color,
1024
- border-color,
1025
- outline-color,
1026
- text-decoration-color,
1027
- fill,
1028
- stroke,
1029
- --tw-gradient-from,
1030
- --tw-gradient-via,
1031
- --tw-gradient-to;
1032
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1033
- transition-duration: var(--tw-duration, var(--default-transition-duration));
1034
- }
1035
- .duration-100 {
1036
- --tw-duration: 100ms;
1037
- transition-duration: 100ms;
1038
- }
1039
- .duration-150 {
1040
- --tw-duration: 150ms;
1041
- transition-duration: 150ms;
1042
- }
1043
- .duration-300 {
1044
- --tw-duration: 300ms;
1045
- transition-duration: 300ms;
1046
- }
1047
- .outline-none {
1048
- --tw-outline-style: none;
1049
- outline-style: none;
1050
- }
1051
- .select-none {
1052
- -webkit-user-select: none;
1053
- user-select: none;
1054
- }
1055
- .placeholder\:text-sm {
1056
- &::placeholder {
1057
- font-size: var(--text-sm);
1058
- line-height: var(--tw-leading, var(--text-sm--line-height));
1059
- }
1060
- }
1061
- .placeholder\:font-semibold {
1062
- &::placeholder {
1063
- --tw-font-weight: var(--font-weight-semibold);
1064
- font-weight: var(--font-weight-semibold);
1065
- }
1066
- }
1067
- .placeholder\:text-zinc-600 {
1068
- &::placeholder {
1069
- color: var(--color-zinc-600);
1070
- }
1071
- }
1072
- .after\:h-2 {
1073
- &::after {
1074
- content: var(--tw-content);
1075
- height: calc(var(--spacing) * 2);
1076
- }
1077
- }
1078
- .after\:w-2 {
1079
- &::after {
1080
- content: var(--tw-content);
1081
- width: calc(var(--spacing) * 2);
1082
- }
1083
- }
1084
- .after\:scale-0 {
1085
- &::after {
1086
- content: var(--tw-content);
1087
- --tw-scale-x: 0%;
1088
- --tw-scale-y: 0%;
1089
- --tw-scale-z: 0%;
1090
- scale: var(--tw-scale-x) var(--tw-scale-y);
1091
- }
1092
- }
1093
- .after\:rounded-full {
1094
- &::after {
1095
- content: var(--tw-content);
1096
- border-radius: calc(infinity * 1px);
1097
- }
1098
- }
1099
- .after\:bg-\(--pbm-primary\) {
1100
- &::after {
1101
- content: var(--tw-content);
1102
- background-color: var(--pbm-primary);
1103
- }
1104
- }
1105
- .after\:transition-transform {
1106
- &::after {
1107
- content: var(--tw-content);
1108
- transition-property:
1109
- transform,
1110
- translate,
1111
- scale,
1112
- rotate;
1113
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1114
- transition-duration: var(--tw-duration, var(--default-transition-duration));
1115
- }
1116
- }
1117
- .after\:duration-200 {
1118
- &::after {
1119
- content: var(--tw-content);
1120
- --tw-duration: 200ms;
1121
- transition-duration: 200ms;
1122
- }
1123
- }
1124
- .after\:content-\[\'\'\] {
1125
- &::after {
1126
- --tw-content: "";
1127
- content: var(--tw-content);
1128
- }
1129
- }
1130
- .peer-checked\:after\:scale-100 {
1131
- &:is(:where(.peer):checked ~ *) {
1132
- &::after {
1133
- content: var(--tw-content);
1134
- --tw-scale-x: 100%;
1135
- --tw-scale-y: 100%;
1136
- --tw-scale-z: 100%;
1137
- scale: var(--tw-scale-x) var(--tw-scale-y);
1138
- }
1139
- }
1140
- }
1141
- .hover\:border-\(--pbm-primary\) {
1142
- &:hover {
1143
- @media (hover: hover) {
1144
- border-color: var(--pbm-primary);
1145
- }
1146
- }
1147
- }
1148
- .hover\:border-gray-300 {
1149
- &:hover {
1150
- @media (hover: hover) {
1151
- border-color: var(--color-gray-300);
1152
- }
1153
- }
1154
- }
1155
- .hover\:border-zinc-200 {
1156
- &:hover {
1157
- @media (hover: hover) {
1158
- border-color: var(--color-zinc-200);
1159
- }
1160
- }
1161
- }
1162
- .hover\:bg-\(--pbm-primary\)\/60 {
1163
- &:hover {
1164
- @media (hover: hover) {
1165
- background-color: var(--pbm-primary);
1166
- @supports (color: color-mix(in lab, red, red)) {
1167
- background-color: color-mix(in oklab, var(--pbm-primary) 60%, transparent);
1168
- }
1169
- }
1170
- }
1171
- }
1172
- .hover\:bg-\(--primary-color\)\/80 {
1173
- &:hover {
1174
- @media (hover: hover) {
1175
- background-color: var(--primary-color);
1176
- @supports (color: color-mix(in lab, red, red)) {
1177
- background-color: color-mix(in oklab, var(--primary-color) 80%, transparent);
1178
- }
1179
- }
1180
- }
1181
- }
1182
- .hover\:bg-blue-400 {
1183
- &:hover {
1184
- @media (hover: hover) {
1185
- background-color: var(--color-blue-400);
1186
- }
1187
- }
1188
- }
1189
- .hover\:bg-emerald-500 {
1190
- &:hover {
1191
- @media (hover: hover) {
1192
- background-color: var(--color-emerald-500);
1193
- }
1194
- }
1195
- }
1196
- .hover\:bg-gray-100 {
1197
- &:hover {
1198
- @media (hover: hover) {
1199
- background-color: var(--color-gray-100);
1200
- }
1201
- }
1202
- }
1203
- .hover\:bg-gray-500 {
1204
- &:hover {
1205
- @media (hover: hover) {
1206
- background-color: var(--color-gray-500);
1207
- }
1208
- }
1209
- }
1210
- .hover\:bg-green-400 {
1211
- &:hover {
1212
- @media (hover: hover) {
1213
- background-color: var(--color-green-400);
1214
- }
1215
- }
1216
- }
1217
- .hover\:bg-transparent {
1218
- &:hover {
1219
- @media (hover: hover) {
1220
- background-color: transparent;
1221
- }
1222
- }
1223
- }
1224
- .hover\:bg-zinc-600\/10 {
1225
- &:hover {
1226
- @media (hover: hover) {
1227
- background-color: color-mix(in srgb, oklch(44.2% 0.017 285.786) 10%, transparent);
1228
- @supports (color: color-mix(in lab, red, red)) {
1229
- background-color: color-mix(in oklab, var(--color-zinc-600) 10%, transparent);
1230
- }
1231
- }
1232
- }
1233
- }
1234
- .hover\:text-\(--pbm-primary\)\/60 {
1235
- &:hover {
1236
- @media (hover: hover) {
1237
- color: var(--pbm-primary);
1238
- @supports (color: color-mix(in lab, red, red)) {
1239
- color: color-mix(in oklab, var(--pbm-primary) 60%, transparent);
1240
- }
1241
- }
1242
- }
1243
- }
1244
- .hover\:text-gray-600 {
1245
- &:hover {
1246
- @media (hover: hover) {
1247
- color: var(--color-gray-600);
1248
- }
1249
- }
1250
- }
1251
- .hover\:text-zinc-400 {
1252
- &:hover {
1253
- @media (hover: hover) {
1254
- color: var(--color-zinc-400);
1255
- }
1256
- }
1257
- }
1258
- .hover\:text-zinc-900 {
1259
- &:hover {
1260
- @media (hover: hover) {
1261
- color: var(--color-zinc-900);
1262
- }
1263
- }
1264
- }
1265
- .focus\:border-blue-500 {
1266
- &:focus {
1267
- border-color: var(--color-blue-500);
1268
- }
1269
- }
1270
- .focus\:bg-\(--pbm-input-focus\) {
1271
- &:focus {
1272
- background-color: var(--pbm-input-focus);
1273
- }
1274
- }
1275
- .focus\:bg-white {
1276
- &:focus {
1277
- background-color: var(--color-white);
1278
- }
1279
- }
1280
- .focus\:ring-2 {
1281
- &:focus {
1282
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1283
- box-shadow:
1284
- var(--tw-inset-shadow),
1285
- var(--tw-inset-ring-shadow),
1286
- var(--tw-ring-offset-shadow),
1287
- var(--tw-ring-shadow),
1288
- var(--tw-shadow);
1289
- }
1290
- }
1291
- .focus\:ring-blue-500\/30 {
1292
- &:focus {
1293
- --tw-ring-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 30%, transparent);
1294
- @supports (color: color-mix(in lab, red, red)) {
1295
- --tw-ring-color: color-mix(in oklab, var(--color-blue-500) 30%, transparent);
1296
- }
1297
- }
1298
- }
1299
- .focus\:outline {
1300
- &:focus {
1301
- outline-style: var(--tw-outline-style);
1302
- outline-width: 1px;
1303
- }
1304
- }
1305
- .focus\:outline-\(--pbm-outline-focus-color\) {
1306
- &:focus {
1307
- outline-color: var(--pbm-outline-focus-color);
1308
- }
1309
- }
1310
- .sm\:block {
1311
- @media (width >= 40rem) {
1312
- display: block;
1313
- }
1314
- }
1315
- }
1316
- }
1317
- #pbm-library-root {
1318
- --max-container: 556px;
1319
- --min-container: 350px;
1320
- }
1321
- #pbm-library-root,
1322
- #pbm-library-root *,
1323
- #pbm-library-root *::before,
1324
- #pbm-library-root *::after {
1325
- box-sizing: border-box;
1326
- }
1327
- @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1328
- @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1329
- @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
1330
- @property --tw-rotate-x { syntax: "*"; inherits: false; }
1331
- @property --tw-rotate-y { syntax: "*"; inherits: false; }
1332
- @property --tw-rotate-z { syntax: "*"; inherits: false; }
1333
- @property --tw-skew-x { syntax: "*"; inherits: false; }
1334
- @property --tw-skew-y { syntax: "*"; inherits: false; }
1335
- @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
1336
- @property --tw-leading { syntax: "*"; inherits: false; }
1337
- @property --tw-font-weight { syntax: "*"; inherits: false; }
1338
- @property --tw-tracking { syntax: "*"; inherits: false; }
1339
- @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1340
- @property --tw-shadow-color { syntax: "*"; inherits: false; }
1341
- @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1342
- @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1343
- @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
1344
- @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1345
- @property --tw-ring-color { syntax: "*"; inherits: false; }
1346
- @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1347
- @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
1348
- @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1349
- @property --tw-ring-inset { syntax: "*"; inherits: false; }
1350
- @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
1351
- @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
1352
- @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1353
- @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
1354
- @property --tw-blur { syntax: "*"; inherits: false; }
1355
- @property --tw-brightness { syntax: "*"; inherits: false; }
1356
- @property --tw-contrast { syntax: "*"; inherits: false; }
1357
- @property --tw-grayscale { syntax: "*"; inherits: false; }
1358
- @property --tw-hue-rotate { syntax: "*"; inherits: false; }
1359
- @property --tw-invert { syntax: "*"; inherits: false; }
1360
- @property --tw-opacity { syntax: "*"; inherits: false; }
1361
- @property --tw-saturate { syntax: "*"; inherits: false; }
1362
- @property --tw-sepia { syntax: "*"; inherits: false; }
1363
- @property --tw-drop-shadow { syntax: "*"; inherits: false; }
1364
- @property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
1365
- @property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1366
- @property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
1367
- @property --tw-duration { syntax: "*"; inherits: false; }
1368
- @property --tw-content { syntax: "*"; initial-value: ""; inherits: false; }
1369
- @property --tw-scale-x { syntax: "*"; inherits: false; initial-value: 1; }
1370
- @property --tw-scale-y { syntax: "*"; inherits: false; initial-value: 1; }
1371
- @property --tw-scale-z { syntax: "*"; inherits: false; initial-value: 1; }
1372
- @keyframes spin {
1373
- to {
1374
- transform: rotate(360deg);
1375
- }
1376
- }
1377
- @layer properties {
1378
- @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1379
- *,
1380
- ::before,
1381
- ::after,
1382
- ::backdrop {
1383
- --tw-translate-x: 0;
1384
- --tw-translate-y: 0;
1385
- --tw-translate-z: 0;
1386
- --tw-rotate-x: initial;
1387
- --tw-rotate-y: initial;
1388
- --tw-rotate-z: initial;
1389
- --tw-skew-x: initial;
1390
- --tw-skew-y: initial;
1391
- --tw-border-style: solid;
1392
- --tw-leading: initial;
1393
- --tw-font-weight: initial;
1394
- --tw-tracking: initial;
1395
- --tw-shadow: 0 0 #0000;
1396
- --tw-shadow-color: initial;
1397
- --tw-shadow-alpha: 100%;
1398
- --tw-inset-shadow: 0 0 #0000;
1399
- --tw-inset-shadow-color: initial;
1400
- --tw-inset-shadow-alpha: 100%;
1401
- --tw-ring-color: initial;
1402
- --tw-ring-shadow: 0 0 #0000;
1403
- --tw-inset-ring-color: initial;
1404
- --tw-inset-ring-shadow: 0 0 #0000;
1405
- --tw-ring-inset: initial;
1406
- --tw-ring-offset-width: 0px;
1407
- --tw-ring-offset-color: #fff;
1408
- --tw-ring-offset-shadow: 0 0 #0000;
1409
- --tw-outline-style: solid;
1410
- --tw-blur: initial;
1411
- --tw-brightness: initial;
1412
- --tw-contrast: initial;
1413
- --tw-grayscale: initial;
1414
- --tw-hue-rotate: initial;
1415
- --tw-invert: initial;
1416
- --tw-opacity: initial;
1417
- --tw-saturate: initial;
1418
- --tw-sepia: initial;
1419
- --tw-drop-shadow: initial;
1420
- --tw-drop-shadow-color: initial;
1421
- --tw-drop-shadow-alpha: 100%;
1422
- --tw-drop-shadow-size: initial;
1423
- --tw-duration: initial;
1424
- --tw-content: "";
1425
- --tw-scale-x: 1;
1426
- --tw-scale-y: 1;
1427
- --tw-scale-z: 1;
1428
- }
1429
- }
1430
- }
1431
- /*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
1432
- /*# sourceMappingURL=index.css.map */