@vaneui/ui 0.0.10 → 0.0.12

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,187 +1,782 @@
1
1
  /*! tailwindcss v4.0.9 | MIT License | https://tailwindcss.com */
2
- .absolute {
3
- position: absolute;
4
- }
5
- .fixed {
6
- position: fixed;
7
- }
8
- .relative {
9
- position: relative;
10
- }
11
- .static {
12
- position: static;
13
- }
14
- .sticky {
15
- position: sticky;
16
- }
17
- .mx-auto {
18
- margin-inline: auto;
19
- }
20
- .flex {
21
- display: flex;
22
- }
23
- .grid {
24
- display: grid;
25
- }
26
- .h-fit {
27
- height: fit-content;
28
- }
29
- .h-px {
30
- height: 1px;
31
- }
32
- .w-fit {
33
- width: fit-content;
34
- }
35
- .w-full {
36
- width: 100%;
37
- }
38
- .cursor-pointer {
39
- cursor: pointer;
40
- }
41
- .list-inside {
42
- list-style-position: inside;
43
- }
44
- .list-disc {
45
- list-style-type: disc;
46
- }
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;
64
- }
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);
2
+ @layer theme, utilities;
3
+ @layer theme {
4
+ :root, :host {
5
+ --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
6
+ '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', 'Courier New',
9
+ 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
+ }
131
61
  }
132
- .text-\(--text-color-warning\) {
133
- color: var(--text-color-warning);
62
+ @layer utilities {
63
+ .absolute {
64
+ position: absolute;
65
+ }
66
+ .fixed {
67
+ position: fixed;
68
+ }
69
+ .relative {
70
+ position: relative;
71
+ }
72
+ .static {
73
+ position: static;
74
+ }
75
+ .sticky {
76
+ position: sticky;
77
+ }
78
+ .m-0 {
79
+ margin: calc(var(--spacing) * 0);
80
+ }
81
+ .mx-auto {
82
+ margin-inline: auto;
83
+ }
84
+ .flex {
85
+ display: flex;
86
+ }
87
+ .grid {
88
+ display: grid;
89
+ }
90
+ .h-fit {
91
+ height: fit-content;
92
+ }
93
+ .h-px {
94
+ height: 1px;
95
+ }
96
+ .w-fit {
97
+ width: fit-content;
98
+ }
99
+ .w-full {
100
+ width: 100%;
101
+ }
102
+ .max-w-3xl {
103
+ max-width: var(--container-3xl);
104
+ }
105
+ .max-w-4xl {
106
+ max-width: var(--container-4xl);
107
+ }
108
+ .max-w-5xl {
109
+ max-width: var(--container-5xl);
110
+ }
111
+ .max-w-6xl {
112
+ max-width: var(--container-6xl);
113
+ }
114
+ .max-w-7xl {
115
+ max-width: var(--container-7xl);
116
+ }
117
+ .cursor-pointer {
118
+ cursor: pointer;
119
+ }
120
+ .list-inside {
121
+ list-style-position: inside;
122
+ }
123
+ .list-disc {
124
+ list-style-type: disc;
125
+ }
126
+ .grid-cols-3 {
127
+ grid-template-columns: repeat(3, minmax(0, 1fr));
128
+ }
129
+ .grid-cols-4 {
130
+ grid-template-columns: repeat(4, minmax(0, 1fr));
131
+ }
132
+ .flex-col {
133
+ flex-direction: column;
134
+ }
135
+ .flex-col-reverse {
136
+ flex-direction: column-reverse;
137
+ }
138
+ .flex-row {
139
+ flex-direction: row;
140
+ }
141
+ .flex-row-reverse {
142
+ flex-direction: row-reverse;
143
+ }
144
+ .items-center {
145
+ align-items: center;
146
+ }
147
+ .items-start {
148
+ align-items: flex-start;
149
+ }
150
+ .justify-around {
151
+ justify-content: space-around;
152
+ }
153
+ .justify-baseline {
154
+ justify-content: baseline;
155
+ }
156
+ .justify-between {
157
+ justify-content: space-between;
158
+ }
159
+ .justify-center {
160
+ justify-content: center;
161
+ }
162
+ .justify-end {
163
+ justify-content: flex-end;
164
+ }
165
+ .justify-evenly {
166
+ justify-content: space-evenly;
167
+ }
168
+ .justify-start {
169
+ justify-content: flex-start;
170
+ }
171
+ .justify-stretch {
172
+ justify-content: stretch;
173
+ }
174
+ .gap-0 {
175
+ gap: calc(var(--spacing) * 0);
176
+ }
177
+ .gap-1 {
178
+ gap: calc(var(--spacing) * 1);
179
+ }
180
+ .gap-2 {
181
+ gap: calc(var(--spacing) * 2);
182
+ }
183
+ .gap-4 {
184
+ gap: calc(var(--spacing) * 4);
185
+ }
186
+ .gap-6 {
187
+ gap: calc(var(--spacing) * 6);
188
+ }
189
+ .gap-8 {
190
+ gap: calc(var(--spacing) * 8);
191
+ }
192
+ .gap-10 {
193
+ gap: calc(var(--spacing) * 10);
194
+ }
195
+ .rounded-2xl {
196
+ border-radius: var(--radius-2xl);
197
+ }
198
+ .rounded-full {
199
+ border-radius: calc(infinity * 1px);
200
+ }
201
+ .rounded-lg {
202
+ border-radius: var(--radius-lg);
203
+ }
204
+ .rounded-md {
205
+ border-radius: var(--radius-md);
206
+ }
207
+ .rounded-sm {
208
+ border-radius: var(--radius-sm);
209
+ }
210
+ .rounded-xl {
211
+ border-radius: var(--radius-xl);
212
+ }
213
+ .border {
214
+ border-style: var(--tw-border-style);
215
+ border-width: 1px;
216
+ }
217
+ .border-gray-200 {
218
+ border-color: var(--color-gray-200);
219
+ }
220
+ .bg-blue-200 {
221
+ background-color: var(--color-blue-200);
222
+ }
223
+ .bg-gray-100 {
224
+ background-color: var(--color-gray-100);
225
+ }
226
+ .bg-gray-200 {
227
+ background-color: var(--color-gray-200);
228
+ }
229
+ .bg-green-200 {
230
+ background-color: var(--color-green-200);
231
+ }
232
+ .bg-red-200 {
233
+ background-color: var(--color-red-200);
234
+ }
235
+ .bg-yellow-200 {
236
+ background-color: var(--color-yellow-200);
237
+ }
238
+ .p-0 {
239
+ padding: calc(var(--spacing) * 0);
240
+ }
241
+ .px-1 {
242
+ padding-inline: calc(var(--spacing) * 1);
243
+ }
244
+ .px-2 {
245
+ padding-inline: calc(var(--spacing) * 2);
246
+ }
247
+ .px-3 {
248
+ padding-inline: calc(var(--spacing) * 3);
249
+ }
250
+ .px-4 {
251
+ padding-inline: calc(var(--spacing) * 4);
252
+ }
253
+ .px-5 {
254
+ padding-inline: calc(var(--spacing) * 5);
255
+ }
256
+ .px-6 {
257
+ padding-inline: calc(var(--spacing) * 6);
258
+ }
259
+ .px-8 {
260
+ padding-inline: calc(var(--spacing) * 8);
261
+ }
262
+ .px-10 {
263
+ padding-inline: calc(var(--spacing) * 10);
264
+ }
265
+ .px-12 {
266
+ padding-inline: calc(var(--spacing) * 12);
267
+ }
268
+ .py-1 {
269
+ padding-block: calc(var(--spacing) * 1);
270
+ }
271
+ .py-2 {
272
+ padding-block: calc(var(--spacing) * 2);
273
+ }
274
+ .py-3 {
275
+ padding-block: calc(var(--spacing) * 3);
276
+ }
277
+ .py-4 {
278
+ padding-block: calc(var(--spacing) * 4);
279
+ }
280
+ .py-6 {
281
+ padding-block: calc(var(--spacing) * 6);
282
+ }
283
+ .py-8 {
284
+ padding-block: calc(var(--spacing) * 8);
285
+ }
286
+ .py-10 {
287
+ padding-block: calc(var(--spacing) * 10);
288
+ }
289
+ .py-12 {
290
+ padding-block: calc(var(--spacing) * 12);
291
+ }
292
+ .py-14 {
293
+ padding-block: calc(var(--spacing) * 14);
294
+ }
295
+ .font-mono {
296
+ font-family: var(--font-mono);
297
+ }
298
+ .font-sans {
299
+ font-family: var(--font-sans);
300
+ }
301
+ .font-serif {
302
+ font-family: var(--font-serif);
303
+ }
304
+ .text-2xl {
305
+ font-size: var(--text-2xl);
306
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
307
+ }
308
+ .text-3xl {
309
+ font-size: var(--text-3xl);
310
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
311
+ }
312
+ .text-4xl {
313
+ font-size: var(--text-4xl);
314
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
315
+ }
316
+ .text-5xl {
317
+ font-size: var(--text-5xl);
318
+ line-height: var(--tw-leading, var(--text-5xl--line-height));
319
+ }
320
+ .text-6xl {
321
+ font-size: var(--text-6xl);
322
+ line-height: var(--tw-leading, var(--text-6xl--line-height));
323
+ }
324
+ .text-7xl {
325
+ font-size: var(--text-7xl);
326
+ line-height: var(--tw-leading, var(--text-7xl--line-height));
327
+ }
328
+ .text-base {
329
+ font-size: var(--text-base);
330
+ line-height: var(--tw-leading, var(--text-base--line-height));
331
+ }
332
+ .text-lg {
333
+ font-size: var(--text-lg);
334
+ line-height: var(--tw-leading, var(--text-lg--line-height));
335
+ }
336
+ .text-sm {
337
+ font-size: var(--text-sm);
338
+ line-height: var(--tw-leading, var(--text-sm--line-height));
339
+ }
340
+ .text-xl {
341
+ font-size: var(--text-xl);
342
+ line-height: var(--tw-leading, var(--text-xl--line-height));
343
+ }
344
+ .text-xs {
345
+ font-size: var(--text-xs);
346
+ line-height: var(--tw-leading, var(--text-xs--line-height));
347
+ }
348
+ .font-black {
349
+ --tw-font-weight: var(--font-weight-black);
350
+ font-weight: var(--font-weight-black);
351
+ }
352
+ .font-bold {
353
+ --tw-font-weight: var(--font-weight-bold);
354
+ font-weight: var(--font-weight-bold);
355
+ }
356
+ .font-extrabold {
357
+ --tw-font-weight: var(--font-weight-extrabold);
358
+ font-weight: var(--font-weight-extrabold);
359
+ }
360
+ .font-extralight {
361
+ --tw-font-weight: var(--font-weight-extralight);
362
+ font-weight: var(--font-weight-extralight);
363
+ }
364
+ .font-light {
365
+ --tw-font-weight: var(--font-weight-light);
366
+ font-weight: var(--font-weight-light);
367
+ }
368
+ .font-medium {
369
+ --tw-font-weight: var(--font-weight-medium);
370
+ font-weight: var(--font-weight-medium);
371
+ }
372
+ .font-normal {
373
+ --tw-font-weight: var(--font-weight-normal);
374
+ font-weight: var(--font-weight-normal);
375
+ }
376
+ .font-semibold {
377
+ --tw-font-weight: var(--font-weight-semibold);
378
+ font-weight: var(--font-weight-semibold);
379
+ }
380
+ .font-thin {
381
+ --tw-font-weight: var(--font-weight-thin);
382
+ font-weight: var(--font-weight-thin);
383
+ }
384
+ .text-\(--text-color-accent\) {
385
+ color: var(--text-color-accent);
386
+ }
387
+ .text-\(--text-color-danger\) {
388
+ color: var(--text-color-danger);
389
+ }
390
+ .text-\(--text-color-default\) {
391
+ color: var(--text-color-default);
392
+ }
393
+ .text-\(--text-color-info\) {
394
+ color: var(--text-color-info);
395
+ }
396
+ .text-\(--text-color-link\) {
397
+ color: var(--text-color-link);
398
+ }
399
+ .text-\(--text-color-muted\) {
400
+ color: var(--text-color-muted);
401
+ }
402
+ .text-\(--text-color-primary\) {
403
+ color: var(--text-color-primary);
404
+ }
405
+ .text-\(--text-color-secondary\) {
406
+ color: var(--text-color-secondary);
407
+ }
408
+ .text-\(--text-color-success\) {
409
+ color: var(--text-color-success);
410
+ }
411
+ .text-\(--text-color-tertiary\) {
412
+ color: var(--text-color-tertiary);
413
+ }
414
+ .text-\(--text-color-warning\) {
415
+ color: var(--text-color-warning);
416
+ }
417
+ .capitalize {
418
+ text-transform: capitalize;
419
+ }
420
+ .lowercase {
421
+ text-transform: lowercase;
422
+ }
423
+ .normal-case {
424
+ text-transform: none;
425
+ }
426
+ .uppercase {
427
+ text-transform: uppercase;
428
+ }
429
+ .italic {
430
+ font-style: italic;
431
+ }
432
+ .not-italic {
433
+ font-style: normal;
434
+ }
435
+ .line-through {
436
+ text-decoration-line: line-through;
437
+ }
438
+ .no-underline {
439
+ text-decoration-line: none;
440
+ }
441
+ .overline {
442
+ text-decoration-line: overline;
443
+ }
444
+ .underline {
445
+ text-decoration-line: underline;
446
+ }
447
+ .shadow-lg {
448
+ --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));
449
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
450
+ }
451
+ .shadow-md {
452
+ --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));
453
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
454
+ }
455
+ .shadow-sm {
456
+ --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));
457
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
458
+ }
459
+ .shadow-xs {
460
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
461
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
462
+ }
463
+ .transition-all {
464
+ transition-property: all;
465
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
466
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
467
+ }
468
+ .duration-300 {
469
+ --tw-duration: 300ms;
470
+ transition-duration: 300ms;
471
+ }
472
+ .hover\:underline {
473
+ &:hover {
474
+ @media (hover: hover) {
475
+ text-decoration-line: underline;
476
+ }
477
+ }
478
+ }
479
+ .hover\:shadow-lg {
480
+ &:hover {
481
+ @media (hover: hover) {
482
+ --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));
483
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
484
+ }
485
+ }
486
+ }
487
+ .hover\:shadow-md {
488
+ &:hover {
489
+ @media (hover: hover) {
490
+ --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));
491
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
492
+ }
493
+ }
494
+ }
495
+ .hover\:shadow-sm {
496
+ &:hover {
497
+ @media (hover: hover) {
498
+ --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));
499
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
500
+ }
501
+ }
502
+ }
503
+ .hover\:shadow-xl {
504
+ &:hover {
505
+ @media (hover: hover) {
506
+ --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));
507
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
508
+ }
509
+ }
510
+ }
511
+ .max-xl\:flex-col {
512
+ @media (width < 80rem) {
513
+ flex-direction: column;
514
+ }
515
+ }
516
+ .max-lg\:grid-cols-2 {
517
+ @media (width < 64rem) {
518
+ grid-template-columns: repeat(2, minmax(0, 1fr));
519
+ }
520
+ }
521
+ .max-lg\:grid-cols-3 {
522
+ @media (width < 64rem) {
523
+ grid-template-columns: repeat(3, minmax(0, 1fr));
524
+ }
525
+ }
526
+ .max-lg\:flex-col {
527
+ @media (width < 64rem) {
528
+ flex-direction: column;
529
+ }
530
+ }
531
+ .max-lg\:gap-1 {
532
+ @media (width < 64rem) {
533
+ gap: calc(var(--spacing) * 1);
534
+ }
535
+ }
536
+ .max-lg\:gap-2 {
537
+ @media (width < 64rem) {
538
+ gap: calc(var(--spacing) * 2);
539
+ }
540
+ }
541
+ .max-lg\:gap-3 {
542
+ @media (width < 64rem) {
543
+ gap: calc(var(--spacing) * 3);
544
+ }
545
+ }
546
+ .max-lg\:gap-4 {
547
+ @media (width < 64rem) {
548
+ gap: calc(var(--spacing) * 4);
549
+ }
550
+ }
551
+ .max-lg\:gap-5 {
552
+ @media (width < 64rem) {
553
+ gap: calc(var(--spacing) * 5);
554
+ }
555
+ }
556
+ .max-lg\:gap-6 {
557
+ @media (width < 64rem) {
558
+ gap: calc(var(--spacing) * 6);
559
+ }
560
+ }
561
+ .max-lg\:gap-7 {
562
+ @media (width < 64rem) {
563
+ gap: calc(var(--spacing) * 7);
564
+ }
565
+ }
566
+ .max-lg\:gap-8 {
567
+ @media (width < 64rem) {
568
+ gap: calc(var(--spacing) * 8);
569
+ }
570
+ }
571
+ .max-lg\:gap-9 {
572
+ @media (width < 64rem) {
573
+ gap: calc(var(--spacing) * 9);
574
+ }
575
+ }
576
+ .max-lg\:px-2 {
577
+ @media (width < 64rem) {
578
+ padding-inline: calc(var(--spacing) * 2);
579
+ }
580
+ }
581
+ .max-lg\:px-6 {
582
+ @media (width < 64rem) {
583
+ padding-inline: calc(var(--spacing) * 6);
584
+ }
585
+ }
586
+ .max-lg\:px-8 {
587
+ @media (width < 64rem) {
588
+ padding-inline: calc(var(--spacing) * 8);
589
+ }
590
+ }
591
+ .max-lg\:px-10 {
592
+ @media (width < 64rem) {
593
+ padding-inline: calc(var(--spacing) * 10);
594
+ }
595
+ }
596
+ .max-lg\:py-4 {
597
+ @media (width < 64rem) {
598
+ padding-block: calc(var(--spacing) * 4);
599
+ }
600
+ }
601
+ .max-lg\:py-6 {
602
+ @media (width < 64rem) {
603
+ padding-block: calc(var(--spacing) * 6);
604
+ }
605
+ }
606
+ .max-lg\:py-8 {
607
+ @media (width < 64rem) {
608
+ padding-block: calc(var(--spacing) * 8);
609
+ }
610
+ }
611
+ .max-lg\:py-10 {
612
+ @media (width < 64rem) {
613
+ padding-block: calc(var(--spacing) * 10);
614
+ }
615
+ }
616
+ .max-lg\:py-12 {
617
+ @media (width < 64rem) {
618
+ padding-block: calc(var(--spacing) * 12);
619
+ }
620
+ }
621
+ .max-md\:grid-cols-1 {
622
+ @media (width < 48rem) {
623
+ grid-template-columns: repeat(1, minmax(0, 1fr));
624
+ }
625
+ }
626
+ .max-md\:grid-cols-2 {
627
+ @media (width < 48rem) {
628
+ grid-template-columns: repeat(2, minmax(0, 1fr));
629
+ }
630
+ }
631
+ .max-md\:flex-col {
632
+ @media (width < 48rem) {
633
+ flex-direction: column;
634
+ }
635
+ }
636
+ .max-md\:gap-2 {
637
+ @media (width < 48rem) {
638
+ gap: calc(var(--spacing) * 2);
639
+ }
640
+ }
641
+ .max-md\:gap-4 {
642
+ @media (width < 48rem) {
643
+ gap: calc(var(--spacing) * 4);
644
+ }
645
+ }
646
+ .max-md\:gap-6 {
647
+ @media (width < 48rem) {
648
+ gap: calc(var(--spacing) * 6);
649
+ }
650
+ }
651
+ .max-md\:gap-8 {
652
+ @media (width < 48rem) {
653
+ gap: calc(var(--spacing) * 8);
654
+ }
655
+ }
656
+ .max-md\:px-0 {
657
+ @media (width < 48rem) {
658
+ padding-inline: calc(var(--spacing) * 0);
659
+ }
660
+ }
661
+ .max-md\:px-2 {
662
+ @media (width < 48rem) {
663
+ padding-inline: calc(var(--spacing) * 2);
664
+ }
665
+ }
666
+ .max-md\:px-4 {
667
+ @media (width < 48rem) {
668
+ padding-inline: calc(var(--spacing) * 4);
669
+ }
670
+ }
671
+ .max-md\:px-6 {
672
+ @media (width < 48rem) {
673
+ padding-inline: calc(var(--spacing) * 6);
674
+ }
675
+ }
676
+ .max-md\:px-8 {
677
+ @media (width < 48rem) {
678
+ padding-inline: calc(var(--spacing) * 8);
679
+ }
680
+ }
681
+ .max-md\:py-2 {
682
+ @media (width < 48rem) {
683
+ padding-block: calc(var(--spacing) * 2);
684
+ }
685
+ }
686
+ .max-md\:py-4 {
687
+ @media (width < 48rem) {
688
+ padding-block: calc(var(--spacing) * 4);
689
+ }
690
+ }
691
+ .max-md\:py-6 {
692
+ @media (width < 48rem) {
693
+ padding-block: calc(var(--spacing) * 6);
694
+ }
695
+ }
696
+ .max-md\:py-8 {
697
+ @media (width < 48rem) {
698
+ padding-block: calc(var(--spacing) * 8);
699
+ }
700
+ }
701
+ .max-md\:py-10 {
702
+ @media (width < 48rem) {
703
+ padding-block: calc(var(--spacing) * 10);
704
+ }
705
+ }
706
+ .max-sm\:grid-cols-1 {
707
+ @media (width < 40rem) {
708
+ grid-template-columns: repeat(1, minmax(0, 1fr));
709
+ }
710
+ }
711
+ .max-sm\:flex-col {
712
+ @media (width < 40rem) {
713
+ flex-direction: column;
714
+ }
715
+ }
134
716
  }
135
- .capitalize {
136
- text-transform: capitalize;
717
+ @property --tw-border-style {
718
+ syntax: "*";
719
+ inherits: false;
720
+ initial-value: solid;
137
721
  }
138
- .lowercase {
139
- text-transform: lowercase;
722
+ @property --tw-font-weight {
723
+ syntax: "*";
724
+ inherits: false;
140
725
  }
141
- .normal-case {
142
- text-transform: none;
726
+ @property --tw-shadow {
727
+ syntax: "*";
728
+ inherits: false;
729
+ initial-value: 0 0 #0000;
143
730
  }
144
- .uppercase {
145
- text-transform: uppercase;
731
+ @property --tw-shadow-color {
732
+ syntax: "*";
733
+ inherits: false;
146
734
  }
147
- .italic {
148
- font-style: italic;
735
+ @property --tw-inset-shadow {
736
+ syntax: "*";
737
+ inherits: false;
738
+ initial-value: 0 0 #0000;
149
739
  }
150
- .not-italic {
151
- font-style: normal;
740
+ @property --tw-inset-shadow-color {
741
+ syntax: "*";
742
+ inherits: false;
152
743
  }
153
- .line-through {
154
- text-decoration-line: line-through;
744
+ @property --tw-ring-color {
745
+ syntax: "*";
746
+ inherits: false;
155
747
  }
156
- .no-underline {
157
- text-decoration-line: none;
748
+ @property --tw-ring-shadow {
749
+ syntax: "*";
750
+ inherits: false;
751
+ initial-value: 0 0 #0000;
158
752
  }
159
- .overline {
160
- text-decoration-line: overline;
753
+ @property --tw-inset-ring-color {
754
+ syntax: "*";
755
+ inherits: false;
161
756
  }
162
- .underline {
163
- text-decoration-line: underline;
757
+ @property --tw-inset-ring-shadow {
758
+ syntax: "*";
759
+ inherits: false;
760
+ initial-value: 0 0 #0000;
164
761
  }
165
- .transition-all {
166
- transition-property: all;
167
- transition-timing-function: var(--tw-ease, ease);
168
- transition-duration: var(--tw-duration, 0s);
762
+ @property --tw-ring-inset {
763
+ syntax: "*";
764
+ inherits: false;
169
765
  }
170
- .duration-300 {
171
- --tw-duration: 300ms;
172
- transition-duration: 300ms;
766
+ @property --tw-ring-offset-width {
767
+ syntax: "<length>";
768
+ inherits: false;
769
+ initial-value: 0px;
173
770
  }
174
- .hover\:underline {
175
- &:hover {
176
- @media (hover: hover) {
177
- text-decoration-line: underline;
178
- }
179
- }
771
+ @property --tw-ring-offset-color {
772
+ syntax: "*";
773
+ inherits: false;
774
+ initial-value: #fff;
180
775
  }
181
- @property --tw-border-style {
776
+ @property --tw-ring-offset-shadow {
182
777
  syntax: "*";
183
778
  inherits: false;
184
- initial-value: solid;
779
+ initial-value: 0 0 #0000;
185
780
  }
186
781
  @property --tw-duration {
187
782
  syntax: "*";