@creativecodeco/ui 0.0.1 → 0.0.3

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.
Files changed (36) hide show
  1. package/README.md +87 -1
  2. package/lib/helpers/index.d.ts +2 -0
  3. package/lib/helpers/index.js +2 -0
  4. package/lib/helpers/react-hook-form/controller.component.d.ts +3 -0
  5. package/lib/helpers/react-hook-form/controller.component.js +5 -0
  6. package/lib/helpers/react-hook-form/index.d.ts +2 -0
  7. package/lib/helpers/react-hook-form/index.js +2 -0
  8. package/lib/index.d.ts +5 -3
  9. package/lib/index.js +5 -3
  10. package/lib/theme/css/main.css +5 -0
  11. package/lib/theme/css/text-box.css +87 -0
  12. package/lib/theme/main.css +1313 -0
  13. package/lib/types/helpers/controller.types.d.ts +9 -0
  14. package/lib/types/helpers/controller.types.js +1 -0
  15. package/lib/types/index.d.ts +2 -2
  16. package/lib/types/ui/forms/drop-down.types.d.ts +11 -0
  17. package/lib/types/ui/forms/drop-down.types.js +1 -0
  18. package/lib/types/ui/forms/index.d.ts +3 -2
  19. package/lib/types/ui/forms/text-box.types.d.ts +7 -1
  20. package/lib/ui/forms/drop-down/drop-down.component.d.ts +4 -0
  21. package/lib/ui/forms/drop-down/drop-down.component.js +43 -0
  22. package/lib/ui/forms/drop-down/index.d.ts +2 -0
  23. package/lib/ui/forms/drop-down/index.js +2 -0
  24. package/lib/ui/forms/index.d.ts +3 -2
  25. package/lib/ui/forms/index.js +3 -2
  26. package/lib/ui/forms/text-box/text-box.component.d.ts +2 -2
  27. package/lib/ui/forms/text-box/text-box.component.js +13 -3
  28. package/lib/ui/provider/creativecode/creativecode-ui.provider.d.ts +2 -0
  29. package/lib/ui/provider/creativecode/creativecode-ui.provider.js +9 -0
  30. package/lib/ui/provider/index.d.ts +2 -2
  31. package/lib/ui/provider/index.js +2 -2
  32. package/package.json +72 -28
  33. package/lib/theme/tailwindcss/input.css +0 -3
  34. package/lib/theme/tailwindcss/main.css +0 -5
  35. package/lib/ui/provider/creativecode-ui.provider.d.ts +0 -2
  36. package/lib/ui/provider/creativecode-ui.provider.js +0 -5
@@ -0,0 +1,1313 @@
1
+ /*
2
+ ! tailwindcss v3.4.0 | MIT License | https://tailwindcss.com
3
+ *//*
4
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
5
+ 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
6
+ */
7
+
8
+ *,
9
+ ::before,
10
+ ::after {
11
+ box-sizing: border-box; /* 1 */
12
+ border-width: 0; /* 2 */
13
+ border-style: solid; /* 2 */
14
+ border-color: #e5e7eb; /* 2 */
15
+ }
16
+
17
+ ::before,
18
+ ::after {
19
+ --tw-content: '';
20
+ }
21
+
22
+ /*
23
+ 1. Use a consistent sensible line-height in all browsers.
24
+ 2. Prevent adjustments of font size after orientation changes in iOS.
25
+ 3. Use a more readable tab size.
26
+ 4. Use the user's configured `sans` font-family by default.
27
+ 5. Use the user's configured `sans` font-feature-settings by default.
28
+ 6. Use the user's configured `sans` font-variation-settings by default.
29
+ 7. Disable tap highlights on iOS
30
+ */
31
+
32
+ html,
33
+ :host {
34
+ line-height: 1.5; /* 1 */
35
+ -webkit-text-size-adjust: 100%; /* 2 */
36
+ -moz-tab-size: 4; /* 3 */
37
+ -o-tab-size: 4;
38
+ tab-size: 4; /* 3 */
39
+ font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
40
+ font-feature-settings: normal; /* 5 */
41
+ font-variation-settings: normal; /* 6 */
42
+ -webkit-tap-highlight-color: transparent; /* 7 */
43
+ }
44
+
45
+ /*
46
+ 1. Remove the margin in all browsers.
47
+ 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
48
+ */
49
+
50
+ body {
51
+ margin: 0; /* 1 */
52
+ line-height: inherit; /* 2 */
53
+ }
54
+
55
+ /*
56
+ 1. Add the correct height in Firefox.
57
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
58
+ 3. Ensure horizontal rules are visible by default.
59
+ */
60
+
61
+ hr {
62
+ height: 0; /* 1 */
63
+ color: inherit; /* 2 */
64
+ border-top-width: 1px; /* 3 */
65
+ }
66
+
67
+ /*
68
+ Add the correct text decoration in Chrome, Edge, and Safari.
69
+ */
70
+
71
+ abbr:where([title]) {
72
+ -webkit-text-decoration: underline dotted;
73
+ text-decoration: underline dotted;
74
+ }
75
+
76
+ /*
77
+ Remove the default font size and weight for headings.
78
+ */
79
+
80
+ h1,
81
+ h2,
82
+ h3,
83
+ h4,
84
+ h5,
85
+ h6 {
86
+ font-size: inherit;
87
+ font-weight: inherit;
88
+ }
89
+
90
+ /*
91
+ Reset links to optimize for opt-in styling instead of opt-out.
92
+ */
93
+
94
+ a {
95
+ color: inherit;
96
+ text-decoration: inherit;
97
+ }
98
+
99
+ /*
100
+ Add the correct font weight in Edge and Safari.
101
+ */
102
+
103
+ b,
104
+ strong {
105
+ font-weight: bolder;
106
+ }
107
+
108
+ /*
109
+ 1. Use the user's configured `mono` font-family by default.
110
+ 2. Use the user's configured `mono` font-feature-settings by default.
111
+ 3. Use the user's configured `mono` font-variation-settings by default.
112
+ 4. Correct the odd `em` font sizing in all browsers.
113
+ */
114
+
115
+ code,
116
+ kbd,
117
+ samp,
118
+ pre {
119
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
120
+ font-feature-settings: normal; /* 2 */
121
+ font-variation-settings: normal; /* 3 */
122
+ font-size: 1em; /* 4 */
123
+ }
124
+
125
+ /*
126
+ Add the correct font size in all browsers.
127
+ */
128
+
129
+ small {
130
+ font-size: 80%;
131
+ }
132
+
133
+ /*
134
+ Prevent `sub` and `sup` elements from affecting the line height in all browsers.
135
+ */
136
+
137
+ sub,
138
+ sup {
139
+ font-size: 75%;
140
+ line-height: 0;
141
+ position: relative;
142
+ vertical-align: baseline;
143
+ }
144
+
145
+ sub {
146
+ bottom: -0.25em;
147
+ }
148
+
149
+ sup {
150
+ top: -0.5em;
151
+ }
152
+
153
+ /*
154
+ 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
155
+ 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
156
+ 3. Remove gaps between table borders by default.
157
+ */
158
+
159
+ table {
160
+ text-indent: 0; /* 1 */
161
+ border-color: inherit; /* 2 */
162
+ border-collapse: collapse; /* 3 */
163
+ }
164
+
165
+ /*
166
+ 1. Change the font styles in all browsers.
167
+ 2. Remove the margin in Firefox and Safari.
168
+ 3. Remove default padding in all browsers.
169
+ */
170
+
171
+ button,
172
+ input,
173
+ optgroup,
174
+ select,
175
+ textarea {
176
+ font-family: inherit; /* 1 */
177
+ font-feature-settings: inherit; /* 1 */
178
+ font-variation-settings: inherit; /* 1 */
179
+ font-size: 100%; /* 1 */
180
+ font-weight: inherit; /* 1 */
181
+ line-height: inherit; /* 1 */
182
+ color: inherit; /* 1 */
183
+ margin: 0; /* 2 */
184
+ padding: 0; /* 3 */
185
+ }
186
+
187
+ /*
188
+ Remove the inheritance of text transform in Edge and Firefox.
189
+ */
190
+
191
+ button,
192
+ select {
193
+ text-transform: none;
194
+ }
195
+
196
+ /*
197
+ 1. Correct the inability to style clickable types in iOS and Safari.
198
+ 2. Remove default button styles.
199
+ */
200
+
201
+ button,
202
+ [type='button'],
203
+ [type='reset'],
204
+ [type='submit'] {
205
+ -webkit-appearance: button; /* 1 */
206
+ background-color: transparent; /* 2 */
207
+ background-image: none; /* 2 */
208
+ }
209
+
210
+ /*
211
+ Use the modern Firefox focus style for all focusable elements.
212
+ */
213
+
214
+ :-moz-focusring {
215
+ outline: auto;
216
+ }
217
+
218
+ /*
219
+ Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
220
+ */
221
+
222
+ :-moz-ui-invalid {
223
+ box-shadow: none;
224
+ }
225
+
226
+ /*
227
+ Add the correct vertical alignment in Chrome and Firefox.
228
+ */
229
+
230
+ progress {
231
+ vertical-align: baseline;
232
+ }
233
+
234
+ /*
235
+ Correct the cursor style of increment and decrement buttons in Safari.
236
+ */
237
+
238
+ ::-webkit-inner-spin-button,
239
+ ::-webkit-outer-spin-button {
240
+ height: auto;
241
+ }
242
+
243
+ /*
244
+ 1. Correct the odd appearance in Chrome and Safari.
245
+ 2. Correct the outline style in Safari.
246
+ */
247
+
248
+ [type='search'] {
249
+ -webkit-appearance: textfield; /* 1 */
250
+ outline-offset: -2px; /* 2 */
251
+ }
252
+
253
+ /*
254
+ Remove the inner padding in Chrome and Safari on macOS.
255
+ */
256
+
257
+ ::-webkit-search-decoration {
258
+ -webkit-appearance: none;
259
+ }
260
+
261
+ /*
262
+ 1. Correct the inability to style clickable types in iOS and Safari.
263
+ 2. Change font properties to `inherit` in Safari.
264
+ */
265
+
266
+ ::-webkit-file-upload-button {
267
+ -webkit-appearance: button; /* 1 */
268
+ font: inherit; /* 2 */
269
+ }
270
+
271
+ /*
272
+ Add the correct display in Chrome and Safari.
273
+ */
274
+
275
+ summary {
276
+ display: list-item;
277
+ }
278
+
279
+ /*
280
+ Removes the default spacing and border for appropriate elements.
281
+ */
282
+
283
+ blockquote,
284
+ dl,
285
+ dd,
286
+ h1,
287
+ h2,
288
+ h3,
289
+ h4,
290
+ h5,
291
+ h6,
292
+ hr,
293
+ figure,
294
+ p,
295
+ pre {
296
+ margin: 0;
297
+ }
298
+
299
+ fieldset {
300
+ margin: 0;
301
+ padding: 0;
302
+ }
303
+
304
+ legend {
305
+ padding: 0;
306
+ }
307
+
308
+ ol,
309
+ ul,
310
+ menu {
311
+ list-style: none;
312
+ margin: 0;
313
+ padding: 0;
314
+ }
315
+
316
+ /*
317
+ Reset default styling for dialogs.
318
+ */
319
+ dialog {
320
+ padding: 0;
321
+ }
322
+
323
+ /*
324
+ Prevent resizing textareas horizontally by default.
325
+ */
326
+
327
+ textarea {
328
+ resize: vertical;
329
+ }
330
+
331
+ /*
332
+ 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
333
+ 2. Set the default placeholder color to the user's configured gray 400 color.
334
+ */
335
+
336
+ input::-moz-placeholder, textarea::-moz-placeholder {
337
+ opacity: 1; /* 1 */
338
+ color: #9ca3af; /* 2 */
339
+ }
340
+
341
+ input::placeholder,
342
+ textarea::placeholder {
343
+ opacity: 1; /* 1 */
344
+ color: #9ca3af; /* 2 */
345
+ }
346
+
347
+ /*
348
+ Set the default cursor for buttons.
349
+ */
350
+
351
+ button,
352
+ [role="button"] {
353
+ cursor: pointer;
354
+ }
355
+
356
+ /*
357
+ Make sure disabled buttons don't get the pointer cursor.
358
+ */
359
+ :disabled {
360
+ cursor: default;
361
+ }
362
+
363
+ /*
364
+ 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
365
+ 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
366
+ This can trigger a poorly considered lint error in some tools but is included by design.
367
+ */
368
+
369
+ img,
370
+ svg,
371
+ video,
372
+ canvas,
373
+ audio,
374
+ iframe,
375
+ embed,
376
+ object {
377
+ display: block; /* 1 */
378
+ vertical-align: middle; /* 2 */
379
+ }
380
+
381
+ /*
382
+ Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
383
+ */
384
+
385
+ img,
386
+ video {
387
+ max-width: 100%;
388
+ height: auto;
389
+ }
390
+
391
+ /* Make elements with the HTML hidden attribute stay hidden by default */
392
+ [hidden] {
393
+ display: none;
394
+ }
395
+
396
+ :root,
397
+ [data-theme] {
398
+ background-color: var(--fallback-b1,oklch(var(--b1)/1));
399
+ color: var(--fallback-bc,oklch(var(--bc)/1));
400
+ }
401
+
402
+ @supports not (color: oklch(0 0 0)) {
403
+
404
+ :root {
405
+ color-scheme: light;
406
+ --fallback-p: #491eff;
407
+ --fallback-pc: #d4dbff;
408
+ --fallback-s: #ff41c7;
409
+ --fallback-sc: #fff9fc;
410
+ --fallback-a: #00cfbd;
411
+ --fallback-ac: #00100d;
412
+ --fallback-n: #2b3440;
413
+ --fallback-nc: #d7dde4;
414
+ --fallback-b1: #ffffff;
415
+ --fallback-b2: #e5e6e6;
416
+ --fallback-b3: #e5e6e6;
417
+ --fallback-bc: #1f2937;
418
+ --fallback-in: #00b3f0;
419
+ --fallback-inc: #000000;
420
+ --fallback-su: #00ca92;
421
+ --fallback-suc: #000000;
422
+ --fallback-wa: #ffc22d;
423
+ --fallback-wac: #000000;
424
+ --fallback-er: #ff6f70;
425
+ --fallback-erc: #000000;
426
+ }
427
+
428
+ @media (prefers-color-scheme: dark) {
429
+
430
+ :root {
431
+ color-scheme: dark;
432
+ --fallback-p: #7582ff;
433
+ --fallback-pc: #050617;
434
+ --fallback-s: #ff71cf;
435
+ --fallback-sc: #190211;
436
+ --fallback-a: #00c7b5;
437
+ --fallback-ac: #000e0c;
438
+ --fallback-n: #2a323c;
439
+ --fallback-nc: #a6adbb;
440
+ --fallback-b1: #1d232a;
441
+ --fallback-b2: #191e24;
442
+ --fallback-b3: #15191e;
443
+ --fallback-bc: #a6adbb;
444
+ --fallback-in: #00b3f0;
445
+ --fallback-inc: #000000;
446
+ --fallback-su: #00ca92;
447
+ --fallback-suc: #000000;
448
+ --fallback-wa: #ffc22d;
449
+ --fallback-wac: #000000;
450
+ --fallback-er: #ff6f70;
451
+ --fallback-erc: #000000;
452
+ }
453
+ }
454
+ }
455
+
456
+ html {
457
+ -webkit-tap-highlight-color: transparent;
458
+ }
459
+
460
+ :root {
461
+ color-scheme: light;
462
+ --in: 0.7206 0.191 231.6;
463
+ --su: 64.8% 0.150 160;
464
+ --wa: 0.8471 0.199 83.87;
465
+ --er: 0.7176 0.221 22.18;
466
+ --pc: 0.89824 0.06192 275.75;
467
+ --ac: 0.15352 0.0368 183.61;
468
+ --inc: 0 0 0;
469
+ --suc: 0 0 0;
470
+ --wac: 0 0 0;
471
+ --erc: 0 0 0;
472
+ --rounded-box: 1rem;
473
+ --rounded-btn: 0.5rem;
474
+ --rounded-badge: 1.9rem;
475
+ --animation-btn: 0.25s;
476
+ --animation-input: .2s;
477
+ --btn-focus-scale: 0.95;
478
+ --border-btn: 1px;
479
+ --tab-border: 1px;
480
+ --tab-radius: 0.5rem;
481
+ --p: 0.4912 0.3096 275.75;
482
+ --s: 0.6971 0.329 342.55;
483
+ --sc: 0.9871 0.0106 342.55;
484
+ --a: 0.7676 0.184 183.61;
485
+ --n: 0.321785 0.02476 255.701624;
486
+ --nc: 0.894994 0.011585 252.096176;
487
+ --b1: 1 0 0;
488
+ --b2: 0.961151 0 0;
489
+ --b3: 0.924169 0.00108 197.137559;
490
+ --bc: 0.278078 0.029596 256.847952;
491
+ }
492
+
493
+ *, ::before, ::after {
494
+ --tw-border-spacing-x: 0;
495
+ --tw-border-spacing-y: 0;
496
+ --tw-translate-x: 0;
497
+ --tw-translate-y: 0;
498
+ --tw-rotate: 0;
499
+ --tw-skew-x: 0;
500
+ --tw-skew-y: 0;
501
+ --tw-scale-x: 1;
502
+ --tw-scale-y: 1;
503
+ --tw-pan-x: ;
504
+ --tw-pan-y: ;
505
+ --tw-pinch-zoom: ;
506
+ --tw-scroll-snap-strictness: proximity;
507
+ --tw-gradient-from-position: ;
508
+ --tw-gradient-via-position: ;
509
+ --tw-gradient-to-position: ;
510
+ --tw-ordinal: ;
511
+ --tw-slashed-zero: ;
512
+ --tw-numeric-figure: ;
513
+ --tw-numeric-spacing: ;
514
+ --tw-numeric-fraction: ;
515
+ --tw-ring-inset: ;
516
+ --tw-ring-offset-width: 0px;
517
+ --tw-ring-offset-color: #fff;
518
+ --tw-ring-color: rgb(59 130 246 / 0.5);
519
+ --tw-ring-offset-shadow: 0 0 #0000;
520
+ --tw-ring-shadow: 0 0 #0000;
521
+ --tw-shadow: 0 0 #0000;
522
+ --tw-shadow-colored: 0 0 #0000;
523
+ --tw-blur: ;
524
+ --tw-brightness: ;
525
+ --tw-contrast: ;
526
+ --tw-grayscale: ;
527
+ --tw-hue-rotate: ;
528
+ --tw-invert: ;
529
+ --tw-saturate: ;
530
+ --tw-sepia: ;
531
+ --tw-drop-shadow: ;
532
+ --tw-backdrop-blur: ;
533
+ --tw-backdrop-brightness: ;
534
+ --tw-backdrop-contrast: ;
535
+ --tw-backdrop-grayscale: ;
536
+ --tw-backdrop-hue-rotate: ;
537
+ --tw-backdrop-invert: ;
538
+ --tw-backdrop-opacity: ;
539
+ --tw-backdrop-saturate: ;
540
+ --tw-backdrop-sepia: ;
541
+ }
542
+
543
+ ::backdrop {
544
+ --tw-border-spacing-x: 0;
545
+ --tw-border-spacing-y: 0;
546
+ --tw-translate-x: 0;
547
+ --tw-translate-y: 0;
548
+ --tw-rotate: 0;
549
+ --tw-skew-x: 0;
550
+ --tw-skew-y: 0;
551
+ --tw-scale-x: 1;
552
+ --tw-scale-y: 1;
553
+ --tw-pan-x: ;
554
+ --tw-pan-y: ;
555
+ --tw-pinch-zoom: ;
556
+ --tw-scroll-snap-strictness: proximity;
557
+ --tw-gradient-from-position: ;
558
+ --tw-gradient-via-position: ;
559
+ --tw-gradient-to-position: ;
560
+ --tw-ordinal: ;
561
+ --tw-slashed-zero: ;
562
+ --tw-numeric-figure: ;
563
+ --tw-numeric-spacing: ;
564
+ --tw-numeric-fraction: ;
565
+ --tw-ring-inset: ;
566
+ --tw-ring-offset-width: 0px;
567
+ --tw-ring-offset-color: #fff;
568
+ --tw-ring-color: rgb(59 130 246 / 0.5);
569
+ --tw-ring-offset-shadow: 0 0 #0000;
570
+ --tw-ring-shadow: 0 0 #0000;
571
+ --tw-shadow: 0 0 #0000;
572
+ --tw-shadow-colored: 0 0 #0000;
573
+ --tw-blur: ;
574
+ --tw-brightness: ;
575
+ --tw-contrast: ;
576
+ --tw-grayscale: ;
577
+ --tw-hue-rotate: ;
578
+ --tw-invert: ;
579
+ --tw-saturate: ;
580
+ --tw-sepia: ;
581
+ --tw-drop-shadow: ;
582
+ --tw-backdrop-blur: ;
583
+ --tw-backdrop-brightness: ;
584
+ --tw-backdrop-contrast: ;
585
+ --tw-backdrop-grayscale: ;
586
+ --tw-backdrop-hue-rotate: ;
587
+ --tw-backdrop-invert: ;
588
+ --tw-backdrop-opacity: ;
589
+ --tw-backdrop-saturate: ;
590
+ --tw-backdrop-sepia: ;
591
+ }
592
+ .container {
593
+ width: 100%;
594
+ }
595
+ @media (min-width: 640px) {
596
+
597
+ .container {
598
+ max-width: 640px;
599
+ }
600
+ }
601
+ @media (min-width: 768px) {
602
+
603
+ .container {
604
+ max-width: 768px;
605
+ }
606
+ }
607
+ @media (min-width: 1024px) {
608
+
609
+ .container {
610
+ max-width: 1024px;
611
+ }
612
+ }
613
+ @media (min-width: 1280px) {
614
+
615
+ .container {
616
+ max-width: 1280px;
617
+ }
618
+ }
619
+ @media (min-width: 1536px) {
620
+
621
+ .container {
622
+ max-width: 1536px;
623
+ }
624
+ }
625
+ @media (hover:hover) {
626
+
627
+ .label a:hover {
628
+ --tw-text-opacity: 1;
629
+ color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
630
+ }
631
+
632
+ .menu li > *:not(ul):not(.menu-title):not(details):active,
633
+ .menu li > *:not(ul):not(.menu-title):not(details).active,
634
+ .menu li > details > summary:active {
635
+ --tw-bg-opacity: 1;
636
+ background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
637
+ --tw-text-opacity: 1;
638
+ color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
639
+ }
640
+ }
641
+ .dropdown {
642
+ position: relative;
643
+ display: inline-block;
644
+ }
645
+ .dropdown > *:not(summary):focus {
646
+ outline: 2px solid transparent;
647
+ outline-offset: 2px;
648
+ }
649
+ .dropdown .dropdown-content {
650
+ position: absolute;
651
+ }
652
+ .dropdown:is(:not(details)) .dropdown-content {
653
+ visibility: hidden;
654
+ opacity: 0;
655
+ transform-origin: top;
656
+ --tw-scale-x: .95;
657
+ --tw-scale-y: .95;
658
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
659
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
660
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
661
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
662
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
663
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
664
+ transition-duration: 200ms;
665
+ }
666
+ .dropdown-end .dropdown-content {
667
+ inset-inline-end: 0px;
668
+ }
669
+ .dropdown-left .dropdown-content {
670
+ bottom: auto;
671
+ inset-inline-end: 100%;
672
+ top: 0px;
673
+ transform-origin: right;
674
+ }
675
+ .dropdown-right .dropdown-content {
676
+ bottom: auto;
677
+ inset-inline-start: 100%;
678
+ top: 0px;
679
+ transform-origin: left;
680
+ }
681
+ .dropdown-bottom .dropdown-content {
682
+ bottom: auto;
683
+ top: 100%;
684
+ transform-origin: top;
685
+ }
686
+ .dropdown-top .dropdown-content {
687
+ bottom: 100%;
688
+ top: auto;
689
+ transform-origin: bottom;
690
+ }
691
+ .dropdown-end.dropdown-right .dropdown-content {
692
+ bottom: 0px;
693
+ top: auto;
694
+ }
695
+ .dropdown-end.dropdown-left .dropdown-content {
696
+ bottom: 0px;
697
+ top: auto;
698
+ }
699
+ .dropdown.dropdown-open .dropdown-content,
700
+ .dropdown:not(.dropdown-hover):focus .dropdown-content,
701
+ .dropdown:focus-within .dropdown-content {
702
+ visibility: visible;
703
+ opacity: 1;
704
+ }
705
+ @media (hover: hover) {
706
+
707
+ .dropdown.dropdown-hover:hover .dropdown-content {
708
+ visibility: visible;
709
+ opacity: 1;
710
+ }
711
+
712
+ .btm-nav > *.disabled:hover,
713
+ .btm-nav > *[disabled]:hover {
714
+ pointer-events: none;
715
+ --tw-border-opacity: 0;
716
+ background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
717
+ --tw-bg-opacity: 0.1;
718
+ color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
719
+ --tw-text-opacity: 0.2;
720
+ }
721
+
722
+ .dropdown.dropdown-hover:hover .dropdown-content {
723
+ --tw-scale-x: 1;
724
+ --tw-scale-y: 1;
725
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
726
+ }
727
+
728
+ :where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):not(.active):hover, :where(.menu li:not(.menu-title):not(.disabled) > details > summary:not(.menu-title)):not(.active):hover {
729
+ cursor: pointer;
730
+ outline: 2px solid transparent;
731
+ outline-offset: 2px;
732
+ }
733
+
734
+ @supports (color: oklch(0 0 0)) {
735
+
736
+ :where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):not(.active):hover, :where(.menu li:not(.menu-title):not(.disabled) > details > summary:not(.menu-title)):not(.active):hover {
737
+ background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
738
+ }
739
+ }
740
+ }
741
+ .dropdown:is(details) summary::-webkit-details-marker {
742
+ display: none;
743
+ }
744
+ .form-control {
745
+ display: flex;
746
+ flex-direction: column;
747
+ }
748
+ .label {
749
+ display: flex;
750
+ -webkit-user-select: none;
751
+ -moz-user-select: none;
752
+ user-select: none;
753
+ align-items: center;
754
+ justify-content: space-between;
755
+ padding-left: 0.25rem;
756
+ padding-right: 0.25rem;
757
+ padding-top: 0.5rem;
758
+ padding-bottom: 0.5rem;
759
+ }
760
+ .input {
761
+ flex-shrink: 1;
762
+ -webkit-appearance: none;
763
+ -moz-appearance: none;
764
+ appearance: none;
765
+ height: 3rem;
766
+ padding-left: 1rem;
767
+ padding-right: 1rem;
768
+ font-size: 1rem;
769
+ line-height: 2;
770
+ line-height: 1.5rem;
771
+ border-radius: var(--rounded-btn, 0.5rem);
772
+ border-width: 1px;
773
+ border-color: transparent;
774
+ --tw-bg-opacity: 1;
775
+ background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
776
+ }
777
+ .join .dropdown .join-item:first-child:not(:last-child),
778
+ .join *:first-child:not(:last-child) .dropdown .join-item {
779
+ border-start-end-radius: inherit;
780
+ border-end-end-radius: inherit;
781
+ }
782
+ .menu {
783
+ display: flex;
784
+ flex-direction: column;
785
+ flex-wrap: wrap;
786
+ font-size: 0.875rem;
787
+ line-height: 1.25rem;
788
+ padding: 0.5rem;
789
+ }
790
+ .menu :where(li ul) {
791
+ position: relative;
792
+ white-space: nowrap;
793
+ margin-inline-start: 1rem;
794
+ padding-inline-start: 0.5rem;
795
+ }
796
+ .menu :where(li:not(.menu-title) > *:not(ul):not(details):not(.menu-title)),
797
+ .menu :where(li:not(.menu-title) > details > summary:not(.menu-title)) {
798
+ display: grid;
799
+ grid-auto-flow: column;
800
+ align-content: flex-start;
801
+ align-items: center;
802
+ gap: 0.5rem;
803
+ grid-auto-columns: minmax(auto, max-content) auto max-content;
804
+ -webkit-user-select: none;
805
+ -moz-user-select: none;
806
+ user-select: none;
807
+ }
808
+ .menu li.disabled {
809
+ cursor: not-allowed;
810
+ -webkit-user-select: none;
811
+ -moz-user-select: none;
812
+ user-select: none;
813
+ color: var(--fallback-bc,oklch(var(--bc)/0.3));
814
+ }
815
+ .menu :where(li > .menu-dropdown:not(.menu-dropdown-show)) {
816
+ display: none;
817
+ }
818
+ :where(.menu li) {
819
+ position: relative;
820
+ display: flex;
821
+ flex-shrink: 0;
822
+ flex-direction: column;
823
+ flex-wrap: wrap;
824
+ align-items: stretch;
825
+ }
826
+ :where(.menu li) .badge {
827
+ justify-self: end;
828
+ }
829
+ .select {
830
+ display: inline-flex;
831
+ cursor: pointer;
832
+ -webkit-user-select: none;
833
+ -moz-user-select: none;
834
+ user-select: none;
835
+ -webkit-appearance: none;
836
+ -moz-appearance: none;
837
+ appearance: none;
838
+ height: 3rem;
839
+ min-height: 3rem;
840
+ padding-left: 1rem;
841
+ padding-right: 2.5rem;
842
+ font-size: 0.875rem;
843
+ line-height: 1.25rem;
844
+ line-height: 2;
845
+ border-radius: var(--rounded-btn, 0.5rem);
846
+ border-width: 1px;
847
+ border-color: transparent;
848
+ --tw-bg-opacity: 1;
849
+ background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
850
+ background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
851
+ linear-gradient(135deg, currentColor 50%, transparent 50%);
852
+ background-position: calc(100% - 20px) calc(1px + 50%),
853
+ calc(100% - 16.1px) calc(1px + 50%);
854
+ background-size: 4px 4px,
855
+ 4px 4px;
856
+ background-repeat: no-repeat;
857
+ }
858
+ .select[multiple] {
859
+ height: auto;
860
+ }
861
+ .btm-nav > *.disabled,
862
+ .btm-nav > *[disabled] {
863
+ pointer-events: none;
864
+ --tw-border-opacity: 0;
865
+ background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
866
+ --tw-bg-opacity: 0.1;
867
+ color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
868
+ --tw-text-opacity: 0.2;
869
+ }
870
+ .btm-nav > * .label {
871
+ font-size: 1rem;
872
+ line-height: 1.5rem;
873
+ }
874
+ @keyframes button-pop {
875
+
876
+ 0% {
877
+ transform: scale(var(--btn-focus-scale, 0.98));
878
+ }
879
+
880
+ 40% {
881
+ transform: scale(1.02);
882
+ }
883
+
884
+ 100% {
885
+ transform: scale(1);
886
+ }
887
+ }
888
+ @keyframes checkmark {
889
+
890
+ 0% {
891
+ background-position-y: 5px;
892
+ }
893
+
894
+ 50% {
895
+ background-position-y: -2px;
896
+ }
897
+
898
+ 100% {
899
+ background-position-y: 0;
900
+ }
901
+ }
902
+ .dropdown.dropdown-open .dropdown-content,
903
+ .dropdown:focus .dropdown-content,
904
+ .dropdown:focus-within .dropdown-content {
905
+ --tw-scale-x: 1;
906
+ --tw-scale-y: 1;
907
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
908
+ }
909
+ .label-text {
910
+ font-size: 0.875rem;
911
+ line-height: 1.25rem;
912
+ --tw-text-opacity: 1;
913
+ color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
914
+ }
915
+ .input input:focus {
916
+ outline: 2px solid transparent;
917
+ outline-offset: 2px;
918
+ }
919
+ .input[list]::-webkit-calendar-picker-indicator {
920
+ line-height: 1em;
921
+ }
922
+ .input-bordered {
923
+ border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
924
+ }
925
+ .input:focus,
926
+ .input:focus-within {
927
+ box-shadow: none;
928
+ border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
929
+ outline-style: solid;
930
+ outline-width: 2px;
931
+ outline-offset: 2px;
932
+ outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
933
+ }
934
+ .input-error {
935
+ --tw-border-opacity: 1;
936
+ border-color: var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));
937
+ }
938
+ .input-error:focus,
939
+ .input-error:focus-within {
940
+ --tw-border-opacity: 1;
941
+ border-color: var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));
942
+ outline-color: var(--fallback-er,oklch(var(--er)/1));
943
+ }
944
+ .input-disabled,
945
+ .input:disabled,
946
+ .input[disabled] {
947
+ cursor: not-allowed;
948
+ --tw-border-opacity: 1;
949
+ border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
950
+ --tw-bg-opacity: 1;
951
+ background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
952
+ color: var(--fallback-bc,oklch(var(--bc)/0.4));
953
+ }
954
+ .input-disabled::-moz-placeholder, .input:disabled::-moz-placeholder, .input[disabled]::-moz-placeholder {
955
+ color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
956
+ --tw-placeholder-opacity: 0.2;
957
+ }
958
+ .input-disabled::placeholder,
959
+ .input:disabled::placeholder,
960
+ .input[disabled]::placeholder {
961
+ color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
962
+ --tw-placeholder-opacity: 0.2;
963
+ }
964
+ .input::-webkit-date-and-time-value {
965
+ text-align: inherit;
966
+ }
967
+ :where(.menu li:empty) {
968
+ --tw-bg-opacity: 1;
969
+ background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
970
+ opacity: 0.1;
971
+ margin: 0.5rem 1rem;
972
+ height: 1px;
973
+ }
974
+ .menu :where(li ul):before {
975
+ position: absolute;
976
+ bottom: 0.75rem;
977
+ inset-inline-start: 0px;
978
+ top: 0.75rem;
979
+ width: 1px;
980
+ --tw-bg-opacity: 1;
981
+ background-color: var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));
982
+ opacity: 0.1;
983
+ content: "";
984
+ }
985
+ .menu :where(li:not(.menu-title) > *:not(ul):not(details):not(.menu-title)),
986
+ .menu :where(li:not(.menu-title) > details > summary:not(.menu-title)) {
987
+ border-radius: var(--rounded-btn, 0.5rem);
988
+ padding-left: 1rem;
989
+ padding-right: 1rem;
990
+ padding-top: 0.5rem;
991
+ padding-bottom: 0.5rem;
992
+ text-align: start;
993
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
994
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
995
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
996
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
997
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
998
+ transition-duration: 200ms;
999
+ text-wrap: balance;
1000
+ }
1001
+ :where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):not(summary):not(.active).focus,
1002
+ :where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):not(summary):not(.active):focus,
1003
+ :where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):is(summary):not(.active):focus-visible,
1004
+ :where(.menu li:not(.menu-title):not(.disabled) > details > summary:not(.menu-title)):not(summary):not(.active).focus,
1005
+ :where(.menu li:not(.menu-title):not(.disabled) > details > summary:not(.menu-title)):not(summary):not(.active):focus,
1006
+ :where(.menu li:not(.menu-title):not(.disabled) > details > summary:not(.menu-title)):is(summary):not(.active):focus-visible {
1007
+ cursor: pointer;
1008
+ background-color: var(--fallback-bc,oklch(var(--bc)/0.1));
1009
+ --tw-text-opacity: 1;
1010
+ color: var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));
1011
+ outline: 2px solid transparent;
1012
+ outline-offset: 2px;
1013
+ }
1014
+ .menu li > *:not(ul):not(.menu-title):not(details):active,
1015
+ .menu li > *:not(ul):not(.menu-title):not(details).active,
1016
+ .menu li > details > summary:active {
1017
+ --tw-bg-opacity: 1;
1018
+ background-color: var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));
1019
+ --tw-text-opacity: 1;
1020
+ color: var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));
1021
+ }
1022
+ .menu :where(li > details > summary)::-webkit-details-marker {
1023
+ display: none;
1024
+ }
1025
+ .menu :where(li > details > summary):after,
1026
+ .menu :where(li > .menu-dropdown-toggle):after {
1027
+ justify-self: end;
1028
+ display: block;
1029
+ margin-top: -0.5rem;
1030
+ height: 0.5rem;
1031
+ width: 0.5rem;
1032
+ transform: rotate(45deg);
1033
+ transition-property: transform, margin-top;
1034
+ transition-duration: 0.3s;
1035
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1036
+ content: "";
1037
+ transform-origin: 75% 75%;
1038
+ box-shadow: 2px 2px;
1039
+ pointer-events: none;
1040
+ }
1041
+ .menu :where(li > details[open] > summary):after,
1042
+ .menu :where(li > .menu-dropdown-toggle.menu-dropdown-show):after {
1043
+ transform: rotate(225deg);
1044
+ margin-top: 0;
1045
+ }
1046
+ .mockup-browser .mockup-browser-toolbar .input {
1047
+ position: relative;
1048
+ margin-left: auto;
1049
+ margin-right: auto;
1050
+ display: block;
1051
+ height: 1.75rem;
1052
+ width: 24rem;
1053
+ overflow: hidden;
1054
+ text-overflow: ellipsis;
1055
+ white-space: nowrap;
1056
+ --tw-bg-opacity: 1;
1057
+ background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
1058
+ padding-left: 2rem;
1059
+ direction: ltr;
1060
+ }
1061
+ .mockup-browser .mockup-browser-toolbar .input:before {
1062
+ content: "";
1063
+ position: absolute;
1064
+ left: 0.5rem;
1065
+ top: 50%;
1066
+ aspect-ratio: 1 / 1;
1067
+ height: 0.75rem;
1068
+ --tw-translate-y: -50%;
1069
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1070
+ border-radius: 9999px;
1071
+ border-width: 2px;
1072
+ border-color: currentColor;
1073
+ opacity: 0.6;
1074
+ }
1075
+ .mockup-browser .mockup-browser-toolbar .input:after {
1076
+ content: "";
1077
+ position: absolute;
1078
+ left: 1.25rem;
1079
+ top: 50%;
1080
+ height: 0.5rem;
1081
+ --tw-translate-y: 25%;
1082
+ --tw-rotate: -45deg;
1083
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1084
+ border-radius: 9999px;
1085
+ border-width: 1px;
1086
+ border-color: currentColor;
1087
+ opacity: 0.6;
1088
+ }
1089
+ @keyframes modal-pop {
1090
+
1091
+ 0% {
1092
+ opacity: 0;
1093
+ }
1094
+ }
1095
+ @keyframes progress-loading {
1096
+
1097
+ 50% {
1098
+ background-position-x: -115%;
1099
+ }
1100
+ }
1101
+ @keyframes radiomark {
1102
+
1103
+ 0% {
1104
+ box-shadow: 0 0 0 12px var(--fallback-b1,oklch(var(--b1)/1)) inset,
1105
+ 0 0 0 12px var(--fallback-b1,oklch(var(--b1)/1)) inset;
1106
+ }
1107
+
1108
+ 50% {
1109
+ box-shadow: 0 0 0 3px var(--fallback-b1,oklch(var(--b1)/1)) inset,
1110
+ 0 0 0 3px var(--fallback-b1,oklch(var(--b1)/1)) inset;
1111
+ }
1112
+
1113
+ 100% {
1114
+ box-shadow: 0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset,
1115
+ 0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset;
1116
+ }
1117
+ }
1118
+ @keyframes rating-pop {
1119
+
1120
+ 0% {
1121
+ transform: translateY(-0.125em);
1122
+ }
1123
+
1124
+ 40% {
1125
+ transform: translateY(-0.125em);
1126
+ }
1127
+
1128
+ 100% {
1129
+ transform: translateY(0);
1130
+ }
1131
+ }
1132
+ .select:focus {
1133
+ box-shadow: none;
1134
+ border-color: var(--fallback-bc,oklch(var(--bc)/0.2));
1135
+ outline-style: solid;
1136
+ outline-width: 2px;
1137
+ outline-offset: 2px;
1138
+ outline-color: var(--fallback-bc,oklch(var(--bc)/0.2));
1139
+ }
1140
+ .select-disabled,
1141
+ .select:disabled,
1142
+ .select[disabled] {
1143
+ cursor: not-allowed;
1144
+ --tw-border-opacity: 1;
1145
+ border-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));
1146
+ --tw-bg-opacity: 1;
1147
+ background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));
1148
+ --tw-text-opacity: 0.2;
1149
+ }
1150
+ .select-disabled::-moz-placeholder, .select:disabled::-moz-placeholder, .select[disabled]::-moz-placeholder {
1151
+ color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
1152
+ --tw-placeholder-opacity: 0.2;
1153
+ }
1154
+ .select-disabled::placeholder,
1155
+ .select:disabled::placeholder,
1156
+ .select[disabled]::placeholder {
1157
+ color: var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));
1158
+ --tw-placeholder-opacity: 0.2;
1159
+ }
1160
+ .select-multiple,
1161
+ .select[multiple],
1162
+ .select[size].select:not([size="1"]) {
1163
+ background-image: none;
1164
+ padding-right: 1rem;
1165
+ }
1166
+ [dir="rtl"] .select {
1167
+ background-position: calc(0% + 12px) calc(1px + 50%),
1168
+ calc(0% + 16px) calc(1px + 50%);
1169
+ }
1170
+ @keyframes skeleton {
1171
+
1172
+ from {
1173
+ background-position: 150%;
1174
+ }
1175
+
1176
+ to {
1177
+ background-position: -50%;
1178
+ }
1179
+ }
1180
+ @keyframes toast-pop {
1181
+
1182
+ 0% {
1183
+ transform: scale(0.9);
1184
+ opacity: 0;
1185
+ }
1186
+
1187
+ 100% {
1188
+ transform: scale(1);
1189
+ opacity: 1;
1190
+ }
1191
+ }
1192
+ .relative {
1193
+ position: relative;
1194
+ }
1195
+ .z-\[1\] {
1196
+ z-index: 1;
1197
+ }
1198
+ .block {
1199
+ display: block;
1200
+ }
1201
+ .flex {
1202
+ display: flex;
1203
+ }
1204
+ .w-full {
1205
+ width: 100%;
1206
+ }
1207
+ .cursor-pointer {
1208
+ cursor: pointer;
1209
+ }
1210
+ .bg-base-100 {
1211
+ --tw-bg-opacity: 1;
1212
+ background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));
1213
+ }
1214
+ .text-red-500 {
1215
+ --tw-text-opacity: 1;
1216
+ color: rgb(239 68 68 / var(--tw-text-opacity));
1217
+ }
1218
+ .filter {
1219
+ 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);
1220
+ }
1221
+ .text-box-size-xs {
1222
+ height: 1.5rem;
1223
+ padding-left: 0.5rem;
1224
+ padding-right: 0.5rem;
1225
+ font-size: 0.75rem;
1226
+ line-height: 1rem;
1227
+ line-height: 1.625;
1228
+ }
1229
+ .text-box-size-xs.text-box-with-left-icon {
1230
+ padding-left: 2rem;
1231
+ }
1232
+ .text-box-size-xs.text-box-with-right-icon {
1233
+ padding-right: 2rem;
1234
+ }
1235
+ .text-box-size-sm {
1236
+ height: 2rem;
1237
+ padding-left: 0.75rem;
1238
+ padding-right: 0.75rem;
1239
+ font-size: 0.875rem;
1240
+ line-height: 2rem;
1241
+ }
1242
+ .text-box-size-sm.text-box-with-left-icon {
1243
+ padding-left: 2rem;
1244
+ }
1245
+ .text-box-size-sm.text-box-with-right-icon {
1246
+ padding-right: 2rem;
1247
+ }
1248
+ .text-box-size-md {
1249
+ height: 3rem;
1250
+ padding-left: 1rem;
1251
+ padding-right: 1rem;
1252
+ font-size: 0.875rem;
1253
+ line-height: 1.25rem;
1254
+ line-height: 2;
1255
+ }
1256
+ .text-box-size-md.text-box-with-left-icon {
1257
+ padding-left: 2.25rem;
1258
+ }
1259
+ .text-box-size-md.text-box-with-right-icon {
1260
+ padding-right: 2.25rem;
1261
+ }
1262
+ .text-box-size-lg {
1263
+ height: 4rem;
1264
+ padding-left: 1.5rem;
1265
+ padding-right: 1.5rem;
1266
+ font-size: 1.125rem;
1267
+ line-height: 1.75rem;
1268
+ line-height: 2;
1269
+ }
1270
+ .text-box-size-lg.text-box-with-left-icon {
1271
+ padding-left: 2.25rem;
1272
+ }
1273
+ .text-box-size-lg.text-box-with-right-icon {
1274
+ padding-right: 2.25rem;
1275
+ }
1276
+ .text-box-left-icon {
1277
+ position: absolute;
1278
+ }
1279
+ .text-box-left-icon-size-xs {
1280
+ top: 5px;
1281
+ left: 0.5rem;
1282
+ }
1283
+ .text-box-left-icon-size-sm {
1284
+ top: 0.5rem;
1285
+ left: 0.5rem;
1286
+ }
1287
+ .text-box-left-icon-size-md {
1288
+ top: 1rem;
1289
+ left: 0.75rem;
1290
+ }
1291
+ .text-box-left-icon-size-lg {
1292
+ top: 1.5rem;
1293
+ left: 0.75rem;
1294
+ }
1295
+ .text-box-right-icon {
1296
+ position: absolute;
1297
+ }
1298
+ .text-box-right-icon-size-xs {
1299
+ top: 5px;
1300
+ right: 0.5rem;
1301
+ }
1302
+ .text-box-right-icon-size-sm {
1303
+ top: 0.5rem;
1304
+ right: 0.5rem;
1305
+ }
1306
+ .text-box-right-icon-size-md {
1307
+ top: 1rem;
1308
+ right: 0.75rem;
1309
+ }
1310
+ .text-box-right-icon-size-lg {
1311
+ top: 1.5rem;
1312
+ right: 0.75rem;
1313
+ }