@vaneui/ui 0.0.10 → 0.0.11

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/all.css CHANGED
@@ -1,190 +1,805 @@
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);
131
- }
132
- .text-\(--text-color-warning\) {
133
- color: var(--text-color-warning);
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
+ }
134
61
  }
135
- .capitalize {
136
- text-transform: capitalize;
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
+ .filter {
464
+ 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,);
465
+ }
466
+ .transition-all {
467
+ transition-property: all;
468
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
469
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
470
+ }
471
+ .duration-300 {
472
+ --tw-duration: 300ms;
473
+ transition-duration: 300ms;
474
+ }
475
+ .hover\:underline {
476
+ &:hover {
477
+ @media (hover: hover) {
478
+ text-decoration-line: underline;
479
+ }
480
+ }
481
+ }
482
+ .hover\:shadow-lg {
483
+ &:hover {
484
+ @media (hover: hover) {
485
+ --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));
486
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
487
+ }
488
+ }
489
+ }
490
+ .hover\:shadow-md {
491
+ &:hover {
492
+ @media (hover: hover) {
493
+ --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));
494
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
495
+ }
496
+ }
497
+ }
498
+ .hover\:shadow-sm {
499
+ &:hover {
500
+ @media (hover: hover) {
501
+ --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));
502
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
503
+ }
504
+ }
505
+ }
506
+ .hover\:shadow-xl {
507
+ &:hover {
508
+ @media (hover: hover) {
509
+ --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));
510
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
511
+ }
512
+ }
513
+ }
514
+ .max-xl\:hidden {
515
+ @media (width < 80rem) {
516
+ display: none;
517
+ }
518
+ }
519
+ .max-xl\:flex-col {
520
+ @media (width < 80rem) {
521
+ flex-direction: column;
522
+ }
523
+ }
524
+ .max-lg\:hidden {
525
+ @media (width < 64rem) {
526
+ display: none;
527
+ }
528
+ }
529
+ .max-lg\:grid-cols-2 {
530
+ @media (width < 64rem) {
531
+ grid-template-columns: repeat(2, minmax(0, 1fr));
532
+ }
533
+ }
534
+ .max-lg\:grid-cols-3 {
535
+ @media (width < 64rem) {
536
+ grid-template-columns: repeat(3, minmax(0, 1fr));
537
+ }
538
+ }
539
+ .max-lg\:flex-col {
540
+ @media (width < 64rem) {
541
+ flex-direction: column;
542
+ }
543
+ }
544
+ .max-lg\:gap-1 {
545
+ @media (width < 64rem) {
546
+ gap: calc(var(--spacing) * 1);
547
+ }
548
+ }
549
+ .max-lg\:gap-2 {
550
+ @media (width < 64rem) {
551
+ gap: calc(var(--spacing) * 2);
552
+ }
553
+ }
554
+ .max-lg\:gap-3 {
555
+ @media (width < 64rem) {
556
+ gap: calc(var(--spacing) * 3);
557
+ }
558
+ }
559
+ .max-lg\:gap-4 {
560
+ @media (width < 64rem) {
561
+ gap: calc(var(--spacing) * 4);
562
+ }
563
+ }
564
+ .max-lg\:gap-5 {
565
+ @media (width < 64rem) {
566
+ gap: calc(var(--spacing) * 5);
567
+ }
568
+ }
569
+ .max-lg\:gap-6 {
570
+ @media (width < 64rem) {
571
+ gap: calc(var(--spacing) * 6);
572
+ }
573
+ }
574
+ .max-lg\:gap-7 {
575
+ @media (width < 64rem) {
576
+ gap: calc(var(--spacing) * 7);
577
+ }
578
+ }
579
+ .max-lg\:gap-8 {
580
+ @media (width < 64rem) {
581
+ gap: calc(var(--spacing) * 8);
582
+ }
583
+ }
584
+ .max-lg\:gap-9 {
585
+ @media (width < 64rem) {
586
+ gap: calc(var(--spacing) * 9);
587
+ }
588
+ }
589
+ .max-lg\:px-2 {
590
+ @media (width < 64rem) {
591
+ padding-inline: calc(var(--spacing) * 2);
592
+ }
593
+ }
594
+ .max-lg\:px-6 {
595
+ @media (width < 64rem) {
596
+ padding-inline: calc(var(--spacing) * 6);
597
+ }
598
+ }
599
+ .max-lg\:px-8 {
600
+ @media (width < 64rem) {
601
+ padding-inline: calc(var(--spacing) * 8);
602
+ }
603
+ }
604
+ .max-lg\:px-10 {
605
+ @media (width < 64rem) {
606
+ padding-inline: calc(var(--spacing) * 10);
607
+ }
608
+ }
609
+ .max-lg\:py-4 {
610
+ @media (width < 64rem) {
611
+ padding-block: calc(var(--spacing) * 4);
612
+ }
613
+ }
614
+ .max-lg\:py-6 {
615
+ @media (width < 64rem) {
616
+ padding-block: calc(var(--spacing) * 6);
617
+ }
618
+ }
619
+ .max-lg\:py-8 {
620
+ @media (width < 64rem) {
621
+ padding-block: calc(var(--spacing) * 8);
622
+ }
623
+ }
624
+ .max-lg\:py-10 {
625
+ @media (width < 64rem) {
626
+ padding-block: calc(var(--spacing) * 10);
627
+ }
628
+ }
629
+ .max-lg\:py-12 {
630
+ @media (width < 64rem) {
631
+ padding-block: calc(var(--spacing) * 12);
632
+ }
633
+ }
634
+ .max-md\:hidden {
635
+ @media (width < 48rem) {
636
+ display: none;
637
+ }
638
+ }
639
+ .max-md\:grid-cols-1 {
640
+ @media (width < 48rem) {
641
+ grid-template-columns: repeat(1, minmax(0, 1fr));
642
+ }
643
+ }
644
+ .max-md\:grid-cols-2 {
645
+ @media (width < 48rem) {
646
+ grid-template-columns: repeat(2, minmax(0, 1fr));
647
+ }
648
+ }
649
+ .max-md\:flex-col {
650
+ @media (width < 48rem) {
651
+ flex-direction: column;
652
+ }
653
+ }
654
+ .max-md\:gap-2 {
655
+ @media (width < 48rem) {
656
+ gap: calc(var(--spacing) * 2);
657
+ }
658
+ }
659
+ .max-md\:gap-4 {
660
+ @media (width < 48rem) {
661
+ gap: calc(var(--spacing) * 4);
662
+ }
663
+ }
664
+ .max-md\:gap-6 {
665
+ @media (width < 48rem) {
666
+ gap: calc(var(--spacing) * 6);
667
+ }
668
+ }
669
+ .max-md\:gap-8 {
670
+ @media (width < 48rem) {
671
+ gap: calc(var(--spacing) * 8);
672
+ }
673
+ }
674
+ .max-md\:px-0 {
675
+ @media (width < 48rem) {
676
+ padding-inline: calc(var(--spacing) * 0);
677
+ }
678
+ }
679
+ .max-md\:px-2 {
680
+ @media (width < 48rem) {
681
+ padding-inline: calc(var(--spacing) * 2);
682
+ }
683
+ }
684
+ .max-md\:px-4 {
685
+ @media (width < 48rem) {
686
+ padding-inline: calc(var(--spacing) * 4);
687
+ }
688
+ }
689
+ .max-md\:px-6 {
690
+ @media (width < 48rem) {
691
+ padding-inline: calc(var(--spacing) * 6);
692
+ }
693
+ }
694
+ .max-md\:px-8 {
695
+ @media (width < 48rem) {
696
+ padding-inline: calc(var(--spacing) * 8);
697
+ }
698
+ }
699
+ .max-md\:py-2 {
700
+ @media (width < 48rem) {
701
+ padding-block: calc(var(--spacing) * 2);
702
+ }
703
+ }
704
+ .max-md\:py-4 {
705
+ @media (width < 48rem) {
706
+ padding-block: calc(var(--spacing) * 4);
707
+ }
708
+ }
709
+ .max-md\:py-6 {
710
+ @media (width < 48rem) {
711
+ padding-block: calc(var(--spacing) * 6);
712
+ }
713
+ }
714
+ .max-md\:py-8 {
715
+ @media (width < 48rem) {
716
+ padding-block: calc(var(--spacing) * 8);
717
+ }
718
+ }
719
+ .max-md\:py-10 {
720
+ @media (width < 48rem) {
721
+ padding-block: calc(var(--spacing) * 10);
722
+ }
723
+ }
724
+ .max-sm\:hidden {
725
+ @media (width < 40rem) {
726
+ display: none;
727
+ }
728
+ }
729
+ .max-sm\:grid-cols-1 {
730
+ @media (width < 40rem) {
731
+ grid-template-columns: repeat(1, minmax(0, 1fr));
732
+ }
733
+ }
734
+ .max-sm\:flex-col {
735
+ @media (width < 40rem) {
736
+ flex-direction: column;
737
+ }
738
+ }
137
739
  }
138
- .lowercase {
139
- text-transform: lowercase;
740
+ @property --tw-border-style {
741
+ syntax: "*";
742
+ inherits: false;
743
+ initial-value: solid;
140
744
  }
141
- .normal-case {
142
- text-transform: none;
745
+ @property --tw-font-weight {
746
+ syntax: "*";
747
+ inherits: false;
143
748
  }
144
- .uppercase {
145
- text-transform: uppercase;
749
+ @property --tw-shadow {
750
+ syntax: "*";
751
+ inherits: false;
752
+ initial-value: 0 0 #0000;
146
753
  }
147
- .italic {
148
- font-style: italic;
754
+ @property --tw-shadow-color {
755
+ syntax: "*";
756
+ inherits: false;
149
757
  }
150
- .not-italic {
151
- font-style: normal;
758
+ @property --tw-inset-shadow {
759
+ syntax: "*";
760
+ inherits: false;
761
+ initial-value: 0 0 #0000;
152
762
  }
153
- .line-through {
154
- text-decoration-line: line-through;
763
+ @property --tw-inset-shadow-color {
764
+ syntax: "*";
765
+ inherits: false;
155
766
  }
156
- .no-underline {
157
- text-decoration-line: none;
767
+ @property --tw-ring-color {
768
+ syntax: "*";
769
+ inherits: false;
158
770
  }
159
- .overline {
160
- text-decoration-line: overline;
771
+ @property --tw-ring-shadow {
772
+ syntax: "*";
773
+ inherits: false;
774
+ initial-value: 0 0 #0000;
161
775
  }
162
- .underline {
163
- text-decoration-line: underline;
776
+ @property --tw-inset-ring-color {
777
+ syntax: "*";
778
+ inherits: false;
164
779
  }
165
- .filter {
166
- 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,);
780
+ @property --tw-inset-ring-shadow {
781
+ syntax: "*";
782
+ inherits: false;
783
+ initial-value: 0 0 #0000;
167
784
  }
168
- .transition-all {
169
- transition-property: all;
170
- transition-timing-function: var(--tw-ease, ease);
171
- transition-duration: var(--tw-duration, 0s);
785
+ @property --tw-ring-inset {
786
+ syntax: "*";
787
+ inherits: false;
172
788
  }
173
- .duration-300 {
174
- --tw-duration: 300ms;
175
- transition-duration: 300ms;
789
+ @property --tw-ring-offset-width {
790
+ syntax: "<length>";
791
+ inherits: false;
792
+ initial-value: 0px;
176
793
  }
177
- .hover\:underline {
178
- &:hover {
179
- @media (hover: hover) {
180
- text-decoration-line: underline;
181
- }
182
- }
794
+ @property --tw-ring-offset-color {
795
+ syntax: "*";
796
+ inherits: false;
797
+ initial-value: #fff;
183
798
  }
184
- @property --tw-border-style {
799
+ @property --tw-ring-offset-shadow {
185
800
  syntax: "*";
186
801
  inherits: false;
187
- initial-value: solid;
802
+ initial-value: 0 0 #0000;
188
803
  }
189
804
  @property --tw-blur {
190
805
  syntax: "*";