@vaneui/ui 0.0.8 → 0.0.10

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/ui.css CHANGED
@@ -1,935 +1,187 @@
1
1
  /*! tailwindcss v4.0.9 | MIT License | https://tailwindcss.com */
2
- @layer theme, base, components, utilities;
3
- @layer theme {
4
- :root, :host {
5
- --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
6
- "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
7
- --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
8
- --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
- "Courier New", monospace;
10
- --color-red-200: oklch(0.885 0.062 18.334);
11
- --color-yellow-200: oklch(0.945 0.129 101.54);
12
- --color-green-200: oklch(0.925 0.084 155.995);
13
- --color-blue-200: oklch(0.882 0.059 254.128);
14
- --color-gray-100: oklch(0.967 0.003 264.542);
15
- --color-gray-200: oklch(0.928 0.006 264.531);
16
- --spacing: 0.25rem;
17
- --container-3xl: 48rem;
18
- --container-4xl: 56rem;
19
- --container-5xl: 64rem;
20
- --container-6xl: 72rem;
21
- --container-7xl: 80rem;
22
- --text-xs: 0.75rem;
23
- --text-xs--line-height: calc(1 / 0.75);
24
- --text-sm: 0.875rem;
25
- --text-sm--line-height: calc(1.25 / 0.875);
26
- --text-base: 1rem;
27
- --text-base--line-height: calc(1.5 / 1);
28
- --text-lg: 1.125rem;
29
- --text-lg--line-height: calc(1.75 / 1.125);
30
- --text-xl: 1.25rem;
31
- --text-xl--line-height: calc(1.75 / 1.25);
32
- --text-2xl: 1.5rem;
33
- --text-2xl--line-height: calc(2 / 1.5);
34
- --text-3xl: 1.875rem;
35
- --text-3xl--line-height: calc(2.25 / 1.875);
36
- --text-4xl: 2.25rem;
37
- --text-4xl--line-height: calc(2.5 / 2.25);
38
- --text-5xl: 3rem;
39
- --text-5xl--line-height: 1;
40
- --text-6xl: 3.75rem;
41
- --text-6xl--line-height: 1;
42
- --text-7xl: 4.5rem;
43
- --text-7xl--line-height: 1;
44
- --font-weight-thin: 100;
45
- --font-weight-extralight: 200;
46
- --font-weight-light: 300;
47
- --font-weight-normal: 400;
48
- --font-weight-medium: 500;
49
- --font-weight-semibold: 600;
50
- --font-weight-bold: 700;
51
- --font-weight-extrabold: 800;
52
- --font-weight-black: 900;
53
- --radius-sm: 0.25rem;
54
- --radius-md: 0.375rem;
55
- --radius-lg: 0.5rem;
56
- --radius-xl: 0.75rem;
57
- --radius-2xl: 1rem;
58
- --default-transition-duration: 150ms;
59
- --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
60
- --default-font-family: var(--font-sans);
61
- --default-font-feature-settings: var(--font-sans--font-feature-settings);
62
- --default-font-variation-settings: var(
63
- --font-sans--font-variation-settings
64
- );
65
- --default-mono-font-family: var(--font-mono);
66
- --default-mono-font-feature-settings: var(
67
- --font-mono--font-feature-settings
68
- );
69
- --default-mono-font-variation-settings: var(
70
- --font-mono--font-variation-settings
71
- );
72
- }
2
+ .absolute {
3
+ position: absolute;
73
4
  }
74
- @layer base {
75
- *, ::after, ::before, ::backdrop, ::file-selector-button {
76
- box-sizing: border-box;
77
- margin: 0;
78
- padding: 0;
79
- border: 0 solid;
80
- }
81
- html, :host {
82
- line-height: 1.5;
83
- -webkit-text-size-adjust: 100%;
84
- tab-size: 4;
85
- 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" );
86
- font-feature-settings: var(--default-font-feature-settings, normal);
87
- font-variation-settings: var( --default-font-variation-settings, normal );
88
- -webkit-tap-highlight-color: transparent;
89
- }
90
- body {
91
- line-height: inherit;
92
- }
93
- hr {
94
- height: 0;
95
- color: inherit;
96
- border-top-width: 1px;
97
- }
98
- abbr:where([title]) {
99
- -webkit-text-decoration: underline dotted;
100
- text-decoration: underline dotted;
101
- }
102
- h1, h2, h3, h4, h5, h6 {
103
- font-size: inherit;
104
- font-weight: inherit;
105
- }
106
- a {
107
- color: inherit;
108
- -webkit-text-decoration: inherit;
109
- text-decoration: inherit;
110
- }
111
- b, strong {
112
- font-weight: bolder;
113
- }
114
- code, kbd, samp, pre {
115
- font-family: var( --default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace );
116
- font-feature-settings: var( --default-mono-font-feature-settings, normal );
117
- font-variation-settings: var( --default-mono-font-variation-settings, normal );
118
- font-size: 1em;
119
- }
120
- small {
121
- font-size: 80%;
122
- }
123
- sub, sup {
124
- font-size: 75%;
125
- line-height: 0;
126
- position: relative;
127
- vertical-align: baseline;
128
- }
129
- sub {
130
- bottom: -0.25em;
131
- }
132
- sup {
133
- top: -0.5em;
134
- }
135
- table {
136
- text-indent: 0;
137
- border-color: inherit;
138
- border-collapse: collapse;
139
- }
140
- :-moz-focusring {
141
- outline: auto;
142
- }
143
- progress {
144
- vertical-align: baseline;
145
- }
146
- summary {
147
- display: list-item;
148
- }
149
- ol, ul, menu {
150
- list-style: none;
151
- }
152
- img, svg, video, canvas, audio, iframe, embed, object {
153
- display: block;
154
- vertical-align: middle;
155
- }
156
- img, video {
157
- max-width: 100%;
158
- height: auto;
159
- }
160
- button, input, select, optgroup, textarea, ::file-selector-button {
161
- font: inherit;
162
- font-feature-settings: inherit;
163
- font-variation-settings: inherit;
164
- letter-spacing: inherit;
165
- color: inherit;
166
- border-radius: 0;
167
- background-color: transparent;
168
- opacity: 1;
169
- }
170
- :where(select:is([multiple], [size])) optgroup {
171
- font-weight: bolder;
172
- }
173
- :where(select:is([multiple], [size])) optgroup option {
174
- padding-inline-start: 20px;
175
- }
176
- ::file-selector-button {
177
- margin-inline-end: 4px;
178
- }
179
- ::placeholder {
180
- opacity: 1;
181
- color: color-mix(in oklab, currentColor 50%, transparent);
182
- }
183
- textarea {
184
- resize: vertical;
185
- }
186
- ::-webkit-search-decoration {
187
- -webkit-appearance: none;
188
- }
189
- ::-webkit-date-and-time-value {
190
- min-height: 1lh;
191
- text-align: inherit;
192
- }
193
- ::-webkit-datetime-edit {
194
- display: inline-flex;
195
- }
196
- ::-webkit-datetime-edit-fields-wrapper {
197
- padding: 0;
198
- }
199
- ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
200
- padding-block: 0;
201
- }
202
- :-moz-ui-invalid {
203
- box-shadow: none;
204
- }
205
- button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
206
- appearance: button;
207
- }
208
- ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
209
- height: auto;
210
- }
211
- [hidden]:where(:not([hidden="until-found"])) {
212
- display: none !important;
213
- }
5
+ .fixed {
6
+ position: fixed;
214
7
  }
215
- @layer utilities {
216
- .absolute {
217
- position: absolute;
218
- }
219
- .fixed {
220
- position: fixed;
221
- }
222
- .relative {
223
- position: relative;
224
- }
225
- .static {
226
- position: static;
227
- }
228
- .sticky {
229
- position: sticky;
230
- }
231
- .m-0 {
232
- margin: calc(var(--spacing) * 0);
233
- }
234
- .mx-auto {
235
- margin-inline: auto;
236
- }
237
- .flex {
238
- display: flex;
239
- }
240
- .grid {
241
- display: grid;
242
- }
243
- .h-fit {
244
- height: fit-content;
245
- }
246
- .h-px {
247
- height: 1px;
248
- }
249
- .w-fit {
250
- width: fit-content;
251
- }
252
- .w-full {
253
- width: 100%;
254
- }
255
- .max-w-3xl {
256
- max-width: var(--container-3xl);
257
- }
258
- .max-w-4xl {
259
- max-width: var(--container-4xl);
260
- }
261
- .max-w-5xl {
262
- max-width: var(--container-5xl);
263
- }
264
- .max-w-6xl {
265
- max-width: var(--container-6xl);
266
- }
267
- .max-w-7xl {
268
- max-width: var(--container-7xl);
269
- }
270
- .cursor-pointer {
271
- cursor: pointer;
272
- }
273
- .list-inside {
274
- list-style-position: inside;
275
- }
276
- .list-disc {
277
- list-style-type: disc;
278
- }
279
- .grid-cols-3 {
280
- grid-template-columns: repeat(3, minmax(0, 1fr));
281
- }
282
- .grid-cols-4 {
283
- grid-template-columns: repeat(4, minmax(0, 1fr));
284
- }
285
- .flex-col {
286
- flex-direction: column;
287
- }
288
- .flex-col-reverse {
289
- flex-direction: column-reverse;
290
- }
291
- .flex-row {
292
- flex-direction: row;
293
- }
294
- .flex-row-reverse {
295
- flex-direction: row-reverse;
296
- }
297
- .items-center {
298
- align-items: center;
299
- }
300
- .items-start {
301
- align-items: flex-start;
302
- }
303
- .justify-around {
304
- justify-content: space-around;
305
- }
306
- .justify-baseline {
307
- justify-content: baseline;
308
- }
309
- .justify-between {
310
- justify-content: space-between;
311
- }
312
- .justify-center {
313
- justify-content: center;
314
- }
315
- .justify-end {
316
- justify-content: flex-end;
317
- }
318
- .justify-evenly {
319
- justify-content: space-evenly;
320
- }
321
- .justify-start {
322
- justify-content: flex-start;
323
- }
324
- .justify-stretch {
325
- justify-content: stretch;
326
- }
327
- .gap-0 {
328
- gap: calc(var(--spacing) * 0);
329
- }
330
- .gap-1 {
331
- gap: calc(var(--spacing) * 1);
332
- }
333
- .gap-2 {
334
- gap: calc(var(--spacing) * 2);
335
- }
336
- .gap-4 {
337
- gap: calc(var(--spacing) * 4);
338
- }
339
- .gap-6 {
340
- gap: calc(var(--spacing) * 6);
341
- }
342
- .gap-8 {
343
- gap: calc(var(--spacing) * 8);
344
- }
345
- .gap-10 {
346
- gap: calc(var(--spacing) * 10);
347
- }
348
- .rounded-2xl {
349
- border-radius: var(--radius-2xl);
350
- }
351
- .rounded-full {
352
- border-radius: calc(infinity * 1px);
353
- }
354
- .rounded-lg {
355
- border-radius: var(--radius-lg);
356
- }
357
- .rounded-md {
358
- border-radius: var(--radius-md);
359
- }
360
- .rounded-sm {
361
- border-radius: var(--radius-sm);
362
- }
363
- .rounded-xl {
364
- border-radius: var(--radius-xl);
365
- }
366
- .border {
367
- border-style: var(--tw-border-style);
368
- border-width: 1px;
369
- }
370
- .border-gray-200 {
371
- border-color: var(--color-gray-200);
372
- }
373
- .bg-blue-200 {
374
- background-color: var(--color-blue-200);
375
- }
376
- .bg-gray-100 {
377
- background-color: var(--color-gray-100);
378
- }
379
- .bg-gray-200 {
380
- background-color: var(--color-gray-200);
381
- }
382
- .bg-green-200 {
383
- background-color: var(--color-green-200);
384
- }
385
- .bg-red-200 {
386
- background-color: var(--color-red-200);
387
- }
388
- .bg-yellow-200 {
389
- background-color: var(--color-yellow-200);
390
- }
391
- .p-0 {
392
- padding: calc(var(--spacing) * 0);
393
- }
394
- .px-1 {
395
- padding-inline: calc(var(--spacing) * 1);
396
- }
397
- .px-2 {
398
- padding-inline: calc(var(--spacing) * 2);
399
- }
400
- .px-3 {
401
- padding-inline: calc(var(--spacing) * 3);
402
- }
403
- .px-4 {
404
- padding-inline: calc(var(--spacing) * 4);
405
- }
406
- .px-5 {
407
- padding-inline: calc(var(--spacing) * 5);
408
- }
409
- .px-6 {
410
- padding-inline: calc(var(--spacing) * 6);
411
- }
412
- .px-8 {
413
- padding-inline: calc(var(--spacing) * 8);
414
- }
415
- .px-10 {
416
- padding-inline: calc(var(--spacing) * 10);
417
- }
418
- .px-12 {
419
- padding-inline: calc(var(--spacing) * 12);
420
- }
421
- .py-1 {
422
- padding-block: calc(var(--spacing) * 1);
423
- }
424
- .py-2 {
425
- padding-block: calc(var(--spacing) * 2);
426
- }
427
- .py-3 {
428
- padding-block: calc(var(--spacing) * 3);
429
- }
430
- .py-4 {
431
- padding-block: calc(var(--spacing) * 4);
432
- }
433
- .py-6 {
434
- padding-block: calc(var(--spacing) * 6);
435
- }
436
- .py-8 {
437
- padding-block: calc(var(--spacing) * 8);
438
- }
439
- .py-10 {
440
- padding-block: calc(var(--spacing) * 10);
441
- }
442
- .py-12 {
443
- padding-block: calc(var(--spacing) * 12);
444
- }
445
- .py-14 {
446
- padding-block: calc(var(--spacing) * 14);
447
- }
448
- .font-mono {
449
- font-family: var(--font-mono);
450
- }
451
- .font-sans {
452
- font-family: var(--font-sans);
453
- }
454
- .font-serif {
455
- font-family: var(--font-serif);
456
- }
457
- .text-2xl {
458
- font-size: var(--text-2xl);
459
- line-height: var(--tw-leading, var(--text-2xl--line-height));
460
- }
461
- .text-3xl {
462
- font-size: var(--text-3xl);
463
- line-height: var(--tw-leading, var(--text-3xl--line-height));
464
- }
465
- .text-4xl {
466
- font-size: var(--text-4xl);
467
- line-height: var(--tw-leading, var(--text-4xl--line-height));
468
- }
469
- .text-5xl {
470
- font-size: var(--text-5xl);
471
- line-height: var(--tw-leading, var(--text-5xl--line-height));
472
- }
473
- .text-6xl {
474
- font-size: var(--text-6xl);
475
- line-height: var(--tw-leading, var(--text-6xl--line-height));
476
- }
477
- .text-7xl {
478
- font-size: var(--text-7xl);
479
- line-height: var(--tw-leading, var(--text-7xl--line-height));
480
- }
481
- .text-base {
482
- font-size: var(--text-base);
483
- line-height: var(--tw-leading, var(--text-base--line-height));
484
- }
485
- .text-lg {
486
- font-size: var(--text-lg);
487
- line-height: var(--tw-leading, var(--text-lg--line-height));
488
- }
489
- .text-sm {
490
- font-size: var(--text-sm);
491
- line-height: var(--tw-leading, var(--text-sm--line-height));
492
- }
493
- .text-xl {
494
- font-size: var(--text-xl);
495
- line-height: var(--tw-leading, var(--text-xl--line-height));
496
- }
497
- .text-xs {
498
- font-size: var(--text-xs);
499
- line-height: var(--tw-leading, var(--text-xs--line-height));
500
- }
501
- .font-black {
502
- --tw-font-weight: var(--font-weight-black);
503
- font-weight: var(--font-weight-black);
504
- }
505
- .font-bold {
506
- --tw-font-weight: var(--font-weight-bold);
507
- font-weight: var(--font-weight-bold);
508
- }
509
- .font-extrabold {
510
- --tw-font-weight: var(--font-weight-extrabold);
511
- font-weight: var(--font-weight-extrabold);
512
- }
513
- .font-extralight {
514
- --tw-font-weight: var(--font-weight-extralight);
515
- font-weight: var(--font-weight-extralight);
516
- }
517
- .font-light {
518
- --tw-font-weight: var(--font-weight-light);
519
- font-weight: var(--font-weight-light);
520
- }
521
- .font-medium {
522
- --tw-font-weight: var(--font-weight-medium);
523
- font-weight: var(--font-weight-medium);
524
- }
525
- .font-normal {
526
- --tw-font-weight: var(--font-weight-normal);
527
- font-weight: var(--font-weight-normal);
528
- }
529
- .font-semibold {
530
- --tw-font-weight: var(--font-weight-semibold);
531
- font-weight: var(--font-weight-semibold);
532
- }
533
- .font-thin {
534
- --tw-font-weight: var(--font-weight-thin);
535
- font-weight: var(--font-weight-thin);
536
- }
537
- .text-\(--text-color-accent\) {
538
- color: var(--text-color-accent);
539
- }
540
- .text-\(--text-color-danger\) {
541
- color: var(--text-color-danger);
542
- }
543
- .text-\(--text-color-default\) {
544
- color: var(--text-color-default);
545
- }
546
- .text-\(--text-color-info\) {
547
- color: var(--text-color-info);
548
- }
549
- .text-\(--text-color-link\) {
550
- color: var(--text-color-link);
551
- }
552
- .text-\(--text-color-muted\) {
553
- color: var(--text-color-muted);
554
- }
555
- .text-\(--text-color-primary\) {
556
- color: var(--text-color-primary);
557
- }
558
- .text-\(--text-color-secondary\) {
559
- color: var(--text-color-secondary);
560
- }
561
- .text-\(--text-color-success\) {
562
- color: var(--text-color-success);
563
- }
564
- .text-\(--text-color-tertiary\) {
565
- color: var(--text-color-tertiary);
566
- }
567
- .text-\(--text-color-warning\) {
568
- color: var(--text-color-warning);
569
- }
570
- .capitalize {
571
- text-transform: capitalize;
572
- }
573
- .lowercase {
574
- text-transform: lowercase;
575
- }
576
- .normal-case {
577
- text-transform: none;
578
- }
579
- .uppercase {
580
- text-transform: uppercase;
581
- }
582
- .italic {
583
- font-style: italic;
584
- }
585
- .not-italic {
586
- font-style: normal;
587
- }
588
- .line-through {
589
- text-decoration-line: line-through;
590
- }
591
- .no-underline {
592
- text-decoration-line: none;
593
- }
594
- .overline {
595
- text-decoration-line: overline;
596
- }
597
- .underline {
598
- text-decoration-line: underline;
599
- }
600
- .shadow-lg {
601
- --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
602
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
603
- }
604
- .shadow-md {
605
- --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
606
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
607
- }
608
- .shadow-sm {
609
- --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));
610
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
611
- }
612
- .shadow-xs {
613
- --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
614
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
615
- }
616
- .transition-all {
617
- transition-property: all;
618
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
619
- transition-duration: var(--tw-duration, var(--default-transition-duration));
620
- }
621
- .duration-300 {
622
- --tw-duration: 300ms;
623
- transition-duration: 300ms;
624
- }
625
- .hover\:underline {
626
- &:hover {
627
- @media (hover: hover) {
628
- text-decoration-line: underline;
629
- }
630
- }
631
- }
632
- .hover\:shadow-lg {
633
- &:hover {
634
- @media (hover: hover) {
635
- --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
636
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
637
- }
638
- }
639
- }
640
- .hover\:shadow-md {
641
- &:hover {
642
- @media (hover: hover) {
643
- --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
644
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
645
- }
646
- }
647
- }
648
- .hover\:shadow-sm {
649
- &:hover {
650
- @media (hover: hover) {
651
- --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));
652
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
653
- }
654
- }
655
- }
656
- .hover\:shadow-xl {
657
- &:hover {
658
- @media (hover: hover) {
659
- --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));
660
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
661
- }
662
- }
663
- }
664
- .max-xl\:flex-col {
665
- @media (width < 80rem) {
666
- flex-direction: column;
667
- }
668
- }
669
- .max-lg\:grid-cols-2 {
670
- @media (width < 64rem) {
671
- grid-template-columns: repeat(2, minmax(0, 1fr));
672
- }
673
- }
674
- .max-lg\:grid-cols-3 {
675
- @media (width < 64rem) {
676
- grid-template-columns: repeat(3, minmax(0, 1fr));
677
- }
678
- }
679
- .max-lg\:flex-col {
680
- @media (width < 64rem) {
681
- flex-direction: column;
682
- }
683
- }
684
- .max-lg\:gap-1 {
685
- @media (width < 64rem) {
686
- gap: calc(var(--spacing) * 1);
687
- }
688
- }
689
- .max-lg\:gap-2 {
690
- @media (width < 64rem) {
691
- gap: calc(var(--spacing) * 2);
692
- }
693
- }
694
- .max-lg\:gap-3 {
695
- @media (width < 64rem) {
696
- gap: calc(var(--spacing) * 3);
697
- }
698
- }
699
- .max-lg\:gap-4 {
700
- @media (width < 64rem) {
701
- gap: calc(var(--spacing) * 4);
702
- }
703
- }
704
- .max-lg\:gap-5 {
705
- @media (width < 64rem) {
706
- gap: calc(var(--spacing) * 5);
707
- }
708
- }
709
- .max-lg\:gap-6 {
710
- @media (width < 64rem) {
711
- gap: calc(var(--spacing) * 6);
712
- }
713
- }
714
- .max-lg\:gap-7 {
715
- @media (width < 64rem) {
716
- gap: calc(var(--spacing) * 7);
717
- }
718
- }
719
- .max-lg\:gap-8 {
720
- @media (width < 64rem) {
721
- gap: calc(var(--spacing) * 8);
722
- }
723
- }
724
- .max-lg\:gap-9 {
725
- @media (width < 64rem) {
726
- gap: calc(var(--spacing) * 9);
727
- }
728
- }
729
- .max-lg\:px-2 {
730
- @media (width < 64rem) {
731
- padding-inline: calc(var(--spacing) * 2);
732
- }
733
- }
734
- .max-lg\:px-6 {
735
- @media (width < 64rem) {
736
- padding-inline: calc(var(--spacing) * 6);
737
- }
738
- }
739
- .max-lg\:px-8 {
740
- @media (width < 64rem) {
741
- padding-inline: calc(var(--spacing) * 8);
742
- }
743
- }
744
- .max-lg\:px-10 {
745
- @media (width < 64rem) {
746
- padding-inline: calc(var(--spacing) * 10);
747
- }
748
- }
749
- .max-lg\:py-4 {
750
- @media (width < 64rem) {
751
- padding-block: calc(var(--spacing) * 4);
752
- }
753
- }
754
- .max-lg\:py-6 {
755
- @media (width < 64rem) {
756
- padding-block: calc(var(--spacing) * 6);
757
- }
758
- }
759
- .max-lg\:py-8 {
760
- @media (width < 64rem) {
761
- padding-block: calc(var(--spacing) * 8);
762
- }
763
- }
764
- .max-lg\:py-10 {
765
- @media (width < 64rem) {
766
- padding-block: calc(var(--spacing) * 10);
767
- }
768
- }
769
- .max-lg\:py-12 {
770
- @media (width < 64rem) {
771
- padding-block: calc(var(--spacing) * 12);
772
- }
773
- }
774
- .max-md\:grid-cols-1 {
775
- @media (width < 48rem) {
776
- grid-template-columns: repeat(1, minmax(0, 1fr));
777
- }
778
- }
779
- .max-md\:grid-cols-2 {
780
- @media (width < 48rem) {
781
- grid-template-columns: repeat(2, minmax(0, 1fr));
782
- }
783
- }
784
- .max-md\:flex-col {
785
- @media (width < 48rem) {
786
- flex-direction: column;
787
- }
788
- }
789
- .max-md\:gap-2 {
790
- @media (width < 48rem) {
791
- gap: calc(var(--spacing) * 2);
792
- }
793
- }
794
- .max-md\:gap-4 {
795
- @media (width < 48rem) {
796
- gap: calc(var(--spacing) * 4);
797
- }
798
- }
799
- .max-md\:gap-6 {
800
- @media (width < 48rem) {
801
- gap: calc(var(--spacing) * 6);
802
- }
803
- }
804
- .max-md\:gap-8 {
805
- @media (width < 48rem) {
806
- gap: calc(var(--spacing) * 8);
807
- }
808
- }
809
- .max-md\:px-0 {
810
- @media (width < 48rem) {
811
- padding-inline: calc(var(--spacing) * 0);
812
- }
813
- }
814
- .max-md\:px-2 {
815
- @media (width < 48rem) {
816
- padding-inline: calc(var(--spacing) * 2);
817
- }
818
- }
819
- .max-md\:px-4 {
820
- @media (width < 48rem) {
821
- padding-inline: calc(var(--spacing) * 4);
822
- }
823
- }
824
- .max-md\:px-6 {
825
- @media (width < 48rem) {
826
- padding-inline: calc(var(--spacing) * 6);
827
- }
828
- }
829
- .max-md\:px-8 {
830
- @media (width < 48rem) {
831
- padding-inline: calc(var(--spacing) * 8);
832
- }
833
- }
834
- .max-md\:py-2 {
835
- @media (width < 48rem) {
836
- padding-block: calc(var(--spacing) * 2);
837
- }
838
- }
839
- .max-md\:py-4 {
840
- @media (width < 48rem) {
841
- padding-block: calc(var(--spacing) * 4);
842
- }
843
- }
844
- .max-md\:py-6 {
845
- @media (width < 48rem) {
846
- padding-block: calc(var(--spacing) * 6);
847
- }
848
- }
849
- .max-md\:py-8 {
850
- @media (width < 48rem) {
851
- padding-block: calc(var(--spacing) * 8);
852
- }
853
- }
854
- .max-md\:py-10 {
855
- @media (width < 48rem) {
856
- padding-block: calc(var(--spacing) * 10);
857
- }
858
- }
859
- .max-sm\:grid-cols-1 {
860
- @media (width < 40rem) {
861
- grid-template-columns: repeat(1, minmax(0, 1fr));
862
- }
863
- }
864
- .max-sm\:flex-col {
865
- @media (width < 40rem) {
866
- flex-direction: column;
867
- }
868
- }
8
+ .relative {
9
+ position: relative;
869
10
  }
870
- @property --tw-border-style {
871
- syntax: "*";
872
- inherits: false;
873
- initial-value: solid;
11
+ .static {
12
+ position: static;
874
13
  }
875
- @property --tw-font-weight {
876
- syntax: "*";
877
- inherits: false;
14
+ .sticky {
15
+ position: sticky;
878
16
  }
879
- @property --tw-shadow {
880
- syntax: "*";
881
- inherits: false;
882
- initial-value: 0 0 #0000;
17
+ .mx-auto {
18
+ margin-inline: auto;
883
19
  }
884
- @property --tw-shadow-color {
885
- syntax: "*";
886
- inherits: false;
20
+ .flex {
21
+ display: flex;
887
22
  }
888
- @property --tw-inset-shadow {
889
- syntax: "*";
890
- inherits: false;
891
- initial-value: 0 0 #0000;
23
+ .grid {
24
+ display: grid;
892
25
  }
893
- @property --tw-inset-shadow-color {
894
- syntax: "*";
895
- inherits: false;
26
+ .h-fit {
27
+ height: fit-content;
896
28
  }
897
- @property --tw-ring-color {
898
- syntax: "*";
899
- inherits: false;
29
+ .h-px {
30
+ height: 1px;
900
31
  }
901
- @property --tw-ring-shadow {
902
- syntax: "*";
903
- inherits: false;
904
- initial-value: 0 0 #0000;
32
+ .w-fit {
33
+ width: fit-content;
905
34
  }
906
- @property --tw-inset-ring-color {
907
- syntax: "*";
908
- inherits: false;
35
+ .w-full {
36
+ width: 100%;
909
37
  }
910
- @property --tw-inset-ring-shadow {
911
- syntax: "*";
912
- inherits: false;
913
- initial-value: 0 0 #0000;
38
+ .cursor-pointer {
39
+ cursor: pointer;
914
40
  }
915
- @property --tw-ring-inset {
916
- syntax: "*";
917
- inherits: false;
41
+ .list-inside {
42
+ list-style-position: inside;
918
43
  }
919
- @property --tw-ring-offset-width {
920
- syntax: "<length>";
921
- inherits: false;
922
- initial-value: 0px;
44
+ .list-disc {
45
+ list-style-type: disc;
923
46
  }
924
- @property --tw-ring-offset-color {
925
- syntax: "*";
926
- inherits: false;
927
- initial-value: #fff;
47
+ .grid-cols-3 {
48
+ grid-template-columns: repeat(3, minmax(0, 1fr));
49
+ }
50
+ .grid-cols-4 {
51
+ grid-template-columns: repeat(4, minmax(0, 1fr));
52
+ }
53
+ .flex-col {
54
+ flex-direction: column;
55
+ }
56
+ .flex-col-reverse {
57
+ flex-direction: column-reverse;
58
+ }
59
+ .flex-row {
60
+ flex-direction: row;
61
+ }
62
+ .flex-row-reverse {
63
+ flex-direction: row-reverse;
928
64
  }
929
- @property --tw-ring-offset-shadow {
65
+ .items-center {
66
+ align-items: center;
67
+ }
68
+ .items-start {
69
+ align-items: flex-start;
70
+ }
71
+ .justify-around {
72
+ justify-content: space-around;
73
+ }
74
+ .justify-baseline {
75
+ justify-content: baseline;
76
+ }
77
+ .justify-between {
78
+ justify-content: space-between;
79
+ }
80
+ .justify-center {
81
+ justify-content: center;
82
+ }
83
+ .justify-end {
84
+ justify-content: flex-end;
85
+ }
86
+ .justify-evenly {
87
+ justify-content: space-evenly;
88
+ }
89
+ .justify-start {
90
+ justify-content: flex-start;
91
+ }
92
+ .justify-stretch {
93
+ justify-content: stretch;
94
+ }
95
+ .rounded-full {
96
+ border-radius: calc(infinity * 1px);
97
+ }
98
+ .border {
99
+ border-style: var(--tw-border-style);
100
+ border-width: 1px;
101
+ }
102
+ .text-\(--text-color-accent\) {
103
+ color: var(--text-color-accent);
104
+ }
105
+ .text-\(--text-color-danger\) {
106
+ color: var(--text-color-danger);
107
+ }
108
+ .text-\(--text-color-default\) {
109
+ color: var(--text-color-default);
110
+ }
111
+ .text-\(--text-color-info\) {
112
+ color: var(--text-color-info);
113
+ }
114
+ .text-\(--text-color-link\) {
115
+ color: var(--text-color-link);
116
+ }
117
+ .text-\(--text-color-muted\) {
118
+ color: var(--text-color-muted);
119
+ }
120
+ .text-\(--text-color-primary\) {
121
+ color: var(--text-color-primary);
122
+ }
123
+ .text-\(--text-color-secondary\) {
124
+ color: var(--text-color-secondary);
125
+ }
126
+ .text-\(--text-color-success\) {
127
+ color: var(--text-color-success);
128
+ }
129
+ .text-\(--text-color-tertiary\) {
130
+ color: var(--text-color-tertiary);
131
+ }
132
+ .text-\(--text-color-warning\) {
133
+ color: var(--text-color-warning);
134
+ }
135
+ .capitalize {
136
+ text-transform: capitalize;
137
+ }
138
+ .lowercase {
139
+ text-transform: lowercase;
140
+ }
141
+ .normal-case {
142
+ text-transform: none;
143
+ }
144
+ .uppercase {
145
+ text-transform: uppercase;
146
+ }
147
+ .italic {
148
+ font-style: italic;
149
+ }
150
+ .not-italic {
151
+ font-style: normal;
152
+ }
153
+ .line-through {
154
+ text-decoration-line: line-through;
155
+ }
156
+ .no-underline {
157
+ text-decoration-line: none;
158
+ }
159
+ .overline {
160
+ text-decoration-line: overline;
161
+ }
162
+ .underline {
163
+ text-decoration-line: underline;
164
+ }
165
+ .transition-all {
166
+ transition-property: all;
167
+ transition-timing-function: var(--tw-ease, ease);
168
+ transition-duration: var(--tw-duration, 0s);
169
+ }
170
+ .duration-300 {
171
+ --tw-duration: 300ms;
172
+ transition-duration: 300ms;
173
+ }
174
+ .hover\:underline {
175
+ &:hover {
176
+ @media (hover: hover) {
177
+ text-decoration-line: underline;
178
+ }
179
+ }
180
+ }
181
+ @property --tw-border-style {
930
182
  syntax: "*";
931
183
  inherits: false;
932
- initial-value: 0 0 #0000;
184
+ initial-value: solid;
933
185
  }
934
186
  @property --tw-duration {
935
187
  syntax: "*";