@nswds/app 0.1.15 → 1.6.0
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/globals.css +672 -487
- package/dist/index.cjs +1047 -482
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +229 -161
- package/dist/index.d.ts +229 -161
- package/dist/index.js +1041 -460
- package/dist/index.js.map +1 -1
- package/dist/styles.css +727 -544
- package/dist/styles.d.cts +1 -2
- package/dist/styles.d.ts +1 -2
- package/package.json +8 -5
package/dist/globals.css
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
/*! tailwindcss v4.0.15 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer theme, base, components, utilities;
|
|
3
3
|
@layer theme {
|
|
4
|
-
:root,
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
:root,
|
|
5
|
+
:host {
|
|
6
|
+
--font-mono:
|
|
7
|
+
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
|
|
8
|
+
monospace;
|
|
7
9
|
--color-red-500: oklch(0.637 0.237 25.331);
|
|
8
10
|
--color-red-900: oklch(0.396 0.141 25.723);
|
|
9
11
|
--color-green-500: oklch(0.723 0.219 149.579);
|
|
@@ -74,17 +76,31 @@
|
|
|
74
76
|
}
|
|
75
77
|
}
|
|
76
78
|
@layer base {
|
|
77
|
-
*,
|
|
79
|
+
*,
|
|
80
|
+
::after,
|
|
81
|
+
::before,
|
|
82
|
+
::backdrop,
|
|
83
|
+
::file-selector-button {
|
|
78
84
|
box-sizing: border-box;
|
|
79
85
|
margin: 0;
|
|
80
86
|
padding: 0;
|
|
81
87
|
border: 0 solid;
|
|
82
88
|
}
|
|
83
|
-
html,
|
|
89
|
+
html,
|
|
90
|
+
:host {
|
|
84
91
|
line-height: 1.5;
|
|
85
92
|
-webkit-text-size-adjust: 100%;
|
|
86
93
|
tab-size: 4;
|
|
87
|
-
font-family: var(
|
|
94
|
+
font-family: var(
|
|
95
|
+
--font-public-sans,
|
|
96
|
+
ui-sans-serif,
|
|
97
|
+
system-ui,
|
|
98
|
+
sans-serif,
|
|
99
|
+
'Apple Color Emoji',
|
|
100
|
+
'Segoe UI Emoji',
|
|
101
|
+
'Segoe UI Symbol',
|
|
102
|
+
'Noto Color Emoji'
|
|
103
|
+
);
|
|
88
104
|
font-feature-settings: initial;
|
|
89
105
|
font-variation-settings: initial;
|
|
90
106
|
-webkit-tap-highlight-color: transparent;
|
|
@@ -98,7 +114,12 @@
|
|
|
98
114
|
-webkit-text-decoration: underline dotted;
|
|
99
115
|
text-decoration: underline dotted;
|
|
100
116
|
}
|
|
101
|
-
h1,
|
|
117
|
+
h1,
|
|
118
|
+
h2,
|
|
119
|
+
h3,
|
|
120
|
+
h4,
|
|
121
|
+
h5,
|
|
122
|
+
h6 {
|
|
102
123
|
font-size: inherit;
|
|
103
124
|
font-weight: inherit;
|
|
104
125
|
}
|
|
@@ -107,12 +128,17 @@
|
|
|
107
128
|
-webkit-text-decoration: inherit;
|
|
108
129
|
text-decoration: inherit;
|
|
109
130
|
}
|
|
110
|
-
b,
|
|
131
|
+
b,
|
|
132
|
+
strong {
|
|
111
133
|
font-weight: bolder;
|
|
112
134
|
}
|
|
113
|
-
code,
|
|
114
|
-
|
|
115
|
-
|
|
135
|
+
code,
|
|
136
|
+
kbd,
|
|
137
|
+
samp,
|
|
138
|
+
pre {
|
|
139
|
+
font-family:
|
|
140
|
+
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
|
|
141
|
+
monospace;
|
|
116
142
|
font-feature-settings: initial;
|
|
117
143
|
font-variation-settings: initial;
|
|
118
144
|
font-size: 1em;
|
|
@@ -120,7 +146,8 @@
|
|
|
120
146
|
small {
|
|
121
147
|
font-size: 80%;
|
|
122
148
|
}
|
|
123
|
-
sub,
|
|
149
|
+
sub,
|
|
150
|
+
sup {
|
|
124
151
|
font-size: 75%;
|
|
125
152
|
line-height: 0;
|
|
126
153
|
position: relative;
|
|
@@ -146,18 +173,33 @@
|
|
|
146
173
|
summary {
|
|
147
174
|
display: list-item;
|
|
148
175
|
}
|
|
149
|
-
ol,
|
|
176
|
+
ol,
|
|
177
|
+
ul,
|
|
178
|
+
menu {
|
|
150
179
|
list-style: none;
|
|
151
180
|
}
|
|
152
|
-
img,
|
|
181
|
+
img,
|
|
182
|
+
svg,
|
|
183
|
+
video,
|
|
184
|
+
canvas,
|
|
185
|
+
audio,
|
|
186
|
+
iframe,
|
|
187
|
+
embed,
|
|
188
|
+
object {
|
|
153
189
|
display: block;
|
|
154
190
|
vertical-align: middle;
|
|
155
191
|
}
|
|
156
|
-
img,
|
|
192
|
+
img,
|
|
193
|
+
video {
|
|
157
194
|
max-width: 100%;
|
|
158
195
|
height: auto;
|
|
159
196
|
}
|
|
160
|
-
button,
|
|
197
|
+
button,
|
|
198
|
+
input,
|
|
199
|
+
select,
|
|
200
|
+
optgroup,
|
|
201
|
+
textarea,
|
|
202
|
+
::file-selector-button {
|
|
161
203
|
font: inherit;
|
|
162
204
|
font-feature-settings: inherit;
|
|
163
205
|
font-variation-settings: inherit;
|
|
@@ -179,7 +221,7 @@
|
|
|
179
221
|
::placeholder {
|
|
180
222
|
opacity: 1;
|
|
181
223
|
}
|
|
182
|
-
@supports (not (-webkit-appearance: -apple-pay-button))
|
|
224
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
183
225
|
::placeholder {
|
|
184
226
|
color: color-mix(in oklab, currentColor 50%, transparent);
|
|
185
227
|
}
|
|
@@ -200,19 +242,30 @@
|
|
|
200
242
|
::-webkit-datetime-edit-fields-wrapper {
|
|
201
243
|
padding: 0;
|
|
202
244
|
}
|
|
203
|
-
::-webkit-datetime-edit,
|
|
245
|
+
::-webkit-datetime-edit,
|
|
246
|
+
::-webkit-datetime-edit-year-field,
|
|
247
|
+
::-webkit-datetime-edit-month-field,
|
|
248
|
+
::-webkit-datetime-edit-day-field,
|
|
249
|
+
::-webkit-datetime-edit-hour-field,
|
|
250
|
+
::-webkit-datetime-edit-minute-field,
|
|
251
|
+
::-webkit-datetime-edit-second-field,
|
|
252
|
+
::-webkit-datetime-edit-millisecond-field,
|
|
253
|
+
::-webkit-datetime-edit-meridiem-field {
|
|
204
254
|
padding-block: 0;
|
|
205
255
|
}
|
|
206
256
|
:-moz-ui-invalid {
|
|
207
257
|
box-shadow: none;
|
|
208
258
|
}
|
|
209
|
-
button,
|
|
259
|
+
button,
|
|
260
|
+
input:where([type='button'], [type='reset'], [type='submit']),
|
|
261
|
+
::file-selector-button {
|
|
210
262
|
appearance: button;
|
|
211
263
|
}
|
|
212
|
-
::-webkit-inner-spin-button,
|
|
264
|
+
::-webkit-inner-spin-button,
|
|
265
|
+
::-webkit-outer-spin-button {
|
|
213
266
|
height: auto;
|
|
214
267
|
}
|
|
215
|
-
[hidden]:where(:not([hidden=
|
|
268
|
+
[hidden]:where(:not([hidden='until-found'])) {
|
|
216
269
|
display: none !important;
|
|
217
270
|
}
|
|
218
271
|
}
|
|
@@ -272,7 +325,7 @@
|
|
|
272
325
|
top: calc(var(--spacing) * 1);
|
|
273
326
|
}
|
|
274
327
|
.top-1\/2 {
|
|
275
|
-
top: calc(1/2 * 100%);
|
|
328
|
+
top: calc(1 / 2 * 100%);
|
|
276
329
|
}
|
|
277
330
|
.top-4 {
|
|
278
331
|
top: calc(var(--spacing) * 4);
|
|
@@ -326,7 +379,7 @@
|
|
|
326
379
|
left: calc(var(--spacing) * 1);
|
|
327
380
|
}
|
|
328
381
|
.left-1\/2 {
|
|
329
|
-
left: calc(1/2 * 100%);
|
|
382
|
+
left: calc(1 / 2 * 100%);
|
|
330
383
|
}
|
|
331
384
|
.left-2 {
|
|
332
385
|
left: calc(var(--spacing) * 2);
|
|
@@ -373,110 +426,114 @@
|
|
|
373
426
|
.prose {
|
|
374
427
|
color: var(--tw-prose-body);
|
|
375
428
|
max-width: 65ch;
|
|
376
|
-
:where(p):not(:where([class~=
|
|
429
|
+
:where(p):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
377
430
|
margin-top: 1.25em;
|
|
378
431
|
margin-bottom: 1.25em;
|
|
379
432
|
}
|
|
380
|
-
:where([class~=
|
|
433
|
+
:where([class~='lead']):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
381
434
|
color: var(--tw-prose-lead);
|
|
382
435
|
font-size: 1.25em;
|
|
383
436
|
line-height: 1.6;
|
|
384
437
|
margin-top: 1.2em;
|
|
385
438
|
margin-bottom: 1.2em;
|
|
386
439
|
}
|
|
387
|
-
:where(a):not(:where([class~=
|
|
440
|
+
:where(a):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
388
441
|
color: var(--tw-prose-links);
|
|
389
442
|
text-decoration: underline;
|
|
390
443
|
font-weight: 500;
|
|
391
444
|
}
|
|
392
|
-
:where(strong):not(:where([class~=
|
|
445
|
+
:where(strong):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
393
446
|
color: var(--tw-prose-bold);
|
|
394
447
|
font-weight: 600;
|
|
395
448
|
}
|
|
396
|
-
:where(a strong):not(:where([class~=
|
|
449
|
+
:where(a strong):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
397
450
|
color: inherit;
|
|
398
451
|
}
|
|
399
|
-
:where(blockquote strong):not(:where([class~=
|
|
452
|
+
:where(blockquote strong):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
400
453
|
color: inherit;
|
|
401
454
|
}
|
|
402
|
-
:where(thead th strong):not(:where([class~=
|
|
455
|
+
:where(thead th strong):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
403
456
|
color: inherit;
|
|
404
457
|
}
|
|
405
|
-
:where(ol):not(:where([class~=
|
|
458
|
+
:where(ol):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
406
459
|
list-style-type: decimal;
|
|
407
460
|
margin-top: 1.25em;
|
|
408
461
|
margin-bottom: 1.25em;
|
|
409
462
|
padding-inline-start: 1.625em;
|
|
410
463
|
}
|
|
411
|
-
:where(ol[type=
|
|
464
|
+
:where(ol[type='A']):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
412
465
|
list-style-type: upper-alpha;
|
|
413
466
|
}
|
|
414
|
-
:where(ol[type=
|
|
467
|
+
:where(ol[type='a']):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
415
468
|
list-style-type: lower-alpha;
|
|
416
469
|
}
|
|
417
|
-
:where(ol[type=
|
|
470
|
+
:where(ol[type='A' s]):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
418
471
|
list-style-type: upper-alpha;
|
|
419
472
|
}
|
|
420
|
-
:where(ol[type=
|
|
473
|
+
:where(ol[type='a' s]):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
421
474
|
list-style-type: lower-alpha;
|
|
422
475
|
}
|
|
423
|
-
:where(ol[type=
|
|
476
|
+
:where(ol[type='I']):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
424
477
|
list-style-type: upper-roman;
|
|
425
478
|
}
|
|
426
|
-
:where(ol[type=
|
|
479
|
+
:where(ol[type='i']):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
427
480
|
list-style-type: lower-roman;
|
|
428
481
|
}
|
|
429
|
-
:where(ol[type=
|
|
482
|
+
:where(ol[type='I' s]):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
430
483
|
list-style-type: upper-roman;
|
|
431
484
|
}
|
|
432
|
-
:where(ol[type=
|
|
485
|
+
:where(ol[type='i' s]):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
433
486
|
list-style-type: lower-roman;
|
|
434
487
|
}
|
|
435
|
-
:where(ol[type=
|
|
488
|
+
:where(ol[type='1']):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
436
489
|
list-style-type: decimal;
|
|
437
490
|
}
|
|
438
|
-
:where(ul):not(:where([class~=
|
|
491
|
+
:where(ul):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
439
492
|
list-style-type: disc;
|
|
440
493
|
margin-top: 1.25em;
|
|
441
494
|
margin-bottom: 1.25em;
|
|
442
495
|
padding-inline-start: 1.625em;
|
|
443
496
|
}
|
|
444
|
-
:where(ol > li):not(:where([class~=
|
|
497
|
+
:where(ol > li):not(:where([class~='not-prose'], [class~='not-prose'] *))::marker {
|
|
445
498
|
font-weight: 400;
|
|
446
499
|
color: var(--tw-prose-counters);
|
|
447
500
|
}
|
|
448
|
-
:where(ul > li):not(:where([class~=
|
|
501
|
+
:where(ul > li):not(:where([class~='not-prose'], [class~='not-prose'] *))::marker {
|
|
449
502
|
color: var(--tw-prose-bullets);
|
|
450
503
|
}
|
|
451
|
-
:where(dt):not(:where([class~=
|
|
504
|
+
:where(dt):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
452
505
|
color: var(--tw-prose-headings);
|
|
453
506
|
font-weight: 600;
|
|
454
507
|
margin-top: 1.25em;
|
|
455
508
|
}
|
|
456
|
-
:where(hr):not(:where([class~=
|
|
509
|
+
:where(hr):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
457
510
|
border-color: var(--tw-prose-hr);
|
|
458
511
|
border-top-width: 1;
|
|
459
512
|
margin-top: 3em;
|
|
460
513
|
margin-bottom: 3em;
|
|
461
514
|
}
|
|
462
|
-
:where(blockquote):not(:where([class~=
|
|
515
|
+
:where(blockquote):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
463
516
|
font-weight: 500;
|
|
464
517
|
font-style: italic;
|
|
465
518
|
color: var(--tw-prose-quotes);
|
|
466
519
|
border-inline-start-width: 0.25rem;
|
|
467
520
|
border-inline-start-color: var(--tw-prose-quote-borders);
|
|
468
|
-
quotes:
|
|
521
|
+
quotes: '\201C' '\201D' '\2018' '\2019';
|
|
469
522
|
margin-top: 1.6em;
|
|
470
523
|
margin-bottom: 1.6em;
|
|
471
524
|
padding-inline-start: 1em;
|
|
472
525
|
}
|
|
473
|
-
:where(blockquote p:first-of-type):not(
|
|
526
|
+
:where(blockquote p:first-of-type):not(
|
|
527
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
528
|
+
)::before {
|
|
474
529
|
content: open-quote;
|
|
475
530
|
}
|
|
476
|
-
:where(blockquote p:last-of-type):not(
|
|
531
|
+
:where(blockquote p:last-of-type):not(
|
|
532
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
533
|
+
)::after {
|
|
477
534
|
content: close-quote;
|
|
478
535
|
}
|
|
479
|
-
:where(h1):not(:where([class~=
|
|
536
|
+
:where(h1):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
480
537
|
color: var(--tw-prose-headings);
|
|
481
538
|
font-weight: 800;
|
|
482
539
|
font-size: 2.25em;
|
|
@@ -484,11 +541,11 @@
|
|
|
484
541
|
margin-bottom: 0.8888889em;
|
|
485
542
|
line-height: 1.1111111;
|
|
486
543
|
}
|
|
487
|
-
:where(h1 strong):not(:where([class~=
|
|
544
|
+
:where(h1 strong):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
488
545
|
font-weight: 900;
|
|
489
546
|
color: inherit;
|
|
490
547
|
}
|
|
491
|
-
:where(h2):not(:where([class~=
|
|
548
|
+
:where(h2):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
492
549
|
color: var(--tw-prose-headings);
|
|
493
550
|
font-weight: 700;
|
|
494
551
|
font-size: 1.5em;
|
|
@@ -496,11 +553,11 @@
|
|
|
496
553
|
margin-bottom: 1em;
|
|
497
554
|
line-height: 1.3333333;
|
|
498
555
|
}
|
|
499
|
-
:where(h2 strong):not(:where([class~=
|
|
556
|
+
:where(h2 strong):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
500
557
|
font-weight: 800;
|
|
501
558
|
color: inherit;
|
|
502
559
|
}
|
|
503
|
-
:where(h3):not(:where([class~=
|
|
560
|
+
:where(h3):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
504
561
|
color: var(--tw-prose-headings);
|
|
505
562
|
font-weight: 600;
|
|
506
563
|
font-size: 1.25em;
|
|
@@ -508,39 +565,41 @@
|
|
|
508
565
|
margin-bottom: 0.6em;
|
|
509
566
|
line-height: 1.6;
|
|
510
567
|
}
|
|
511
|
-
:where(h3 strong):not(:where([class~=
|
|
568
|
+
:where(h3 strong):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
512
569
|
font-weight: 700;
|
|
513
570
|
color: inherit;
|
|
514
571
|
}
|
|
515
|
-
:where(h4):not(:where([class~=
|
|
572
|
+
:where(h4):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
516
573
|
color: var(--tw-prose-headings);
|
|
517
574
|
font-weight: 600;
|
|
518
575
|
margin-top: 1.5em;
|
|
519
576
|
margin-bottom: 0.5em;
|
|
520
577
|
line-height: 1.5;
|
|
521
578
|
}
|
|
522
|
-
:where(h4 strong):not(:where([class~=
|
|
579
|
+
:where(h4 strong):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
523
580
|
font-weight: 700;
|
|
524
581
|
color: inherit;
|
|
525
582
|
}
|
|
526
|
-
:where(img):not(:where([class~=
|
|
583
|
+
:where(img):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
527
584
|
margin-top: 2em;
|
|
528
585
|
margin-bottom: 2em;
|
|
529
586
|
}
|
|
530
|
-
:where(picture):not(:where([class~=
|
|
587
|
+
:where(picture):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
531
588
|
display: block;
|
|
532
589
|
margin-top: 2em;
|
|
533
590
|
margin-bottom: 2em;
|
|
534
591
|
}
|
|
535
|
-
:where(video):not(:where([class~=
|
|
592
|
+
:where(video):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
536
593
|
margin-top: 2em;
|
|
537
594
|
margin-bottom: 2em;
|
|
538
595
|
}
|
|
539
|
-
:where(kbd):not(:where([class~=
|
|
596
|
+
:where(kbd):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
540
597
|
font-weight: 500;
|
|
541
598
|
font-family: inherit;
|
|
542
599
|
color: var(--tw-prose-kbd);
|
|
543
|
-
box-shadow:
|
|
600
|
+
box-shadow:
|
|
601
|
+
0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%),
|
|
602
|
+
0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
|
|
544
603
|
font-size: 0.875em;
|
|
545
604
|
border-radius: 0.3125rem;
|
|
546
605
|
padding-top: 0.1875em;
|
|
@@ -548,41 +607,41 @@
|
|
|
548
607
|
padding-bottom: 0.1875em;
|
|
549
608
|
padding-inline-start: 0.375em;
|
|
550
609
|
}
|
|
551
|
-
:where(code):not(:where([class~=
|
|
610
|
+
:where(code):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
552
611
|
color: var(--tw-prose-code);
|
|
553
612
|
font-weight: 600;
|
|
554
613
|
font-size: 0.875em;
|
|
555
614
|
}
|
|
556
|
-
:where(code):not(:where([class~=
|
|
557
|
-
content:
|
|
615
|
+
:where(code):not(:where([class~='not-prose'], [class~='not-prose'] *))::before {
|
|
616
|
+
content: '`';
|
|
558
617
|
}
|
|
559
|
-
:where(code):not(:where([class~=
|
|
560
|
-
content:
|
|
618
|
+
:where(code):not(:where([class~='not-prose'], [class~='not-prose'] *))::after {
|
|
619
|
+
content: '`';
|
|
561
620
|
}
|
|
562
|
-
:where(a code):not(:where([class~=
|
|
621
|
+
:where(a code):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
563
622
|
color: inherit;
|
|
564
623
|
}
|
|
565
|
-
:where(h1 code):not(:where([class~=
|
|
624
|
+
:where(h1 code):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
566
625
|
color: inherit;
|
|
567
626
|
}
|
|
568
|
-
:where(h2 code):not(:where([class~=
|
|
627
|
+
:where(h2 code):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
569
628
|
color: inherit;
|
|
570
629
|
font-size: 0.875em;
|
|
571
630
|
}
|
|
572
|
-
:where(h3 code):not(:where([class~=
|
|
631
|
+
:where(h3 code):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
573
632
|
color: inherit;
|
|
574
633
|
font-size: 0.9em;
|
|
575
634
|
}
|
|
576
|
-
:where(h4 code):not(:where([class~=
|
|
635
|
+
:where(h4 code):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
577
636
|
color: inherit;
|
|
578
637
|
}
|
|
579
|
-
:where(blockquote code):not(:where([class~=
|
|
638
|
+
:where(blockquote code):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
580
639
|
color: inherit;
|
|
581
640
|
}
|
|
582
|
-
:where(thead th code):not(:where([class~=
|
|
641
|
+
:where(thead th code):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
583
642
|
color: inherit;
|
|
584
643
|
}
|
|
585
|
-
:where(pre):not(:where([class~=
|
|
644
|
+
:where(pre):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
586
645
|
color: var(--tw-prose-pre-code);
|
|
587
646
|
background-color: var(--tw-prose-pre-bg);
|
|
588
647
|
overflow-x: auto;
|
|
@@ -597,7 +656,7 @@
|
|
|
597
656
|
padding-bottom: 0.8571429em;
|
|
598
657
|
padding-inline-start: 1.1428571em;
|
|
599
658
|
}
|
|
600
|
-
:where(pre code):not(:where([class~=
|
|
659
|
+
:where(pre code):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
601
660
|
background-color: transparent;
|
|
602
661
|
border-width: 0;
|
|
603
662
|
border-radius: 0;
|
|
@@ -608,13 +667,13 @@
|
|
|
608
667
|
font-family: inherit;
|
|
609
668
|
line-height: inherit;
|
|
610
669
|
}
|
|
611
|
-
:where(pre code):not(:where([class~=
|
|
670
|
+
:where(pre code):not(:where([class~='not-prose'], [class~='not-prose'] *))::before {
|
|
612
671
|
content: none;
|
|
613
672
|
}
|
|
614
|
-
:where(pre code):not(:where([class~=
|
|
673
|
+
:where(pre code):not(:where([class~='not-prose'], [class~='not-prose'] *))::after {
|
|
615
674
|
content: none;
|
|
616
675
|
}
|
|
617
|
-
:where(table):not(:where([class~=
|
|
676
|
+
:where(table):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
618
677
|
width: 100%;
|
|
619
678
|
table-layout: auto;
|
|
620
679
|
margin-top: 2em;
|
|
@@ -622,11 +681,11 @@
|
|
|
622
681
|
font-size: 0.875em;
|
|
623
682
|
line-height: 1.7142857;
|
|
624
683
|
}
|
|
625
|
-
:where(thead):not(:where([class~=
|
|
684
|
+
:where(thead):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
626
685
|
border-bottom-width: 1px;
|
|
627
686
|
border-bottom-color: var(--tw-prose-th-borders);
|
|
628
687
|
}
|
|
629
|
-
:where(thead th):not(:where([class~=
|
|
688
|
+
:where(thead th):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
630
689
|
color: var(--tw-prose-headings);
|
|
631
690
|
font-weight: 600;
|
|
632
691
|
vertical-align: bottom;
|
|
@@ -634,31 +693,31 @@
|
|
|
634
693
|
padding-bottom: 0.5714286em;
|
|
635
694
|
padding-inline-start: 0.5714286em;
|
|
636
695
|
}
|
|
637
|
-
:where(tbody tr):not(:where([class~=
|
|
696
|
+
:where(tbody tr):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
638
697
|
border-bottom-width: 1px;
|
|
639
698
|
border-bottom-color: var(--tw-prose-td-borders);
|
|
640
699
|
}
|
|
641
|
-
:where(tbody tr:last-child):not(:where([class~=
|
|
700
|
+
:where(tbody tr:last-child):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
642
701
|
border-bottom-width: 0;
|
|
643
702
|
}
|
|
644
|
-
:where(tbody td):not(:where([class~=
|
|
703
|
+
:where(tbody td):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
645
704
|
vertical-align: baseline;
|
|
646
705
|
}
|
|
647
|
-
:where(tfoot):not(:where([class~=
|
|
706
|
+
:where(tfoot):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
648
707
|
border-top-width: 1px;
|
|
649
708
|
border-top-color: var(--tw-prose-th-borders);
|
|
650
709
|
}
|
|
651
|
-
:where(tfoot td):not(:where([class~=
|
|
710
|
+
:where(tfoot td):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
652
711
|
vertical-align: top;
|
|
653
712
|
}
|
|
654
|
-
:where(th, td):not(:where([class~=
|
|
713
|
+
:where(th, td):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
655
714
|
text-align: start;
|
|
656
715
|
}
|
|
657
|
-
:where(figure > *):not(:where([class~=
|
|
716
|
+
:where(figure > *):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
658
717
|
margin-top: 0;
|
|
659
718
|
margin-bottom: 0;
|
|
660
719
|
}
|
|
661
|
-
:where(figcaption):not(:where([class~=
|
|
720
|
+
:where(figcaption):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
662
721
|
color: var(--tw-prose-captions);
|
|
663
722
|
font-size: 0.875em;
|
|
664
723
|
line-height: 1.4285714;
|
|
@@ -702,86 +761,98 @@
|
|
|
702
761
|
--tw-prose-invert-td-borders: oklch(0.373 0.034 259.733);
|
|
703
762
|
font-size: 1rem;
|
|
704
763
|
line-height: 1.75;
|
|
705
|
-
:where(picture > img):not(:where([class~=
|
|
764
|
+
:where(picture > img):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
706
765
|
margin-top: 0;
|
|
707
766
|
margin-bottom: 0;
|
|
708
767
|
}
|
|
709
|
-
:where(li):not(:where([class~=
|
|
768
|
+
:where(li):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
710
769
|
margin-top: 0.5em;
|
|
711
770
|
margin-bottom: 0.5em;
|
|
712
771
|
}
|
|
713
|
-
:where(ol > li):not(:where([class~=
|
|
772
|
+
:where(ol > li):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
714
773
|
padding-inline-start: 0.375em;
|
|
715
774
|
}
|
|
716
|
-
:where(ul > li):not(:where([class~=
|
|
775
|
+
:where(ul > li):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
717
776
|
padding-inline-start: 0.375em;
|
|
718
777
|
}
|
|
719
|
-
:where(.prose > ul > li p):not(:where([class~=
|
|
778
|
+
:where(.prose > ul > li p):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
720
779
|
margin-top: 0.75em;
|
|
721
780
|
margin-bottom: 0.75em;
|
|
722
781
|
}
|
|
723
|
-
:where(.prose > ul > li > p:first-child):not(
|
|
782
|
+
:where(.prose > ul > li > p:first-child):not(
|
|
783
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
784
|
+
) {
|
|
724
785
|
margin-top: 1.25em;
|
|
725
786
|
}
|
|
726
|
-
:where(.prose > ul > li > p:last-child):not(
|
|
787
|
+
:where(.prose > ul > li > p:last-child):not(
|
|
788
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
789
|
+
) {
|
|
727
790
|
margin-bottom: 1.25em;
|
|
728
791
|
}
|
|
729
|
-
:where(.prose > ol > li > p:first-child):not(
|
|
792
|
+
:where(.prose > ol > li > p:first-child):not(
|
|
793
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
794
|
+
) {
|
|
730
795
|
margin-top: 1.25em;
|
|
731
796
|
}
|
|
732
|
-
:where(.prose > ol > li > p:last-child):not(
|
|
797
|
+
:where(.prose > ol > li > p:last-child):not(
|
|
798
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
799
|
+
) {
|
|
733
800
|
margin-bottom: 1.25em;
|
|
734
801
|
}
|
|
735
|
-
:where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=
|
|
802
|
+
:where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
736
803
|
margin-top: 0.75em;
|
|
737
804
|
margin-bottom: 0.75em;
|
|
738
805
|
}
|
|
739
|
-
:where(dl):not(:where([class~=
|
|
806
|
+
:where(dl):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
740
807
|
margin-top: 1.25em;
|
|
741
808
|
margin-bottom: 1.25em;
|
|
742
809
|
}
|
|
743
|
-
:where(dd):not(:where([class~=
|
|
810
|
+
:where(dd):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
744
811
|
margin-top: 0.5em;
|
|
745
812
|
padding-inline-start: 1.625em;
|
|
746
813
|
}
|
|
747
|
-
:where(hr + *):not(:where([class~=
|
|
814
|
+
:where(hr + *):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
748
815
|
margin-top: 0;
|
|
749
816
|
}
|
|
750
|
-
:where(h2 + *):not(:where([class~=
|
|
817
|
+
:where(h2 + *):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
751
818
|
margin-top: 0;
|
|
752
819
|
}
|
|
753
|
-
:where(h3 + *):not(:where([class~=
|
|
820
|
+
:where(h3 + *):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
754
821
|
margin-top: 0;
|
|
755
822
|
}
|
|
756
|
-
:where(h4 + *):not(:where([class~=
|
|
823
|
+
:where(h4 + *):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
757
824
|
margin-top: 0;
|
|
758
825
|
}
|
|
759
|
-
:where(thead th:first-child):not(:where([class~=
|
|
826
|
+
:where(thead th:first-child):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
760
827
|
padding-inline-start: 0;
|
|
761
828
|
}
|
|
762
|
-
:where(thead th:last-child):not(:where([class~=
|
|
829
|
+
:where(thead th:last-child):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
763
830
|
padding-inline-end: 0;
|
|
764
831
|
}
|
|
765
|
-
:where(tbody td, tfoot td):not(:where([class~=
|
|
832
|
+
:where(tbody td, tfoot td):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
766
833
|
padding-top: 0.5714286em;
|
|
767
834
|
padding-inline-end: 0.5714286em;
|
|
768
835
|
padding-bottom: 0.5714286em;
|
|
769
836
|
padding-inline-start: 0.5714286em;
|
|
770
837
|
}
|
|
771
|
-
:where(tbody td:first-child, tfoot td:first-child):not(
|
|
838
|
+
:where(tbody td:first-child, tfoot td:first-child):not(
|
|
839
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
840
|
+
) {
|
|
772
841
|
padding-inline-start: 0;
|
|
773
842
|
}
|
|
774
|
-
:where(tbody td:last-child, tfoot td:last-child):not(
|
|
843
|
+
:where(tbody td:last-child, tfoot td:last-child):not(
|
|
844
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
845
|
+
) {
|
|
775
846
|
padding-inline-end: 0;
|
|
776
847
|
}
|
|
777
|
-
:where(figure):not(:where([class~=
|
|
848
|
+
:where(figure):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
778
849
|
margin-top: 2em;
|
|
779
850
|
margin-bottom: 2em;
|
|
780
851
|
}
|
|
781
|
-
:where(.prose > :first-child):not(:where([class~=
|
|
852
|
+
:where(.prose > :first-child):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
782
853
|
margin-top: 0;
|
|
783
854
|
}
|
|
784
|
-
:where(.prose > :last-child):not(:where([class~=
|
|
855
|
+
:where(.prose > :last-child):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
785
856
|
margin-bottom: 0;
|
|
786
857
|
}
|
|
787
858
|
}
|
|
@@ -1020,7 +1091,7 @@
|
|
|
1020
1091
|
width: calc(var(--spacing) * 3);
|
|
1021
1092
|
}
|
|
1022
1093
|
.w-3\/4 {
|
|
1023
|
-
width: calc(3/4 * 100%);
|
|
1094
|
+
width: calc(3 / 4 * 100%);
|
|
1024
1095
|
}
|
|
1025
1096
|
.w-4 {
|
|
1026
1097
|
width: calc(var(--spacing) * 4);
|
|
@@ -1159,7 +1230,7 @@
|
|
|
1159
1230
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1160
1231
|
}
|
|
1161
1232
|
.-translate-x-1\/2 {
|
|
1162
|
-
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
|
1233
|
+
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
1163
1234
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1164
1235
|
}
|
|
1165
1236
|
.translate-x-\[-50\%\] {
|
|
@@ -1171,7 +1242,7 @@
|
|
|
1171
1242
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1172
1243
|
}
|
|
1173
1244
|
.-translate-y-1\/2 {
|
|
1174
|
-
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
1245
|
+
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
1175
1246
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1176
1247
|
}
|
|
1177
1248
|
.translate-y-0 {
|
|
@@ -1201,7 +1272,8 @@
|
|
|
1201
1272
|
rotate: 90deg;
|
|
1202
1273
|
}
|
|
1203
1274
|
.transform {
|
|
1204
|
-
transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x)
|
|
1275
|
+
transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x)
|
|
1276
|
+
var(--tw-skew-y);
|
|
1205
1277
|
}
|
|
1206
1278
|
.animate-pulse {
|
|
1207
1279
|
animation: var(--animate-pulse);
|
|
@@ -1506,7 +1578,12 @@
|
|
|
1506
1578
|
}
|
|
1507
1579
|
.from-nsw-grey-600 {
|
|
1508
1580
|
--tw-gradient-from: var(--color-nsw-grey-600);
|
|
1509
|
-
--tw-gradient-stops: var(
|
|
1581
|
+
--tw-gradient-stops: var(
|
|
1582
|
+
--tw-gradient-via-stops,
|
|
1583
|
+
var(--tw-gradient-position),
|
|
1584
|
+
var(--tw-gradient-from) var(--tw-gradient-from-position),
|
|
1585
|
+
var(--tw-gradient-to) var(--tw-gradient-to-position)
|
|
1586
|
+
);
|
|
1510
1587
|
}
|
|
1511
1588
|
.fill-current {
|
|
1512
1589
|
fill: currentColor;
|
|
@@ -1812,32 +1889,55 @@
|
|
|
1812
1889
|
opacity: 80%;
|
|
1813
1890
|
}
|
|
1814
1891
|
.shadow {
|
|
1815
|
-
--tw-shadow:
|
|
1816
|
-
|
|
1892
|
+
--tw-shadow:
|
|
1893
|
+
0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)),
|
|
1894
|
+
0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1895
|
+
box-shadow:
|
|
1896
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
1897
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
1817
1898
|
}
|
|
1818
1899
|
.shadow-lg {
|
|
1819
|
-
--tw-shadow:
|
|
1820
|
-
|
|
1900
|
+
--tw-shadow:
|
|
1901
|
+
0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)),
|
|
1902
|
+
0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1903
|
+
box-shadow:
|
|
1904
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
1905
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
1821
1906
|
}
|
|
1822
1907
|
.shadow-md {
|
|
1823
|
-
--tw-shadow:
|
|
1824
|
-
|
|
1908
|
+
--tw-shadow:
|
|
1909
|
+
0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)),
|
|
1910
|
+
0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1911
|
+
box-shadow:
|
|
1912
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
1913
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
1825
1914
|
}
|
|
1826
1915
|
.shadow-none {
|
|
1827
1916
|
--tw-shadow: 0 0 #0000;
|
|
1828
|
-
box-shadow:
|
|
1917
|
+
box-shadow:
|
|
1918
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
1919
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
1829
1920
|
}
|
|
1830
1921
|
.shadow-sm {
|
|
1831
|
-
--tw-shadow:
|
|
1832
|
-
|
|
1922
|
+
--tw-shadow:
|
|
1923
|
+
0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)),
|
|
1924
|
+
0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1925
|
+
box-shadow:
|
|
1926
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
1927
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
1833
1928
|
}
|
|
1834
1929
|
.shadow-xs {
|
|
1835
1930
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
1836
|
-
box-shadow:
|
|
1931
|
+
box-shadow:
|
|
1932
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
1933
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
1837
1934
|
}
|
|
1838
1935
|
.ring-0 {
|
|
1839
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width))
|
|
1840
|
-
|
|
1936
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width))
|
|
1937
|
+
var(--tw-ring-color, currentColor);
|
|
1938
|
+
box-shadow:
|
|
1939
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
1940
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
1841
1941
|
}
|
|
1842
1942
|
.shadow-slate-900 {
|
|
1843
1943
|
--tw-shadow-color: var(--color-slate-900);
|
|
@@ -1867,16 +1967,41 @@
|
|
|
1867
1967
|
outline-width: 1px;
|
|
1868
1968
|
}
|
|
1869
1969
|
.backdrop-filter {
|
|
1870
|
-
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,)
|
|
1871
|
-
|
|
1970
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,)
|
|
1971
|
+
var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,)
|
|
1972
|
+
var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,)
|
|
1973
|
+
var(--tw-backdrop-sepia,);
|
|
1974
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,)
|
|
1975
|
+
var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,)
|
|
1976
|
+
var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,)
|
|
1977
|
+
var(--tw-backdrop-sepia,);
|
|
1872
1978
|
}
|
|
1873
1979
|
.transition {
|
|
1874
|
-
transition-property:
|
|
1980
|
+
transition-property:
|
|
1981
|
+
color,
|
|
1982
|
+
background-color,
|
|
1983
|
+
border-color,
|
|
1984
|
+
outline-color,
|
|
1985
|
+
text-decoration-color,
|
|
1986
|
+
fill,
|
|
1987
|
+
stroke,
|
|
1988
|
+
--tw-gradient-from,
|
|
1989
|
+
--tw-gradient-via,
|
|
1990
|
+
--tw-gradient-to,
|
|
1991
|
+
opacity,
|
|
1992
|
+
box-shadow,
|
|
1993
|
+
transform,
|
|
1994
|
+
translate,
|
|
1995
|
+
scale,
|
|
1996
|
+
rotate,
|
|
1997
|
+
filter,
|
|
1998
|
+
-webkit-backdrop-filter,
|
|
1999
|
+
backdrop-filter;
|
|
1875
2000
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1876
2001
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1877
2002
|
}
|
|
1878
2003
|
.transition-\[color\,box-shadow\] {
|
|
1879
|
-
transition-property: color,box-shadow;
|
|
2004
|
+
transition-property: color, box-shadow;
|
|
1880
2005
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1881
2006
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1882
2007
|
}
|
|
@@ -1886,7 +2011,9 @@
|
|
|
1886
2011
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1887
2012
|
}
|
|
1888
2013
|
.transition-colors {
|
|
1889
|
-
transition-property:
|
|
2014
|
+
transition-property:
|
|
2015
|
+
color, background-color, border-color, outline-color, text-decoration-color, fill, stroke,
|
|
2016
|
+
--tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
1890
2017
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1891
2018
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1892
2019
|
}
|
|
@@ -1995,7 +2122,7 @@
|
|
|
1995
2122
|
--tw-enter-opacity: 0;
|
|
1996
2123
|
}
|
|
1997
2124
|
.zoom-in-95 {
|
|
1998
|
-
--tw-enter-scale: .95;
|
|
2125
|
+
--tw-enter-scale: 0.95;
|
|
1999
2126
|
}
|
|
2000
2127
|
.group-hover\:fill-zinc-900 {
|
|
2001
2128
|
&:is(:where(.group):hover *) {
|
|
@@ -2005,65 +2132,69 @@
|
|
|
2005
2132
|
}
|
|
2006
2133
|
}
|
|
2007
2134
|
.group-data-\[disabled\=true\]\:pointer-events-none {
|
|
2008
|
-
&:is(:where(.group)[data-disabled=
|
|
2135
|
+
&:is(:where(.group)[data-disabled='true'] *) {
|
|
2009
2136
|
pointer-events: none;
|
|
2010
2137
|
}
|
|
2011
2138
|
}
|
|
2012
2139
|
.group-data-\[disabled\=true\]\:opacity-50 {
|
|
2013
|
-
&:is(:where(.group)[data-disabled=
|
|
2140
|
+
&:is(:where(.group)[data-disabled='true'] *) {
|
|
2014
2141
|
opacity: 50%;
|
|
2015
2142
|
}
|
|
2016
2143
|
}
|
|
2017
2144
|
.group-data-\[state\=open\]\:rotate-180 {
|
|
2018
|
-
&:is(:where(.group)[data-state=
|
|
2145
|
+
&:is(:where(.group)[data-state='open'] *) {
|
|
2019
2146
|
rotate: 180deg;
|
|
2020
2147
|
}
|
|
2021
2148
|
}
|
|
2022
2149
|
.group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:block {
|
|
2023
|
-
&:is(:where(.group\/drawer-content)[data-vaul-drawer-direction=
|
|
2150
|
+
&:is(:where(.group\/drawer-content)[data-vaul-drawer-direction='bottom'] *) {
|
|
2024
2151
|
display: block;
|
|
2025
2152
|
}
|
|
2026
2153
|
}
|
|
2027
2154
|
.group-data-\[viewport\=false\]\/navigation-menu\:top-full {
|
|
2028
|
-
&:is(:where(.group\/navigation-menu)[data-viewport=
|
|
2155
|
+
&:is(:where(.group\/navigation-menu)[data-viewport='false'] *) {
|
|
2029
2156
|
top: 100%;
|
|
2030
2157
|
}
|
|
2031
2158
|
}
|
|
2032
2159
|
.group-data-\[viewport\=false\]\/navigation-menu\:mt-1\.5 {
|
|
2033
|
-
&:is(:where(.group\/navigation-menu)[data-viewport=
|
|
2160
|
+
&:is(:where(.group\/navigation-menu)[data-viewport='false'] *) {
|
|
2034
2161
|
margin-top: calc(var(--spacing) * 1.5);
|
|
2035
2162
|
}
|
|
2036
2163
|
}
|
|
2037
2164
|
.group-data-\[viewport\=false\]\/navigation-menu\:overflow-hidden {
|
|
2038
|
-
&:is(:where(.group\/navigation-menu)[data-viewport=
|
|
2165
|
+
&:is(:where(.group\/navigation-menu)[data-viewport='false'] *) {
|
|
2039
2166
|
overflow: hidden;
|
|
2040
2167
|
}
|
|
2041
2168
|
}
|
|
2042
2169
|
.group-data-\[viewport\=false\]\/navigation-menu\:rounded-md {
|
|
2043
|
-
&:is(:where(.group\/navigation-menu)[data-viewport=
|
|
2170
|
+
&:is(:where(.group\/navigation-menu)[data-viewport='false'] *) {
|
|
2044
2171
|
border-radius: var(--radius-md);
|
|
2045
2172
|
}
|
|
2046
2173
|
}
|
|
2047
2174
|
.group-data-\[viewport\=false\]\/navigation-menu\:border {
|
|
2048
|
-
&:is(:where(.group\/navigation-menu)[data-viewport=
|
|
2175
|
+
&:is(:where(.group\/navigation-menu)[data-viewport='false'] *) {
|
|
2049
2176
|
border-style: var(--tw-border-style);
|
|
2050
2177
|
border-width: 1px;
|
|
2051
2178
|
}
|
|
2052
2179
|
}
|
|
2053
2180
|
.group-data-\[viewport\=false\]\/navigation-menu\:shadow {
|
|
2054
|
-
&:is(:where(.group\/navigation-menu)[data-viewport=
|
|
2055
|
-
--tw-shadow:
|
|
2056
|
-
|
|
2181
|
+
&:is(:where(.group\/navigation-menu)[data-viewport='false'] *) {
|
|
2182
|
+
--tw-shadow:
|
|
2183
|
+
0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)),
|
|
2184
|
+
0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2185
|
+
box-shadow:
|
|
2186
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
2187
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
2057
2188
|
}
|
|
2058
2189
|
}
|
|
2059
2190
|
.group-data-\[viewport\=false\]\/navigation-menu\:duration-200 {
|
|
2060
|
-
&:is(:where(.group\/navigation-menu)[data-viewport=
|
|
2191
|
+
&:is(:where(.group\/navigation-menu)[data-viewport='false'] *) {
|
|
2061
2192
|
--tw-duration: 200ms;
|
|
2062
2193
|
transition-duration: 200ms;
|
|
2063
2194
|
}
|
|
2064
2195
|
}
|
|
2065
2196
|
.group-data-\[viewport\=false\]\/navigation-menu\:duration-200 {
|
|
2066
|
-
&:is(:where(.group\/navigation-menu)[data-viewport=
|
|
2197
|
+
&:is(:where(.group\/navigation-menu)[data-viewport='false'] *) {
|
|
2067
2198
|
animation-duration: 200ms;
|
|
2068
2199
|
}
|
|
2069
2200
|
}
|
|
@@ -2151,7 +2282,7 @@
|
|
|
2151
2282
|
.after\:left-1\/2 {
|
|
2152
2283
|
&::after {
|
|
2153
2284
|
content: var(--tw-content);
|
|
2154
|
-
left: calc(1/2 * 100%);
|
|
2285
|
+
left: calc(1 / 2 * 100%);
|
|
2155
2286
|
}
|
|
2156
2287
|
}
|
|
2157
2288
|
.after\:w-1 {
|
|
@@ -2163,7 +2294,7 @@
|
|
|
2163
2294
|
.after\:-translate-x-1\/2 {
|
|
2164
2295
|
&::after {
|
|
2165
2296
|
content: var(--tw-content);
|
|
2166
|
-
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
|
2297
|
+
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
2167
2298
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2168
2299
|
}
|
|
2169
2300
|
}
|
|
@@ -2304,8 +2435,11 @@
|
|
|
2304
2435
|
.hover\:ring-4 {
|
|
2305
2436
|
&:hover {
|
|
2306
2437
|
@media (hover: hover) {
|
|
2307
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width))
|
|
2308
|
-
|
|
2438
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width))
|
|
2439
|
+
var(--tw-ring-color, currentColor);
|
|
2440
|
+
box-shadow:
|
|
2441
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
2442
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
2309
2443
|
}
|
|
2310
2444
|
}
|
|
2311
2445
|
}
|
|
@@ -2326,8 +2460,11 @@
|
|
|
2326
2460
|
}
|
|
2327
2461
|
.focus\:ring-2 {
|
|
2328
2462
|
&:focus {
|
|
2329
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width))
|
|
2330
|
-
|
|
2463
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width))
|
|
2464
|
+
var(--tw-ring-color, currentColor);
|
|
2465
|
+
box-shadow:
|
|
2466
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
2467
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
2331
2468
|
}
|
|
2332
2469
|
}
|
|
2333
2470
|
.focus\:ring-zinc-950 {
|
|
@@ -2338,7 +2475,8 @@
|
|
|
2338
2475
|
.focus\:ring-offset-2 {
|
|
2339
2476
|
&:focus {
|
|
2340
2477
|
--tw-ring-offset-width: 2px;
|
|
2341
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width)
|
|
2478
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width)
|
|
2479
|
+
var(--tw-ring-offset-color);
|
|
2342
2480
|
}
|
|
2343
2481
|
}
|
|
2344
2482
|
.focus\:outline-hidden {
|
|
@@ -2363,20 +2501,29 @@
|
|
|
2363
2501
|
}
|
|
2364
2502
|
.focus-visible\:ring-1 {
|
|
2365
2503
|
&:focus-visible {
|
|
2366
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width))
|
|
2367
|
-
|
|
2504
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width))
|
|
2505
|
+
var(--tw-ring-color, currentColor);
|
|
2506
|
+
box-shadow:
|
|
2507
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
2508
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
2368
2509
|
}
|
|
2369
2510
|
}
|
|
2370
2511
|
.focus-visible\:ring-4 {
|
|
2371
2512
|
&:focus-visible {
|
|
2372
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width))
|
|
2373
|
-
|
|
2513
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width))
|
|
2514
|
+
var(--tw-ring-color, currentColor);
|
|
2515
|
+
box-shadow:
|
|
2516
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
2517
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
2374
2518
|
}
|
|
2375
2519
|
}
|
|
2376
2520
|
.focus-visible\:ring-\[3px\] {
|
|
2377
2521
|
&:focus-visible {
|
|
2378
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width))
|
|
2379
|
-
|
|
2522
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width))
|
|
2523
|
+
var(--tw-ring-color, currentColor);
|
|
2524
|
+
box-shadow:
|
|
2525
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
2526
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
2380
2527
|
}
|
|
2381
2528
|
}
|
|
2382
2529
|
.focus-visible\:ring-red-500\/20 {
|
|
@@ -2397,7 +2544,8 @@
|
|
|
2397
2544
|
.focus-visible\:ring-offset-1 {
|
|
2398
2545
|
&:focus-visible {
|
|
2399
2546
|
--tw-ring-offset-width: 1px;
|
|
2400
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width)
|
|
2547
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width)
|
|
2548
|
+
var(--tw-ring-offset-color);
|
|
2401
2549
|
}
|
|
2402
2550
|
}
|
|
2403
2551
|
.focus-visible\:outline-hidden {
|
|
@@ -2432,72 +2580,72 @@
|
|
|
2432
2580
|
}
|
|
2433
2581
|
}
|
|
2434
2582
|
.has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\] {
|
|
2435
|
-
&:has(*[data-slot=
|
|
2583
|
+
&:has(*[data-slot='card-action']) {
|
|
2436
2584
|
grid-template-columns: 1fr auto;
|
|
2437
2585
|
}
|
|
2438
2586
|
}
|
|
2439
2587
|
.has-\[\>svg\]\:grid-cols-\[calc\(var\(--spacing\)\*4\)_1fr\] {
|
|
2440
|
-
&:has(>svg) {
|
|
2588
|
+
&:has(> svg) {
|
|
2441
2589
|
grid-template-columns: calc(var(--spacing) * 4) 1fr;
|
|
2442
2590
|
}
|
|
2443
2591
|
}
|
|
2444
2592
|
.has-\[\>svg\]\:gap-x-3 {
|
|
2445
|
-
&:has(>svg) {
|
|
2593
|
+
&:has(> svg) {
|
|
2446
2594
|
column-gap: calc(var(--spacing) * 3);
|
|
2447
2595
|
}
|
|
2448
2596
|
}
|
|
2449
2597
|
.has-\[\>svg\]\:px-2\.5 {
|
|
2450
|
-
&:has(>svg) {
|
|
2598
|
+
&:has(> svg) {
|
|
2451
2599
|
padding-inline: calc(var(--spacing) * 2.5);
|
|
2452
2600
|
}
|
|
2453
2601
|
}
|
|
2454
2602
|
.has-\[\>svg\]\:px-3 {
|
|
2455
|
-
&:has(>svg) {
|
|
2603
|
+
&:has(> svg) {
|
|
2456
2604
|
padding-inline: calc(var(--spacing) * 3);
|
|
2457
2605
|
}
|
|
2458
2606
|
}
|
|
2459
2607
|
.has-\[\>svg\]\:px-4 {
|
|
2460
|
-
&:has(>svg) {
|
|
2608
|
+
&:has(> svg) {
|
|
2461
2609
|
padding-inline: calc(var(--spacing) * 4);
|
|
2462
2610
|
}
|
|
2463
2611
|
}
|
|
2464
2612
|
.aria-invalid\:border-red-500 {
|
|
2465
|
-
&[aria-invalid=
|
|
2613
|
+
&[aria-invalid='true'] {
|
|
2466
2614
|
border-color: var(--color-red-500);
|
|
2467
2615
|
}
|
|
2468
2616
|
}
|
|
2469
2617
|
.aria-invalid\:ring-red-500\/20 {
|
|
2470
|
-
&[aria-invalid=
|
|
2618
|
+
&[aria-invalid='true'] {
|
|
2471
2619
|
--tw-ring-color: color-mix(in oklab, var(--color-red-500) 20%, transparent);
|
|
2472
2620
|
}
|
|
2473
2621
|
}
|
|
2474
2622
|
.aria-selected\:bg-accent\/50 {
|
|
2475
|
-
&[aria-selected=
|
|
2623
|
+
&[aria-selected='true'] {
|
|
2476
2624
|
background-color: color-mix(in oklab, oklch(0.562 0.2175 20.33) 50%, transparent);
|
|
2477
2625
|
}
|
|
2478
2626
|
}
|
|
2479
2627
|
.aria-selected\:opacity-30 {
|
|
2480
|
-
&[aria-selected=
|
|
2628
|
+
&[aria-selected='true'] {
|
|
2481
2629
|
opacity: 30%;
|
|
2482
2630
|
}
|
|
2483
2631
|
}
|
|
2484
2632
|
.aria-selected\:opacity-100 {
|
|
2485
|
-
&[aria-selected=
|
|
2633
|
+
&[aria-selected='true'] {
|
|
2486
2634
|
opacity: 100%;
|
|
2487
2635
|
}
|
|
2488
2636
|
}
|
|
2489
2637
|
.data-\[active\=true\]\:bg-zinc-100\/50 {
|
|
2490
|
-
&[data-active=
|
|
2638
|
+
&[data-active='true'] {
|
|
2491
2639
|
background-color: color-mix(in oklab, var(--color-zinc-100) 50%, transparent);
|
|
2492
2640
|
}
|
|
2493
2641
|
}
|
|
2494
2642
|
.data-\[active\=true\]\:text-zinc-900 {
|
|
2495
|
-
&[data-active=
|
|
2643
|
+
&[data-active='true'] {
|
|
2496
2644
|
color: var(--color-zinc-900);
|
|
2497
2645
|
}
|
|
2498
2646
|
}
|
|
2499
2647
|
.data-\[active\=true\]\:hover\:bg-zinc-100 {
|
|
2500
|
-
&[data-active=
|
|
2648
|
+
&[data-active='true'] {
|
|
2501
2649
|
&:hover {
|
|
2502
2650
|
@media (hover: hover) {
|
|
2503
2651
|
background-color: var(--color-zinc-100);
|
|
@@ -2506,7 +2654,7 @@
|
|
|
2506
2654
|
}
|
|
2507
2655
|
}
|
|
2508
2656
|
.data-\[active\=true\]\:focus\:bg-zinc-100 {
|
|
2509
|
-
&[data-active=
|
|
2657
|
+
&[data-active='true'] {
|
|
2510
2658
|
&:focus {
|
|
2511
2659
|
background-color: var(--color-zinc-100);
|
|
2512
2660
|
}
|
|
@@ -2523,12 +2671,12 @@
|
|
|
2523
2671
|
}
|
|
2524
2672
|
}
|
|
2525
2673
|
.data-\[disabled\=true\]\:pointer-events-none {
|
|
2526
|
-
&[data-disabled=
|
|
2674
|
+
&[data-disabled='true'] {
|
|
2527
2675
|
pointer-events: none;
|
|
2528
2676
|
}
|
|
2529
2677
|
}
|
|
2530
2678
|
.data-\[disabled\=true\]\:opacity-50 {
|
|
2531
|
-
&[data-disabled=
|
|
2679
|
+
&[data-disabled='true'] {
|
|
2532
2680
|
opacity: 50%;
|
|
2533
2681
|
}
|
|
2534
2682
|
}
|
|
@@ -2538,27 +2686,27 @@
|
|
|
2538
2686
|
}
|
|
2539
2687
|
}
|
|
2540
2688
|
.data-\[motion\=from-end\]\:slide-in-from-right-52 {
|
|
2541
|
-
&[data-motion=
|
|
2689
|
+
&[data-motion='from-end'] {
|
|
2542
2690
|
--tw-enter-translate-x: 13rem;
|
|
2543
2691
|
}
|
|
2544
2692
|
}
|
|
2545
2693
|
.data-\[motion\=from-start\]\:slide-in-from-left-52 {
|
|
2546
|
-
&[data-motion=
|
|
2694
|
+
&[data-motion='from-start'] {
|
|
2547
2695
|
--tw-enter-translate-x: -13rem;
|
|
2548
2696
|
}
|
|
2549
2697
|
}
|
|
2550
2698
|
.data-\[motion\=to-end\]\:slide-out-to-right-52 {
|
|
2551
|
-
&[data-motion=
|
|
2699
|
+
&[data-motion='to-end'] {
|
|
2552
2700
|
--tw-exit-translate-x: 13rem;
|
|
2553
2701
|
}
|
|
2554
2702
|
}
|
|
2555
2703
|
.data-\[motion\=to-start\]\:slide-out-to-left-52 {
|
|
2556
|
-
&[data-motion=
|
|
2704
|
+
&[data-motion='to-start'] {
|
|
2557
2705
|
--tw-exit-translate-x: -13rem;
|
|
2558
2706
|
}
|
|
2559
2707
|
}
|
|
2560
2708
|
.data-\[motion\^\=from-\]\:animate-in {
|
|
2561
|
-
&[data-motion^=
|
|
2709
|
+
&[data-motion^='from-'] {
|
|
2562
2710
|
animation-name: enter;
|
|
2563
2711
|
animation-duration: 150ms;
|
|
2564
2712
|
--tw-enter-opacity: initial;
|
|
@@ -2569,12 +2717,12 @@
|
|
|
2569
2717
|
}
|
|
2570
2718
|
}
|
|
2571
2719
|
.data-\[motion\^\=from-\]\:fade-in {
|
|
2572
|
-
&[data-motion^=
|
|
2720
|
+
&[data-motion^='from-'] {
|
|
2573
2721
|
--tw-enter-opacity: 0;
|
|
2574
2722
|
}
|
|
2575
2723
|
}
|
|
2576
2724
|
.data-\[motion\^\=to-\]\:animate-out {
|
|
2577
|
-
&[data-motion^=
|
|
2725
|
+
&[data-motion^='to-'] {
|
|
2578
2726
|
animation-name: exit;
|
|
2579
2727
|
animation-duration: 150ms;
|
|
2580
2728
|
--tw-exit-opacity: initial;
|
|
@@ -2585,82 +2733,82 @@
|
|
|
2585
2733
|
}
|
|
2586
2734
|
}
|
|
2587
2735
|
.data-\[motion\^\=to-\]\:fade-out {
|
|
2588
|
-
&[data-motion^=
|
|
2736
|
+
&[data-motion^='to-'] {
|
|
2589
2737
|
--tw-exit-opacity: 0;
|
|
2590
2738
|
}
|
|
2591
2739
|
}
|
|
2592
2740
|
.data-\[orientation\=horizontal\]\:h-1\.5 {
|
|
2593
|
-
&[data-orientation=
|
|
2741
|
+
&[data-orientation='horizontal'] {
|
|
2594
2742
|
height: calc(var(--spacing) * 1.5);
|
|
2595
2743
|
}
|
|
2596
2744
|
}
|
|
2597
2745
|
.data-\[orientation\=horizontal\]\:h-full {
|
|
2598
|
-
&[data-orientation=
|
|
2746
|
+
&[data-orientation='horizontal'] {
|
|
2599
2747
|
height: 100%;
|
|
2600
2748
|
}
|
|
2601
2749
|
}
|
|
2602
2750
|
.data-\[orientation\=horizontal\]\:h-px {
|
|
2603
|
-
&[data-orientation=
|
|
2751
|
+
&[data-orientation='horizontal'] {
|
|
2604
2752
|
height: 1px;
|
|
2605
2753
|
}
|
|
2606
2754
|
}
|
|
2607
2755
|
.data-\[orientation\=horizontal\]\:w-full {
|
|
2608
|
-
&[data-orientation=
|
|
2756
|
+
&[data-orientation='horizontal'] {
|
|
2609
2757
|
width: 100%;
|
|
2610
2758
|
}
|
|
2611
2759
|
}
|
|
2612
2760
|
.data-\[orientation\=vertical\]\:h-full {
|
|
2613
|
-
&[data-orientation=
|
|
2761
|
+
&[data-orientation='vertical'] {
|
|
2614
2762
|
height: 100%;
|
|
2615
2763
|
}
|
|
2616
2764
|
}
|
|
2617
2765
|
.data-\[orientation\=vertical\]\:min-h-44 {
|
|
2618
|
-
&[data-orientation=
|
|
2766
|
+
&[data-orientation='vertical'] {
|
|
2619
2767
|
min-height: calc(var(--spacing) * 44);
|
|
2620
2768
|
}
|
|
2621
2769
|
}
|
|
2622
2770
|
.data-\[orientation\=vertical\]\:w-1\.5 {
|
|
2623
|
-
&[data-orientation=
|
|
2771
|
+
&[data-orientation='vertical'] {
|
|
2624
2772
|
width: calc(var(--spacing) * 1.5);
|
|
2625
2773
|
}
|
|
2626
2774
|
}
|
|
2627
2775
|
.data-\[orientation\=vertical\]\:w-auto {
|
|
2628
|
-
&[data-orientation=
|
|
2776
|
+
&[data-orientation='vertical'] {
|
|
2629
2777
|
width: auto;
|
|
2630
2778
|
}
|
|
2631
2779
|
}
|
|
2632
2780
|
.data-\[orientation\=vertical\]\:w-full {
|
|
2633
|
-
&[data-orientation=
|
|
2781
|
+
&[data-orientation='vertical'] {
|
|
2634
2782
|
width: 100%;
|
|
2635
2783
|
}
|
|
2636
2784
|
}
|
|
2637
2785
|
.data-\[orientation\=vertical\]\:w-px {
|
|
2638
|
-
&[data-orientation=
|
|
2786
|
+
&[data-orientation='vertical'] {
|
|
2639
2787
|
width: 1px;
|
|
2640
2788
|
}
|
|
2641
2789
|
}
|
|
2642
2790
|
.data-\[orientation\=vertical\]\:flex-col {
|
|
2643
|
-
&[data-orientation=
|
|
2791
|
+
&[data-orientation='vertical'] {
|
|
2644
2792
|
flex-direction: column;
|
|
2645
2793
|
}
|
|
2646
2794
|
}
|
|
2647
2795
|
.data-\[panel-group-direction\=vertical\]\:h-px {
|
|
2648
|
-
&[data-panel-group-direction=
|
|
2796
|
+
&[data-panel-group-direction='vertical'] {
|
|
2649
2797
|
height: 1px;
|
|
2650
2798
|
}
|
|
2651
2799
|
}
|
|
2652
2800
|
.data-\[panel-group-direction\=vertical\]\:w-full {
|
|
2653
|
-
&[data-panel-group-direction=
|
|
2801
|
+
&[data-panel-group-direction='vertical'] {
|
|
2654
2802
|
width: 100%;
|
|
2655
2803
|
}
|
|
2656
2804
|
}
|
|
2657
2805
|
.data-\[panel-group-direction\=vertical\]\:flex-col {
|
|
2658
|
-
&[data-panel-group-direction=
|
|
2806
|
+
&[data-panel-group-direction='vertical'] {
|
|
2659
2807
|
flex-direction: column;
|
|
2660
2808
|
}
|
|
2661
2809
|
}
|
|
2662
2810
|
.data-\[panel-group-direction\=vertical\]\:after\:left-0 {
|
|
2663
|
-
&[data-panel-group-direction=
|
|
2811
|
+
&[data-panel-group-direction='vertical'] {
|
|
2664
2812
|
&::after {
|
|
2665
2813
|
content: var(--tw-content);
|
|
2666
2814
|
left: calc(var(--spacing) * 0);
|
|
@@ -2668,7 +2816,7 @@
|
|
|
2668
2816
|
}
|
|
2669
2817
|
}
|
|
2670
2818
|
.data-\[panel-group-direction\=vertical\]\:after\:h-1 {
|
|
2671
|
-
&[data-panel-group-direction=
|
|
2819
|
+
&[data-panel-group-direction='vertical'] {
|
|
2672
2820
|
&::after {
|
|
2673
2821
|
content: var(--tw-content);
|
|
2674
2822
|
height: calc(var(--spacing) * 1);
|
|
@@ -2676,7 +2824,7 @@
|
|
|
2676
2824
|
}
|
|
2677
2825
|
}
|
|
2678
2826
|
.data-\[panel-group-direction\=vertical\]\:after\:w-full {
|
|
2679
|
-
&[data-panel-group-direction=
|
|
2827
|
+
&[data-panel-group-direction='vertical'] {
|
|
2680
2828
|
&::after {
|
|
2681
2829
|
content: var(--tw-content);
|
|
2682
2830
|
width: 100%;
|
|
@@ -2684,7 +2832,7 @@
|
|
|
2684
2832
|
}
|
|
2685
2833
|
}
|
|
2686
2834
|
.data-\[panel-group-direction\=vertical\]\:after\:translate-x-0 {
|
|
2687
|
-
&[data-panel-group-direction=
|
|
2835
|
+
&[data-panel-group-direction='vertical'] {
|
|
2688
2836
|
&::after {
|
|
2689
2837
|
content: var(--tw-content);
|
|
2690
2838
|
--tw-translate-x: calc(var(--spacing) * 0);
|
|
@@ -2693,10 +2841,10 @@
|
|
|
2693
2841
|
}
|
|
2694
2842
|
}
|
|
2695
2843
|
.data-\[panel-group-direction\=vertical\]\:after\:-translate-y-1\/2 {
|
|
2696
|
-
&[data-panel-group-direction=
|
|
2844
|
+
&[data-panel-group-direction='vertical'] {
|
|
2697
2845
|
&::after {
|
|
2698
2846
|
content: var(--tw-content);
|
|
2699
|
-
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
2847
|
+
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
2700
2848
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2701
2849
|
}
|
|
2702
2850
|
}
|
|
@@ -2707,96 +2855,99 @@
|
|
|
2707
2855
|
}
|
|
2708
2856
|
}
|
|
2709
2857
|
.data-\[selected\=true\]\:bg-zinc-100 {
|
|
2710
|
-
&[data-selected=
|
|
2858
|
+
&[data-selected='true'] {
|
|
2711
2859
|
background-color: var(--color-zinc-100);
|
|
2712
2860
|
}
|
|
2713
2861
|
}
|
|
2714
2862
|
.data-\[selected\=true\]\:text-zinc-900 {
|
|
2715
|
-
&[data-selected=
|
|
2863
|
+
&[data-selected='true'] {
|
|
2716
2864
|
color: var(--color-zinc-900);
|
|
2717
2865
|
}
|
|
2718
2866
|
}
|
|
2719
2867
|
.data-\[side\=bottom\]\:translate-y-1 {
|
|
2720
|
-
&[data-side=
|
|
2868
|
+
&[data-side='bottom'] {
|
|
2721
2869
|
--tw-translate-y: calc(var(--spacing) * 1);
|
|
2722
2870
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2723
2871
|
}
|
|
2724
2872
|
}
|
|
2725
2873
|
.data-\[side\=bottom\]\:slide-in-from-top-2 {
|
|
2726
|
-
&[data-side=
|
|
2874
|
+
&[data-side='bottom'] {
|
|
2727
2875
|
--tw-enter-translate-y: -0.5rem;
|
|
2728
2876
|
}
|
|
2729
2877
|
}
|
|
2730
2878
|
.data-\[side\=left\]\:-translate-x-1 {
|
|
2731
|
-
&[data-side=
|
|
2879
|
+
&[data-side='left'] {
|
|
2732
2880
|
--tw-translate-x: calc(var(--spacing) * -1);
|
|
2733
2881
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2734
2882
|
}
|
|
2735
2883
|
}
|
|
2736
2884
|
.data-\[side\=left\]\:slide-in-from-right-2 {
|
|
2737
|
-
&[data-side=
|
|
2885
|
+
&[data-side='left'] {
|
|
2738
2886
|
--tw-enter-translate-x: 0.5rem;
|
|
2739
2887
|
}
|
|
2740
2888
|
}
|
|
2741
2889
|
.data-\[side\=right\]\:translate-x-1 {
|
|
2742
|
-
&[data-side=
|
|
2890
|
+
&[data-side='right'] {
|
|
2743
2891
|
--tw-translate-x: calc(var(--spacing) * 1);
|
|
2744
2892
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2745
2893
|
}
|
|
2746
2894
|
}
|
|
2747
2895
|
.data-\[side\=right\]\:slide-in-from-left-2 {
|
|
2748
|
-
&[data-side=
|
|
2896
|
+
&[data-side='right'] {
|
|
2749
2897
|
--tw-enter-translate-x: -0.5rem;
|
|
2750
2898
|
}
|
|
2751
2899
|
}
|
|
2752
2900
|
.data-\[side\=top\]\:-translate-y-1 {
|
|
2753
|
-
&[data-side=
|
|
2901
|
+
&[data-side='top'] {
|
|
2754
2902
|
--tw-translate-y: calc(var(--spacing) * -1);
|
|
2755
2903
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2756
2904
|
}
|
|
2757
2905
|
}
|
|
2758
2906
|
.data-\[side\=top\]\:slide-in-from-bottom-2 {
|
|
2759
|
-
&[data-side=
|
|
2907
|
+
&[data-side='top'] {
|
|
2760
2908
|
--tw-enter-translate-y: 0.5rem;
|
|
2761
2909
|
}
|
|
2762
2910
|
}
|
|
2763
2911
|
.data-\[size\=default\]\:h-9 {
|
|
2764
|
-
&[data-size=
|
|
2912
|
+
&[data-size='default'] {
|
|
2765
2913
|
height: calc(var(--spacing) * 9);
|
|
2766
2914
|
}
|
|
2767
2915
|
}
|
|
2768
2916
|
.data-\[size\=sm\]\:h-8 {
|
|
2769
|
-
&[data-size=
|
|
2917
|
+
&[data-size='sm'] {
|
|
2770
2918
|
height: calc(var(--spacing) * 8);
|
|
2771
2919
|
}
|
|
2772
2920
|
}
|
|
2773
2921
|
.\*\:data-\[slot\=alert-description\]\:text-red-500\/90 {
|
|
2774
2922
|
:is(& > *) {
|
|
2775
|
-
&[data-slot=
|
|
2923
|
+
&[data-slot='alert-description'] {
|
|
2776
2924
|
color: color-mix(in oklab, var(--color-red-500) 90%, transparent);
|
|
2777
2925
|
}
|
|
2778
2926
|
}
|
|
2779
2927
|
}
|
|
2780
2928
|
.\*\*\:data-\[slot\=command-input-wrapper\]\:h-12 {
|
|
2781
2929
|
:is(& *) {
|
|
2782
|
-
&[data-slot=
|
|
2930
|
+
&[data-slot='command-input-wrapper'] {
|
|
2783
2931
|
height: calc(var(--spacing) * 12);
|
|
2784
2932
|
}
|
|
2785
2933
|
}
|
|
2786
2934
|
}
|
|
2787
2935
|
.\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:ring-0 {
|
|
2788
2936
|
:is(& *) {
|
|
2789
|
-
&[data-slot=
|
|
2937
|
+
&[data-slot='navigation-menu-link'] {
|
|
2790
2938
|
&:focus {
|
|
2791
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width))
|
|
2792
|
-
|
|
2939
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width))
|
|
2940
|
+
var(--tw-ring-color, currentColor);
|
|
2941
|
+
box-shadow:
|
|
2942
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
2943
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
2793
2944
|
}
|
|
2794
2945
|
}
|
|
2795
2946
|
}
|
|
2796
2947
|
}
|
|
2797
2948
|
.\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:outline-none {
|
|
2798
2949
|
:is(& *) {
|
|
2799
|
-
&[data-slot=
|
|
2950
|
+
&[data-slot='navigation-menu-link'] {
|
|
2800
2951
|
&:focus {
|
|
2801
2952
|
--tw-outline-style: none;
|
|
2802
2953
|
outline-style: none;
|
|
@@ -2806,7 +2957,7 @@
|
|
|
2806
2957
|
}
|
|
2807
2958
|
.\*\:data-\[slot\=select-value\]\:line-clamp-1 {
|
|
2808
2959
|
:is(& > *) {
|
|
2809
|
-
&[data-slot=
|
|
2960
|
+
&[data-slot='select-value'] {
|
|
2810
2961
|
overflow: hidden;
|
|
2811
2962
|
display: -webkit-box;
|
|
2812
2963
|
-webkit-box-orient: vertical;
|
|
@@ -2816,65 +2967,69 @@
|
|
|
2816
2967
|
}
|
|
2817
2968
|
.\*\:data-\[slot\=select-value\]\:flex {
|
|
2818
2969
|
:is(& > *) {
|
|
2819
|
-
&[data-slot=
|
|
2970
|
+
&[data-slot='select-value'] {
|
|
2820
2971
|
display: flex;
|
|
2821
2972
|
}
|
|
2822
2973
|
}
|
|
2823
2974
|
}
|
|
2824
2975
|
.\*\:data-\[slot\=select-value\]\:items-center {
|
|
2825
2976
|
:is(& > *) {
|
|
2826
|
-
&[data-slot=
|
|
2977
|
+
&[data-slot='select-value'] {
|
|
2827
2978
|
align-items: center;
|
|
2828
2979
|
}
|
|
2829
2980
|
}
|
|
2830
2981
|
}
|
|
2831
2982
|
.\*\:data-\[slot\=select-value\]\:gap-2 {
|
|
2832
2983
|
:is(& > *) {
|
|
2833
|
-
&[data-slot=
|
|
2984
|
+
&[data-slot='select-value'] {
|
|
2834
2985
|
gap: calc(var(--spacing) * 2);
|
|
2835
2986
|
}
|
|
2836
2987
|
}
|
|
2837
2988
|
}
|
|
2838
2989
|
.data-\[state\=active\]\:bg-white {
|
|
2839
|
-
&[data-state=
|
|
2990
|
+
&[data-state='active'] {
|
|
2840
2991
|
background-color: var(--color-white);
|
|
2841
2992
|
}
|
|
2842
2993
|
}
|
|
2843
2994
|
.data-\[state\=active\]\:shadow-sm {
|
|
2844
|
-
&[data-state=
|
|
2845
|
-
--tw-shadow:
|
|
2846
|
-
|
|
2995
|
+
&[data-state='active'] {
|
|
2996
|
+
--tw-shadow:
|
|
2997
|
+
0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)),
|
|
2998
|
+
0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2999
|
+
box-shadow:
|
|
3000
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
3001
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
2847
3002
|
}
|
|
2848
3003
|
}
|
|
2849
3004
|
.data-\[state\=checked\]\:translate-x-\[calc\(100\%-2px\)\] {
|
|
2850
|
-
&[data-state=
|
|
3005
|
+
&[data-state='checked'] {
|
|
2851
3006
|
--tw-translate-x: calc(100% - 2px);
|
|
2852
3007
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2853
3008
|
}
|
|
2854
3009
|
}
|
|
2855
3010
|
.data-\[state\=checked\]\:border-zinc-900 {
|
|
2856
|
-
&[data-state=
|
|
3011
|
+
&[data-state='checked'] {
|
|
2857
3012
|
border-color: var(--color-zinc-900);
|
|
2858
3013
|
}
|
|
2859
3014
|
}
|
|
2860
3015
|
.data-\[state\=checked\]\:bg-zinc-900 {
|
|
2861
|
-
&[data-state=
|
|
3016
|
+
&[data-state='checked'] {
|
|
2862
3017
|
background-color: var(--color-zinc-900);
|
|
2863
3018
|
}
|
|
2864
3019
|
}
|
|
2865
3020
|
.data-\[state\=checked\]\:text-zinc-50 {
|
|
2866
|
-
&[data-state=
|
|
3021
|
+
&[data-state='checked'] {
|
|
2867
3022
|
color: var(--color-zinc-50);
|
|
2868
3023
|
}
|
|
2869
3024
|
}
|
|
2870
3025
|
.data-\[state\=closed\]\:duration-300 {
|
|
2871
|
-
&[data-state=
|
|
3026
|
+
&[data-state='closed'] {
|
|
2872
3027
|
--tw-duration: 300ms;
|
|
2873
3028
|
transition-duration: 300ms;
|
|
2874
3029
|
}
|
|
2875
3030
|
}
|
|
2876
3031
|
.data-\[state\=closed\]\:animate-out {
|
|
2877
|
-
&[data-state=
|
|
3032
|
+
&[data-state='closed'] {
|
|
2878
3033
|
animation-name: exit;
|
|
2879
3034
|
animation-duration: 150ms;
|
|
2880
3035
|
--tw-exit-opacity: initial;
|
|
@@ -2885,43 +3040,43 @@
|
|
|
2885
3040
|
}
|
|
2886
3041
|
}
|
|
2887
3042
|
.data-\[state\=closed\]\:duration-300 {
|
|
2888
|
-
&[data-state=
|
|
3043
|
+
&[data-state='closed'] {
|
|
2889
3044
|
animation-duration: 300ms;
|
|
2890
3045
|
}
|
|
2891
3046
|
}
|
|
2892
3047
|
.data-\[state\=closed\]\:fade-out-0 {
|
|
2893
|
-
&[data-state=
|
|
3048
|
+
&[data-state='closed'] {
|
|
2894
3049
|
--tw-exit-opacity: 0;
|
|
2895
3050
|
}
|
|
2896
3051
|
}
|
|
2897
3052
|
.data-\[state\=closed\]\:slide-out-to-bottom {
|
|
2898
|
-
&[data-state=
|
|
3053
|
+
&[data-state='closed'] {
|
|
2899
3054
|
--tw-exit-translate-y: 100%;
|
|
2900
3055
|
}
|
|
2901
3056
|
}
|
|
2902
3057
|
.data-\[state\=closed\]\:slide-out-to-left {
|
|
2903
|
-
&[data-state=
|
|
3058
|
+
&[data-state='closed'] {
|
|
2904
3059
|
--tw-exit-translate-x: -100%;
|
|
2905
3060
|
}
|
|
2906
3061
|
}
|
|
2907
3062
|
.data-\[state\=closed\]\:slide-out-to-right {
|
|
2908
|
-
&[data-state=
|
|
3063
|
+
&[data-state='closed'] {
|
|
2909
3064
|
--tw-exit-translate-x: 100%;
|
|
2910
3065
|
}
|
|
2911
3066
|
}
|
|
2912
3067
|
.data-\[state\=closed\]\:slide-out-to-top {
|
|
2913
|
-
&[data-state=
|
|
3068
|
+
&[data-state='closed'] {
|
|
2914
3069
|
--tw-exit-translate-y: -100%;
|
|
2915
3070
|
}
|
|
2916
3071
|
}
|
|
2917
3072
|
.data-\[state\=closed\]\:zoom-out-95 {
|
|
2918
|
-
&[data-state=
|
|
2919
|
-
--tw-exit-scale: .95;
|
|
3073
|
+
&[data-state='closed'] {
|
|
3074
|
+
--tw-exit-scale: 0.95;
|
|
2920
3075
|
}
|
|
2921
3076
|
}
|
|
2922
3077
|
.group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:animate-out {
|
|
2923
|
-
&:is(:where(.group\/navigation-menu)[data-viewport=
|
|
2924
|
-
&[data-state=
|
|
3078
|
+
&:is(:where(.group\/navigation-menu)[data-viewport='false'] *) {
|
|
3079
|
+
&[data-state='closed'] {
|
|
2925
3080
|
animation-name: exit;
|
|
2926
3081
|
animation-duration: 150ms;
|
|
2927
3082
|
--tw-exit-opacity: initial;
|
|
@@ -2933,21 +3088,21 @@
|
|
|
2933
3088
|
}
|
|
2934
3089
|
}
|
|
2935
3090
|
.group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:fade-out-0 {
|
|
2936
|
-
&:is(:where(.group\/navigation-menu)[data-viewport=
|
|
2937
|
-
&[data-state=
|
|
3091
|
+
&:is(:where(.group\/navigation-menu)[data-viewport='false'] *) {
|
|
3092
|
+
&[data-state='closed'] {
|
|
2938
3093
|
--tw-exit-opacity: 0;
|
|
2939
3094
|
}
|
|
2940
3095
|
}
|
|
2941
3096
|
}
|
|
2942
3097
|
.group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:zoom-out-95 {
|
|
2943
|
-
&:is(:where(.group\/navigation-menu)[data-viewport=
|
|
2944
|
-
&[data-state=
|
|
2945
|
-
--tw-exit-scale: .95;
|
|
3098
|
+
&:is(:where(.group\/navigation-menu)[data-viewport='false'] *) {
|
|
3099
|
+
&[data-state='closed'] {
|
|
3100
|
+
--tw-exit-scale: 0.95;
|
|
2946
3101
|
}
|
|
2947
3102
|
}
|
|
2948
3103
|
}
|
|
2949
3104
|
.data-\[state\=hidden\]\:animate-out {
|
|
2950
|
-
&[data-state=
|
|
3105
|
+
&[data-state='hidden'] {
|
|
2951
3106
|
animation-name: exit;
|
|
2952
3107
|
animation-duration: 150ms;
|
|
2953
3108
|
--tw-exit-opacity: initial;
|
|
@@ -2958,48 +3113,48 @@
|
|
|
2958
3113
|
}
|
|
2959
3114
|
}
|
|
2960
3115
|
.data-\[state\=hidden\]\:fade-out {
|
|
2961
|
-
&[data-state=
|
|
3116
|
+
&[data-state='hidden'] {
|
|
2962
3117
|
--tw-exit-opacity: 0;
|
|
2963
3118
|
}
|
|
2964
3119
|
}
|
|
2965
3120
|
.data-\[state\=on\]\:bg-zinc-100 {
|
|
2966
|
-
&[data-state=
|
|
3121
|
+
&[data-state='on'] {
|
|
2967
3122
|
background-color: var(--color-zinc-100);
|
|
2968
3123
|
}
|
|
2969
3124
|
}
|
|
2970
3125
|
.data-\[state\=on\]\:text-zinc-900 {
|
|
2971
|
-
&[data-state=
|
|
3126
|
+
&[data-state='on'] {
|
|
2972
3127
|
color: var(--color-zinc-900);
|
|
2973
3128
|
}
|
|
2974
3129
|
}
|
|
2975
3130
|
.data-\[state\=open\]\:bg-zinc-100 {
|
|
2976
|
-
&[data-state=
|
|
3131
|
+
&[data-state='open'] {
|
|
2977
3132
|
background-color: var(--color-zinc-100);
|
|
2978
3133
|
}
|
|
2979
3134
|
}
|
|
2980
3135
|
.data-\[state\=open\]\:bg-zinc-100\/50 {
|
|
2981
|
-
&[data-state=
|
|
3136
|
+
&[data-state='open'] {
|
|
2982
3137
|
background-color: color-mix(in oklab, var(--color-zinc-100) 50%, transparent);
|
|
2983
3138
|
}
|
|
2984
3139
|
}
|
|
2985
3140
|
.data-\[state\=open\]\:text-zinc-500 {
|
|
2986
|
-
&[data-state=
|
|
3141
|
+
&[data-state='open'] {
|
|
2987
3142
|
color: var(--color-zinc-500);
|
|
2988
3143
|
}
|
|
2989
3144
|
}
|
|
2990
3145
|
.data-\[state\=open\]\:text-zinc-900 {
|
|
2991
|
-
&[data-state=
|
|
3146
|
+
&[data-state='open'] {
|
|
2992
3147
|
color: var(--color-zinc-900);
|
|
2993
3148
|
}
|
|
2994
3149
|
}
|
|
2995
3150
|
.data-\[state\=open\]\:duration-500 {
|
|
2996
|
-
&[data-state=
|
|
3151
|
+
&[data-state='open'] {
|
|
2997
3152
|
--tw-duration: 500ms;
|
|
2998
3153
|
transition-duration: 500ms;
|
|
2999
3154
|
}
|
|
3000
3155
|
}
|
|
3001
3156
|
.data-\[state\=open\]\:animate-in {
|
|
3002
|
-
&[data-state=
|
|
3157
|
+
&[data-state='open'] {
|
|
3003
3158
|
animation-name: enter;
|
|
3004
3159
|
animation-duration: 150ms;
|
|
3005
3160
|
--tw-enter-opacity: initial;
|
|
@@ -3010,48 +3165,48 @@
|
|
|
3010
3165
|
}
|
|
3011
3166
|
}
|
|
3012
3167
|
.data-\[state\=open\]\:duration-500 {
|
|
3013
|
-
&[data-state=
|
|
3168
|
+
&[data-state='open'] {
|
|
3014
3169
|
animation-duration: 500ms;
|
|
3015
3170
|
}
|
|
3016
3171
|
}
|
|
3017
3172
|
.data-\[state\=open\]\:fade-in-0 {
|
|
3018
|
-
&[data-state=
|
|
3173
|
+
&[data-state='open'] {
|
|
3019
3174
|
--tw-enter-opacity: 0;
|
|
3020
3175
|
}
|
|
3021
3176
|
}
|
|
3022
3177
|
.data-\[state\=open\]\:slide-in-from-bottom {
|
|
3023
|
-
&[data-state=
|
|
3178
|
+
&[data-state='open'] {
|
|
3024
3179
|
--tw-enter-translate-y: 100%;
|
|
3025
3180
|
}
|
|
3026
3181
|
}
|
|
3027
3182
|
.data-\[state\=open\]\:slide-in-from-left {
|
|
3028
|
-
&[data-state=
|
|
3183
|
+
&[data-state='open'] {
|
|
3029
3184
|
--tw-enter-translate-x: -100%;
|
|
3030
3185
|
}
|
|
3031
3186
|
}
|
|
3032
3187
|
.data-\[state\=open\]\:slide-in-from-right {
|
|
3033
|
-
&[data-state=
|
|
3188
|
+
&[data-state='open'] {
|
|
3034
3189
|
--tw-enter-translate-x: 100%;
|
|
3035
3190
|
}
|
|
3036
3191
|
}
|
|
3037
3192
|
.data-\[state\=open\]\:slide-in-from-top {
|
|
3038
|
-
&[data-state=
|
|
3193
|
+
&[data-state='open'] {
|
|
3039
3194
|
--tw-enter-translate-y: -100%;
|
|
3040
3195
|
}
|
|
3041
3196
|
}
|
|
3042
3197
|
.data-\[state\=open\]\:zoom-in-90 {
|
|
3043
|
-
&[data-state=
|
|
3044
|
-
--tw-enter-scale: .9;
|
|
3198
|
+
&[data-state='open'] {
|
|
3199
|
+
--tw-enter-scale: 0.9;
|
|
3045
3200
|
}
|
|
3046
3201
|
}
|
|
3047
3202
|
.data-\[state\=open\]\:zoom-in-95 {
|
|
3048
|
-
&[data-state=
|
|
3049
|
-
--tw-enter-scale: .95;
|
|
3203
|
+
&[data-state='open'] {
|
|
3204
|
+
--tw-enter-scale: 0.95;
|
|
3050
3205
|
}
|
|
3051
3206
|
}
|
|
3052
3207
|
.group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:animate-in {
|
|
3053
|
-
&:is(:where(.group\/navigation-menu)[data-viewport=
|
|
3054
|
-
&[data-state=
|
|
3208
|
+
&:is(:where(.group\/navigation-menu)[data-viewport='false'] *) {
|
|
3209
|
+
&[data-state='open'] {
|
|
3055
3210
|
animation-name: enter;
|
|
3056
3211
|
animation-duration: 150ms;
|
|
3057
3212
|
--tw-enter-opacity: initial;
|
|
@@ -3063,21 +3218,21 @@
|
|
|
3063
3218
|
}
|
|
3064
3219
|
}
|
|
3065
3220
|
.group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:fade-in-0 {
|
|
3066
|
-
&:is(:where(.group\/navigation-menu)[data-viewport=
|
|
3067
|
-
&[data-state=
|
|
3221
|
+
&:is(:where(.group\/navigation-menu)[data-viewport='false'] *) {
|
|
3222
|
+
&[data-state='open'] {
|
|
3068
3223
|
--tw-enter-opacity: 0;
|
|
3069
3224
|
}
|
|
3070
3225
|
}
|
|
3071
3226
|
}
|
|
3072
3227
|
.group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:zoom-in-95 {
|
|
3073
|
-
&:is(:where(.group\/navigation-menu)[data-viewport=
|
|
3074
|
-
&[data-state=
|
|
3075
|
-
--tw-enter-scale: .95;
|
|
3228
|
+
&:is(:where(.group\/navigation-menu)[data-viewport='false'] *) {
|
|
3229
|
+
&[data-state='open'] {
|
|
3230
|
+
--tw-enter-scale: 0.95;
|
|
3076
3231
|
}
|
|
3077
3232
|
}
|
|
3078
3233
|
}
|
|
3079
3234
|
.data-\[state\=open\]\:hover\:bg-zinc-100 {
|
|
3080
|
-
&[data-state=
|
|
3235
|
+
&[data-state='open'] {
|
|
3081
3236
|
&:hover {
|
|
3082
3237
|
@media (hover: hover) {
|
|
3083
3238
|
background-color: var(--color-zinc-100);
|
|
@@ -3086,30 +3241,30 @@
|
|
|
3086
3241
|
}
|
|
3087
3242
|
}
|
|
3088
3243
|
.data-\[state\=open\]\:focus\:bg-zinc-100 {
|
|
3089
|
-
&[data-state=
|
|
3244
|
+
&[data-state='open'] {
|
|
3090
3245
|
&:focus {
|
|
3091
3246
|
background-color: var(--color-zinc-100);
|
|
3092
3247
|
}
|
|
3093
3248
|
}
|
|
3094
3249
|
}
|
|
3095
3250
|
.data-\[state\=selected\]\:bg-zinc-100 {
|
|
3096
|
-
&[data-state=
|
|
3251
|
+
&[data-state='selected'] {
|
|
3097
3252
|
background-color: var(--color-zinc-100);
|
|
3098
3253
|
}
|
|
3099
3254
|
}
|
|
3100
3255
|
.data-\[state\=unchecked\]\:translate-x-0 {
|
|
3101
|
-
&[data-state=
|
|
3256
|
+
&[data-state='unchecked'] {
|
|
3102
3257
|
--tw-translate-x: calc(var(--spacing) * 0);
|
|
3103
3258
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3104
3259
|
}
|
|
3105
3260
|
}
|
|
3106
3261
|
.data-\[state\=unchecked\]\:bg-zinc-200 {
|
|
3107
|
-
&[data-state=
|
|
3262
|
+
&[data-state='unchecked'] {
|
|
3108
3263
|
background-color: var(--color-zinc-200);
|
|
3109
3264
|
}
|
|
3110
3265
|
}
|
|
3111
3266
|
.data-\[state\=visible\]\:animate-in {
|
|
3112
|
-
&[data-state=
|
|
3267
|
+
&[data-state='visible'] {
|
|
3113
3268
|
animation-name: enter;
|
|
3114
3269
|
animation-duration: 150ms;
|
|
3115
3270
|
--tw-enter-opacity: initial;
|
|
@@ -3120,43 +3275,45 @@
|
|
|
3120
3275
|
}
|
|
3121
3276
|
}
|
|
3122
3277
|
.data-\[state\=visible\]\:fade-in {
|
|
3123
|
-
&[data-state=
|
|
3278
|
+
&[data-state='visible'] {
|
|
3124
3279
|
--tw-enter-opacity: 0;
|
|
3125
3280
|
}
|
|
3126
3281
|
}
|
|
3127
3282
|
.data-\[variant\=destructive\]\:text-red-500 {
|
|
3128
|
-
&[data-variant=
|
|
3283
|
+
&[data-variant='destructive'] {
|
|
3129
3284
|
color: var(--color-red-500);
|
|
3130
3285
|
}
|
|
3131
3286
|
}
|
|
3132
3287
|
.data-\[variant\=destructive\]\:focus\:bg-red-500\/10 {
|
|
3133
|
-
&[data-variant=
|
|
3288
|
+
&[data-variant='destructive'] {
|
|
3134
3289
|
&:focus {
|
|
3135
3290
|
background-color: color-mix(in oklab, var(--color-red-500) 10%, transparent);
|
|
3136
3291
|
}
|
|
3137
3292
|
}
|
|
3138
3293
|
}
|
|
3139
3294
|
.data-\[variant\=destructive\]\:focus\:text-red-500 {
|
|
3140
|
-
&[data-variant=
|
|
3295
|
+
&[data-variant='destructive'] {
|
|
3141
3296
|
&:focus {
|
|
3142
3297
|
color: var(--color-red-500);
|
|
3143
3298
|
}
|
|
3144
3299
|
}
|
|
3145
3300
|
}
|
|
3146
3301
|
.data-\[variant\=outline\]\:border-l-0 {
|
|
3147
|
-
&[data-variant=
|
|
3302
|
+
&[data-variant='outline'] {
|
|
3148
3303
|
border-left-style: var(--tw-border-style);
|
|
3149
3304
|
border-left-width: 0px;
|
|
3150
3305
|
}
|
|
3151
3306
|
}
|
|
3152
3307
|
.data-\[variant\=outline\]\:shadow-xs {
|
|
3153
|
-
&[data-variant=
|
|
3308
|
+
&[data-variant='outline'] {
|
|
3154
3309
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
3155
|
-
box-shadow:
|
|
3310
|
+
box-shadow:
|
|
3311
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
3312
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
3156
3313
|
}
|
|
3157
3314
|
}
|
|
3158
3315
|
.data-\[variant\=outline\]\:first\:border-l {
|
|
3159
|
-
&[data-variant=
|
|
3316
|
+
&[data-variant='outline'] {
|
|
3160
3317
|
&:first-child {
|
|
3161
3318
|
border-left-style: var(--tw-border-style);
|
|
3162
3319
|
border-left-width: 1px;
|
|
@@ -3164,107 +3321,107 @@
|
|
|
3164
3321
|
}
|
|
3165
3322
|
}
|
|
3166
3323
|
.data-\[vaul-drawer-direction\=bottom\]\:inset-x-0 {
|
|
3167
|
-
&[data-vaul-drawer-direction=
|
|
3324
|
+
&[data-vaul-drawer-direction='bottom'] {
|
|
3168
3325
|
inset-inline: calc(var(--spacing) * 0);
|
|
3169
3326
|
}
|
|
3170
3327
|
}
|
|
3171
3328
|
.data-\[vaul-drawer-direction\=bottom\]\:bottom-0 {
|
|
3172
|
-
&[data-vaul-drawer-direction=
|
|
3329
|
+
&[data-vaul-drawer-direction='bottom'] {
|
|
3173
3330
|
bottom: calc(var(--spacing) * 0);
|
|
3174
3331
|
}
|
|
3175
3332
|
}
|
|
3176
3333
|
.data-\[vaul-drawer-direction\=bottom\]\:mt-24 {
|
|
3177
|
-
&[data-vaul-drawer-direction=
|
|
3334
|
+
&[data-vaul-drawer-direction='bottom'] {
|
|
3178
3335
|
margin-top: calc(var(--spacing) * 24);
|
|
3179
3336
|
}
|
|
3180
3337
|
}
|
|
3181
3338
|
.data-\[vaul-drawer-direction\=bottom\]\:max-h-\[80vh\] {
|
|
3182
|
-
&[data-vaul-drawer-direction=
|
|
3339
|
+
&[data-vaul-drawer-direction='bottom'] {
|
|
3183
3340
|
max-height: 80vh;
|
|
3184
3341
|
}
|
|
3185
3342
|
}
|
|
3186
3343
|
.data-\[vaul-drawer-direction\=bottom\]\:rounded-t-lg {
|
|
3187
|
-
&[data-vaul-drawer-direction=
|
|
3344
|
+
&[data-vaul-drawer-direction='bottom'] {
|
|
3188
3345
|
border-top-left-radius: var(--radius-lg);
|
|
3189
3346
|
border-top-right-radius: var(--radius-lg);
|
|
3190
3347
|
}
|
|
3191
3348
|
}
|
|
3192
3349
|
.data-\[vaul-drawer-direction\=bottom\]\:border-t {
|
|
3193
|
-
&[data-vaul-drawer-direction=
|
|
3350
|
+
&[data-vaul-drawer-direction='bottom'] {
|
|
3194
3351
|
border-top-style: var(--tw-border-style);
|
|
3195
3352
|
border-top-width: 1px;
|
|
3196
3353
|
}
|
|
3197
3354
|
}
|
|
3198
3355
|
.data-\[vaul-drawer-direction\=left\]\:inset-y-0 {
|
|
3199
|
-
&[data-vaul-drawer-direction=
|
|
3356
|
+
&[data-vaul-drawer-direction='left'] {
|
|
3200
3357
|
inset-block: calc(var(--spacing) * 0);
|
|
3201
3358
|
}
|
|
3202
3359
|
}
|
|
3203
3360
|
.data-\[vaul-drawer-direction\=left\]\:left-0 {
|
|
3204
|
-
&[data-vaul-drawer-direction=
|
|
3361
|
+
&[data-vaul-drawer-direction='left'] {
|
|
3205
3362
|
left: calc(var(--spacing) * 0);
|
|
3206
3363
|
}
|
|
3207
3364
|
}
|
|
3208
3365
|
.data-\[vaul-drawer-direction\=left\]\:w-3\/4 {
|
|
3209
|
-
&[data-vaul-drawer-direction=
|
|
3210
|
-
width: calc(3/4 * 100%);
|
|
3366
|
+
&[data-vaul-drawer-direction='left'] {
|
|
3367
|
+
width: calc(3 / 4 * 100%);
|
|
3211
3368
|
}
|
|
3212
3369
|
}
|
|
3213
3370
|
.data-\[vaul-drawer-direction\=left\]\:border-r {
|
|
3214
|
-
&[data-vaul-drawer-direction=
|
|
3371
|
+
&[data-vaul-drawer-direction='left'] {
|
|
3215
3372
|
border-right-style: var(--tw-border-style);
|
|
3216
3373
|
border-right-width: 1px;
|
|
3217
3374
|
}
|
|
3218
3375
|
}
|
|
3219
3376
|
.data-\[vaul-drawer-direction\=right\]\:inset-y-0 {
|
|
3220
|
-
&[data-vaul-drawer-direction=
|
|
3377
|
+
&[data-vaul-drawer-direction='right'] {
|
|
3221
3378
|
inset-block: calc(var(--spacing) * 0);
|
|
3222
3379
|
}
|
|
3223
3380
|
}
|
|
3224
3381
|
.data-\[vaul-drawer-direction\=right\]\:right-0 {
|
|
3225
|
-
&[data-vaul-drawer-direction=
|
|
3382
|
+
&[data-vaul-drawer-direction='right'] {
|
|
3226
3383
|
right: calc(var(--spacing) * 0);
|
|
3227
3384
|
}
|
|
3228
3385
|
}
|
|
3229
3386
|
.data-\[vaul-drawer-direction\=right\]\:w-3\/4 {
|
|
3230
|
-
&[data-vaul-drawer-direction=
|
|
3231
|
-
width: calc(3/4 * 100%);
|
|
3387
|
+
&[data-vaul-drawer-direction='right'] {
|
|
3388
|
+
width: calc(3 / 4 * 100%);
|
|
3232
3389
|
}
|
|
3233
3390
|
}
|
|
3234
3391
|
.data-\[vaul-drawer-direction\=right\]\:border-l {
|
|
3235
|
-
&[data-vaul-drawer-direction=
|
|
3392
|
+
&[data-vaul-drawer-direction='right'] {
|
|
3236
3393
|
border-left-style: var(--tw-border-style);
|
|
3237
3394
|
border-left-width: 1px;
|
|
3238
3395
|
}
|
|
3239
3396
|
}
|
|
3240
3397
|
.data-\[vaul-drawer-direction\=top\]\:inset-x-0 {
|
|
3241
|
-
&[data-vaul-drawer-direction=
|
|
3398
|
+
&[data-vaul-drawer-direction='top'] {
|
|
3242
3399
|
inset-inline: calc(var(--spacing) * 0);
|
|
3243
3400
|
}
|
|
3244
3401
|
}
|
|
3245
3402
|
.data-\[vaul-drawer-direction\=top\]\:top-0 {
|
|
3246
|
-
&[data-vaul-drawer-direction=
|
|
3403
|
+
&[data-vaul-drawer-direction='top'] {
|
|
3247
3404
|
top: calc(var(--spacing) * 0);
|
|
3248
3405
|
}
|
|
3249
3406
|
}
|
|
3250
3407
|
.data-\[vaul-drawer-direction\=top\]\:mb-24 {
|
|
3251
|
-
&[data-vaul-drawer-direction=
|
|
3408
|
+
&[data-vaul-drawer-direction='top'] {
|
|
3252
3409
|
margin-bottom: calc(var(--spacing) * 24);
|
|
3253
3410
|
}
|
|
3254
3411
|
}
|
|
3255
3412
|
.data-\[vaul-drawer-direction\=top\]\:max-h-\[80vh\] {
|
|
3256
|
-
&[data-vaul-drawer-direction=
|
|
3413
|
+
&[data-vaul-drawer-direction='top'] {
|
|
3257
3414
|
max-height: 80vh;
|
|
3258
3415
|
}
|
|
3259
3416
|
}
|
|
3260
3417
|
.data-\[vaul-drawer-direction\=top\]\:rounded-b-lg {
|
|
3261
|
-
&[data-vaul-drawer-direction=
|
|
3418
|
+
&[data-vaul-drawer-direction='top'] {
|
|
3262
3419
|
border-bottom-right-radius: var(--radius-lg);
|
|
3263
3420
|
border-bottom-left-radius: var(--radius-lg);
|
|
3264
3421
|
}
|
|
3265
3422
|
}
|
|
3266
3423
|
.data-\[vaul-drawer-direction\=top\]\:border-b {
|
|
3267
|
-
&[data-vaul-drawer-direction=
|
|
3424
|
+
&[data-vaul-drawer-direction='top'] {
|
|
3268
3425
|
border-bottom-style: var(--tw-border-style);
|
|
3269
3426
|
border-bottom-width: 1px;
|
|
3270
3427
|
}
|
|
@@ -3351,14 +3508,14 @@
|
|
|
3351
3508
|
}
|
|
3352
3509
|
}
|
|
3353
3510
|
.data-\[vaul-drawer-direction\=left\]\:sm\:max-w-sm {
|
|
3354
|
-
&[data-vaul-drawer-direction=
|
|
3511
|
+
&[data-vaul-drawer-direction='left'] {
|
|
3355
3512
|
@media (width >= 40rem) {
|
|
3356
3513
|
max-width: var(--container-sm);
|
|
3357
3514
|
}
|
|
3358
3515
|
}
|
|
3359
3516
|
}
|
|
3360
3517
|
.data-\[vaul-drawer-direction\=right\]\:sm\:max-w-sm {
|
|
3361
|
-
&[data-vaul-drawer-direction=
|
|
3518
|
+
&[data-vaul-drawer-direction='right'] {
|
|
3362
3519
|
@media (width >= 40rem) {
|
|
3363
3520
|
max-width: var(--container-sm);
|
|
3364
3521
|
}
|
|
@@ -3429,61 +3586,61 @@
|
|
|
3429
3586
|
@media (width >= 64rem) {
|
|
3430
3587
|
font-size: 1.125rem;
|
|
3431
3588
|
line-height: 1.7777778;
|
|
3432
|
-
:where(p):not(:where([class~=
|
|
3589
|
+
:where(p):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3433
3590
|
margin-top: 1.3333333em;
|
|
3434
3591
|
margin-bottom: 1.3333333em;
|
|
3435
3592
|
}
|
|
3436
|
-
:where([class~=
|
|
3593
|
+
:where([class~='lead']):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3437
3594
|
font-size: 1.2222222em;
|
|
3438
3595
|
line-height: 1.4545455;
|
|
3439
3596
|
margin-top: 1.0909091em;
|
|
3440
3597
|
margin-bottom: 1.0909091em;
|
|
3441
3598
|
}
|
|
3442
|
-
:where(blockquote):not(:where([class~=
|
|
3599
|
+
:where(blockquote):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3443
3600
|
margin-top: 1.6666667em;
|
|
3444
3601
|
margin-bottom: 1.6666667em;
|
|
3445
3602
|
padding-inline-start: 1em;
|
|
3446
3603
|
}
|
|
3447
|
-
:where(h1):not(:where([class~=
|
|
3604
|
+
:where(h1):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3448
3605
|
font-size: 2.6666667em;
|
|
3449
3606
|
margin-top: 0;
|
|
3450
3607
|
margin-bottom: 0.8333333em;
|
|
3451
3608
|
line-height: 1;
|
|
3452
3609
|
}
|
|
3453
|
-
:where(h2):not(:where([class~=
|
|
3610
|
+
:where(h2):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3454
3611
|
font-size: 1.6666667em;
|
|
3455
3612
|
margin-top: 1.8666667em;
|
|
3456
3613
|
margin-bottom: 1.0666667em;
|
|
3457
3614
|
line-height: 1.3333333;
|
|
3458
3615
|
}
|
|
3459
|
-
:where(h3):not(:where([class~=
|
|
3616
|
+
:where(h3):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3460
3617
|
font-size: 1.3333333em;
|
|
3461
3618
|
margin-top: 1.6666667em;
|
|
3462
3619
|
margin-bottom: 0.6666667em;
|
|
3463
3620
|
line-height: 1.5;
|
|
3464
3621
|
}
|
|
3465
|
-
:where(h4):not(:where([class~=
|
|
3622
|
+
:where(h4):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3466
3623
|
margin-top: 1.7777778em;
|
|
3467
3624
|
margin-bottom: 0.4444444em;
|
|
3468
3625
|
line-height: 1.5555556;
|
|
3469
3626
|
}
|
|
3470
|
-
:where(img):not(:where([class~=
|
|
3627
|
+
:where(img):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3471
3628
|
margin-top: 1.7777778em;
|
|
3472
3629
|
margin-bottom: 1.7777778em;
|
|
3473
3630
|
}
|
|
3474
|
-
:where(picture):not(:where([class~=
|
|
3631
|
+
:where(picture):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3475
3632
|
margin-top: 1.7777778em;
|
|
3476
3633
|
margin-bottom: 1.7777778em;
|
|
3477
3634
|
}
|
|
3478
|
-
:where(picture > img):not(:where([class~=
|
|
3635
|
+
:where(picture > img):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3479
3636
|
margin-top: 0;
|
|
3480
3637
|
margin-bottom: 0;
|
|
3481
3638
|
}
|
|
3482
|
-
:where(video):not(:where([class~=
|
|
3639
|
+
:where(video):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3483
3640
|
margin-top: 1.7777778em;
|
|
3484
3641
|
margin-bottom: 1.7777778em;
|
|
3485
3642
|
}
|
|
3486
|
-
:where(kbd):not(:where([class~=
|
|
3643
|
+
:where(kbd):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3487
3644
|
font-size: 0.8888889em;
|
|
3488
3645
|
border-radius: 0.3125rem;
|
|
3489
3646
|
padding-top: 0.2222222em;
|
|
@@ -3491,16 +3648,16 @@
|
|
|
3491
3648
|
padding-bottom: 0.2222222em;
|
|
3492
3649
|
padding-inline-start: 0.4444444em;
|
|
3493
3650
|
}
|
|
3494
|
-
:where(code):not(:where([class~=
|
|
3651
|
+
:where(code):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3495
3652
|
font-size: 0.8888889em;
|
|
3496
3653
|
}
|
|
3497
|
-
:where(h2 code):not(:where([class~=
|
|
3654
|
+
:where(h2 code):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3498
3655
|
font-size: 0.8666667em;
|
|
3499
3656
|
}
|
|
3500
|
-
:where(h3 code):not(:where([class~=
|
|
3657
|
+
:where(h3 code):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3501
3658
|
font-size: 0.875em;
|
|
3502
3659
|
}
|
|
3503
|
-
:where(pre):not(:where([class~=
|
|
3660
|
+
:where(pre):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3504
3661
|
font-size: 0.8888889em;
|
|
3505
3662
|
line-height: 1.75;
|
|
3506
3663
|
margin-top: 2em;
|
|
@@ -3511,117 +3668,133 @@
|
|
|
3511
3668
|
padding-bottom: 1em;
|
|
3512
3669
|
padding-inline-start: 1.5em;
|
|
3513
3670
|
}
|
|
3514
|
-
:where(ol):not(:where([class~=
|
|
3671
|
+
:where(ol):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3515
3672
|
margin-top: 1.3333333em;
|
|
3516
3673
|
margin-bottom: 1.3333333em;
|
|
3517
3674
|
padding-inline-start: 1.5555556em;
|
|
3518
3675
|
}
|
|
3519
|
-
:where(ul):not(:where([class~=
|
|
3676
|
+
:where(ul):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3520
3677
|
margin-top: 1.3333333em;
|
|
3521
3678
|
margin-bottom: 1.3333333em;
|
|
3522
3679
|
padding-inline-start: 1.5555556em;
|
|
3523
3680
|
}
|
|
3524
|
-
:where(li):not(:where([class~=
|
|
3681
|
+
:where(li):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3525
3682
|
margin-top: 0.6666667em;
|
|
3526
3683
|
margin-bottom: 0.6666667em;
|
|
3527
3684
|
}
|
|
3528
|
-
:where(ol > li):not(:where([class~=
|
|
3685
|
+
:where(ol > li):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3529
3686
|
padding-inline-start: 0.4444444em;
|
|
3530
3687
|
}
|
|
3531
|
-
:where(ul > li):not(:where([class~=
|
|
3688
|
+
:where(ul > li):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3532
3689
|
padding-inline-start: 0.4444444em;
|
|
3533
3690
|
}
|
|
3534
|
-
:where(.lg\:prose-lg > ul > li p):not(:where([class~=
|
|
3691
|
+
:where(.lg\:prose-lg > ul > li p):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3535
3692
|
margin-top: 0.8888889em;
|
|
3536
3693
|
margin-bottom: 0.8888889em;
|
|
3537
3694
|
}
|
|
3538
|
-
:where(.lg\:prose-lg > ul > li > p:first-child):not(
|
|
3695
|
+
:where(.lg\:prose-lg > ul > li > p:first-child):not(
|
|
3696
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
3697
|
+
) {
|
|
3539
3698
|
margin-top: 1.3333333em;
|
|
3540
3699
|
}
|
|
3541
|
-
:where(.lg\:prose-lg > ul > li > p:last-child):not(
|
|
3700
|
+
:where(.lg\:prose-lg > ul > li > p:last-child):not(
|
|
3701
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
3702
|
+
) {
|
|
3542
3703
|
margin-bottom: 1.3333333em;
|
|
3543
3704
|
}
|
|
3544
|
-
:where(.lg\:prose-lg > ol > li > p:first-child):not(
|
|
3705
|
+
:where(.lg\:prose-lg > ol > li > p:first-child):not(
|
|
3706
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
3707
|
+
) {
|
|
3545
3708
|
margin-top: 1.3333333em;
|
|
3546
3709
|
}
|
|
3547
|
-
:where(.lg\:prose-lg > ol > li > p:last-child):not(
|
|
3710
|
+
:where(.lg\:prose-lg > ol > li > p:last-child):not(
|
|
3711
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
3712
|
+
) {
|
|
3548
3713
|
margin-bottom: 1.3333333em;
|
|
3549
3714
|
}
|
|
3550
|
-
:where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=
|
|
3715
|
+
:where(ul ul, ul ol, ol ul, ol ol):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3551
3716
|
margin-top: 0.8888889em;
|
|
3552
3717
|
margin-bottom: 0.8888889em;
|
|
3553
3718
|
}
|
|
3554
|
-
:where(dl):not(:where([class~=
|
|
3719
|
+
:where(dl):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3555
3720
|
margin-top: 1.3333333em;
|
|
3556
3721
|
margin-bottom: 1.3333333em;
|
|
3557
3722
|
}
|
|
3558
|
-
:where(dt):not(:where([class~=
|
|
3723
|
+
:where(dt):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3559
3724
|
margin-top: 1.3333333em;
|
|
3560
3725
|
}
|
|
3561
|
-
:where(dd):not(:where([class~=
|
|
3726
|
+
:where(dd):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3562
3727
|
margin-top: 0.6666667em;
|
|
3563
3728
|
padding-inline-start: 1.5555556em;
|
|
3564
3729
|
}
|
|
3565
|
-
:where(hr):not(:where([class~=
|
|
3730
|
+
:where(hr):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3566
3731
|
margin-top: 3.1111111em;
|
|
3567
3732
|
margin-bottom: 3.1111111em;
|
|
3568
3733
|
}
|
|
3569
|
-
:where(hr + *):not(:where([class~=
|
|
3734
|
+
:where(hr + *):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3570
3735
|
margin-top: 0;
|
|
3571
3736
|
}
|
|
3572
|
-
:where(h2 + *):not(:where([class~=
|
|
3737
|
+
:where(h2 + *):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3573
3738
|
margin-top: 0;
|
|
3574
3739
|
}
|
|
3575
|
-
:where(h3 + *):not(:where([class~=
|
|
3740
|
+
:where(h3 + *):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3576
3741
|
margin-top: 0;
|
|
3577
3742
|
}
|
|
3578
|
-
:where(h4 + *):not(:where([class~=
|
|
3743
|
+
:where(h4 + *):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3579
3744
|
margin-top: 0;
|
|
3580
3745
|
}
|
|
3581
|
-
:where(table):not(:where([class~=
|
|
3746
|
+
:where(table):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3582
3747
|
font-size: 0.8888889em;
|
|
3583
3748
|
line-height: 1.5;
|
|
3584
3749
|
}
|
|
3585
|
-
:where(thead th):not(:where([class~=
|
|
3750
|
+
:where(thead th):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3586
3751
|
padding-inline-end: 0.75em;
|
|
3587
3752
|
padding-bottom: 0.75em;
|
|
3588
3753
|
padding-inline-start: 0.75em;
|
|
3589
3754
|
}
|
|
3590
|
-
:where(thead th:first-child):not(:where([class~=
|
|
3755
|
+
:where(thead th:first-child):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3591
3756
|
padding-inline-start: 0;
|
|
3592
3757
|
}
|
|
3593
|
-
:where(thead th:last-child):not(:where([class~=
|
|
3758
|
+
:where(thead th:last-child):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3594
3759
|
padding-inline-end: 0;
|
|
3595
3760
|
}
|
|
3596
|
-
:where(tbody td, tfoot td):not(:where([class~=
|
|
3761
|
+
:where(tbody td, tfoot td):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3597
3762
|
padding-top: 0.75em;
|
|
3598
3763
|
padding-inline-end: 0.75em;
|
|
3599
3764
|
padding-bottom: 0.75em;
|
|
3600
3765
|
padding-inline-start: 0.75em;
|
|
3601
3766
|
}
|
|
3602
|
-
:where(tbody td:first-child, tfoot td:first-child):not(
|
|
3767
|
+
:where(tbody td:first-child, tfoot td:first-child):not(
|
|
3768
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
3769
|
+
) {
|
|
3603
3770
|
padding-inline-start: 0;
|
|
3604
3771
|
}
|
|
3605
|
-
:where(tbody td:last-child, tfoot td:last-child):not(
|
|
3772
|
+
:where(tbody td:last-child, tfoot td:last-child):not(
|
|
3773
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
3774
|
+
) {
|
|
3606
3775
|
padding-inline-end: 0;
|
|
3607
3776
|
}
|
|
3608
|
-
:where(figure):not(:where([class~=
|
|
3777
|
+
:where(figure):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3609
3778
|
margin-top: 1.7777778em;
|
|
3610
3779
|
margin-bottom: 1.7777778em;
|
|
3611
3780
|
}
|
|
3612
|
-
:where(figure > *):not(:where([class~=
|
|
3781
|
+
:where(figure > *):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3613
3782
|
margin-top: 0;
|
|
3614
3783
|
margin-bottom: 0;
|
|
3615
3784
|
}
|
|
3616
|
-
:where(figcaption):not(:where([class~=
|
|
3785
|
+
:where(figcaption):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
|
|
3617
3786
|
font-size: 0.8888889em;
|
|
3618
3787
|
line-height: 1.5;
|
|
3619
3788
|
margin-top: 1em;
|
|
3620
3789
|
}
|
|
3621
|
-
:where(.lg\:prose-lg > :first-child):not(
|
|
3790
|
+
:where(.lg\:prose-lg > :first-child):not(
|
|
3791
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
3792
|
+
) {
|
|
3622
3793
|
margin-top: 0;
|
|
3623
3794
|
}
|
|
3624
|
-
:where(.lg\:prose-lg > :last-child):not(
|
|
3795
|
+
:where(.lg\:prose-lg > :last-child):not(
|
|
3796
|
+
:where([class~='not-prose'], [class~='not-prose'] *)
|
|
3797
|
+
) {
|
|
3625
3798
|
margin-bottom: 0;
|
|
3626
3799
|
}
|
|
3627
3800
|
}
|
|
@@ -3928,7 +4101,9 @@
|
|
|
3928
4101
|
.dark\:shadow-none {
|
|
3929
4102
|
&:where(.dark, .dark *) {
|
|
3930
4103
|
--tw-shadow: 0 0 #0000;
|
|
3931
|
-
box-shadow:
|
|
4104
|
+
box-shadow:
|
|
4105
|
+
var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow),
|
|
4106
|
+
var(--tw-ring-shadow), var(--tw-shadow);
|
|
3932
4107
|
}
|
|
3933
4108
|
}
|
|
3934
4109
|
.dark\:ring-zinc-300\/50 {
|
|
@@ -3944,8 +4119,14 @@
|
|
|
3944
4119
|
.dark\:backdrop-blur-sm {
|
|
3945
4120
|
&:where(.dark, .dark *) {
|
|
3946
4121
|
--tw-backdrop-blur: blur(var(--blur-sm));
|
|
3947
|
-
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,)
|
|
3948
|
-
|
|
4122
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,)
|
|
4123
|
+
var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,)
|
|
4124
|
+
var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,)
|
|
4125
|
+
var(--tw-backdrop-sepia,);
|
|
4126
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,)
|
|
4127
|
+
var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,)
|
|
4128
|
+
var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,)
|
|
4129
|
+
var(--tw-backdrop-sepia,);
|
|
3949
4130
|
}
|
|
3950
4131
|
}
|
|
3951
4132
|
.dark\:group-hover\:fill-zinc-500 {
|
|
@@ -4177,21 +4358,21 @@
|
|
|
4177
4358
|
}
|
|
4178
4359
|
.dark\:aria-invalid\:border-red-900 {
|
|
4179
4360
|
&:where(.dark, .dark *) {
|
|
4180
|
-
&[aria-invalid=
|
|
4361
|
+
&[aria-invalid='true'] {
|
|
4181
4362
|
border-color: var(--color-red-900);
|
|
4182
4363
|
}
|
|
4183
4364
|
}
|
|
4184
4365
|
}
|
|
4185
4366
|
.dark\:aria-invalid\:ring-red-500\/40 {
|
|
4186
4367
|
&:where(.dark, .dark *) {
|
|
4187
|
-
&[aria-invalid=
|
|
4368
|
+
&[aria-invalid='true'] {
|
|
4188
4369
|
--tw-ring-color: color-mix(in oklab, var(--color-red-500) 40%, transparent);
|
|
4189
4370
|
}
|
|
4190
4371
|
}
|
|
4191
4372
|
}
|
|
4192
4373
|
.dark\:aria-invalid\:ring-red-900\/20 {
|
|
4193
4374
|
&:where(.dark, .dark *) {
|
|
4194
|
-
&[aria-invalid=
|
|
4375
|
+
&[aria-invalid='true'] {
|
|
4195
4376
|
--tw-ring-color: color-mix(in oklab, var(--color-red-900) 20%, transparent);
|
|
4196
4377
|
}
|
|
4197
4378
|
}
|
|
@@ -4199,7 +4380,7 @@
|
|
|
4199
4380
|
.dark\:dark\:aria-invalid\:ring-red-900\/40 {
|
|
4200
4381
|
&:where(.dark, .dark *) {
|
|
4201
4382
|
&:where(.dark, .dark *) {
|
|
4202
|
-
&[aria-invalid=
|
|
4383
|
+
&[aria-invalid='true'] {
|
|
4203
4384
|
--tw-ring-color: color-mix(in oklab, var(--color-red-900) 40%, transparent);
|
|
4204
4385
|
}
|
|
4205
4386
|
}
|
|
@@ -4207,21 +4388,21 @@
|
|
|
4207
4388
|
}
|
|
4208
4389
|
.dark\:data-\[active\=true\]\:bg-zinc-800\/50 {
|
|
4209
4390
|
&:where(.dark, .dark *) {
|
|
4210
|
-
&[data-active=
|
|
4391
|
+
&[data-active='true'] {
|
|
4211
4392
|
background-color: color-mix(in oklab, var(--color-zinc-800) 50%, transparent);
|
|
4212
4393
|
}
|
|
4213
4394
|
}
|
|
4214
4395
|
}
|
|
4215
4396
|
.dark\:data-\[active\=true\]\:text-zinc-50 {
|
|
4216
4397
|
&:where(.dark, .dark *) {
|
|
4217
|
-
&[data-active=
|
|
4398
|
+
&[data-active='true'] {
|
|
4218
4399
|
color: var(--color-zinc-50);
|
|
4219
4400
|
}
|
|
4220
4401
|
}
|
|
4221
4402
|
}
|
|
4222
4403
|
.dark\:data-\[active\=true\]\:hover\:bg-zinc-800 {
|
|
4223
4404
|
&:where(.dark, .dark *) {
|
|
4224
|
-
&[data-active=
|
|
4405
|
+
&[data-active='true'] {
|
|
4225
4406
|
&:hover {
|
|
4226
4407
|
@media (hover: hover) {
|
|
4227
4408
|
background-color: var(--color-zinc-800);
|
|
@@ -4232,7 +4413,7 @@
|
|
|
4232
4413
|
}
|
|
4233
4414
|
.dark\:data-\[active\=true\]\:focus\:bg-zinc-800 {
|
|
4234
4415
|
&:where(.dark, .dark *) {
|
|
4235
|
-
&[data-active=
|
|
4416
|
+
&[data-active='true'] {
|
|
4236
4417
|
&:focus {
|
|
4237
4418
|
background-color: var(--color-zinc-800);
|
|
4238
4419
|
}
|
|
@@ -4248,14 +4429,14 @@
|
|
|
4248
4429
|
}
|
|
4249
4430
|
.dark\:data-\[selected\=true\]\:bg-zinc-800 {
|
|
4250
4431
|
&:where(.dark, .dark *) {
|
|
4251
|
-
&[data-selected=
|
|
4432
|
+
&[data-selected='true'] {
|
|
4252
4433
|
background-color: var(--color-zinc-800);
|
|
4253
4434
|
}
|
|
4254
4435
|
}
|
|
4255
4436
|
}
|
|
4256
4437
|
.dark\:data-\[selected\=true\]\:text-zinc-50 {
|
|
4257
4438
|
&:where(.dark, .dark *) {
|
|
4258
|
-
&[data-selected=
|
|
4439
|
+
&[data-selected='true'] {
|
|
4259
4440
|
color: var(--color-zinc-50);
|
|
4260
4441
|
}
|
|
4261
4442
|
}
|
|
@@ -4263,7 +4444,7 @@
|
|
|
4263
4444
|
.dark\:\*\:data-\[slot\=alert-description\]\:text-red-900\/90 {
|
|
4264
4445
|
&:where(.dark, .dark *) {
|
|
4265
4446
|
:is(& > *) {
|
|
4266
|
-
&[data-slot=
|
|
4447
|
+
&[data-slot='alert-description'] {
|
|
4267
4448
|
color: color-mix(in oklab, var(--color-red-900) 90%, transparent);
|
|
4268
4449
|
}
|
|
4269
4450
|
}
|
|
@@ -4272,7 +4453,7 @@
|
|
|
4272
4453
|
.dark\:dark\:data-\[state\=active\]\:border-zinc-800 {
|
|
4273
4454
|
&:where(.dark, .dark *) {
|
|
4274
4455
|
&:where(.dark, .dark *) {
|
|
4275
|
-
&[data-state=
|
|
4456
|
+
&[data-state='active'] {
|
|
4276
4457
|
border-color: var(--color-zinc-800);
|
|
4277
4458
|
}
|
|
4278
4459
|
}
|
|
@@ -4280,7 +4461,7 @@
|
|
|
4280
4461
|
}
|
|
4281
4462
|
.dark\:data-\[state\=active\]\:border-zinc-200 {
|
|
4282
4463
|
&:where(.dark, .dark *) {
|
|
4283
|
-
&[data-state=
|
|
4464
|
+
&[data-state='active'] {
|
|
4284
4465
|
border-color: var(--color-zinc-200);
|
|
4285
4466
|
}
|
|
4286
4467
|
}
|
|
@@ -4288,7 +4469,7 @@
|
|
|
4288
4469
|
.dark\:dark\:data-\[state\=active\]\:bg-zinc-800\/30 {
|
|
4289
4470
|
&:where(.dark, .dark *) {
|
|
4290
4471
|
&:where(.dark, .dark *) {
|
|
4291
|
-
&[data-state=
|
|
4472
|
+
&[data-state='active'] {
|
|
4292
4473
|
background-color: color-mix(in oklab, var(--color-zinc-800) 30%, transparent);
|
|
4293
4474
|
}
|
|
4294
4475
|
}
|
|
@@ -4296,14 +4477,14 @@
|
|
|
4296
4477
|
}
|
|
4297
4478
|
.dark\:data-\[state\=active\]\:bg-zinc-200\/30 {
|
|
4298
4479
|
&:where(.dark, .dark *) {
|
|
4299
|
-
&[data-state=
|
|
4480
|
+
&[data-state='active'] {
|
|
4300
4481
|
background-color: color-mix(in oklab, var(--color-zinc-200) 30%, transparent);
|
|
4301
4482
|
}
|
|
4302
4483
|
}
|
|
4303
4484
|
}
|
|
4304
4485
|
.dark\:data-\[state\=active\]\:bg-zinc-950 {
|
|
4305
4486
|
&:where(.dark, .dark *) {
|
|
4306
|
-
&[data-state=
|
|
4487
|
+
&[data-state='active'] {
|
|
4307
4488
|
background-color: var(--color-zinc-950);
|
|
4308
4489
|
}
|
|
4309
4490
|
}
|
|
@@ -4311,7 +4492,7 @@
|
|
|
4311
4492
|
.dark\:dark\:data-\[state\=active\]\:text-zinc-50 {
|
|
4312
4493
|
&:where(.dark, .dark *) {
|
|
4313
4494
|
&:where(.dark, .dark *) {
|
|
4314
|
-
&[data-state=
|
|
4495
|
+
&[data-state='active'] {
|
|
4315
4496
|
color: var(--color-zinc-50);
|
|
4316
4497
|
}
|
|
4317
4498
|
}
|
|
@@ -4319,14 +4500,14 @@
|
|
|
4319
4500
|
}
|
|
4320
4501
|
.dark\:data-\[state\=active\]\:text-zinc-950 {
|
|
4321
4502
|
&:where(.dark, .dark *) {
|
|
4322
|
-
&[data-state=
|
|
4503
|
+
&[data-state='active'] {
|
|
4323
4504
|
color: var(--color-zinc-950);
|
|
4324
4505
|
}
|
|
4325
4506
|
}
|
|
4326
4507
|
}
|
|
4327
4508
|
.dark\:data-\[state\=checked\]\:border-zinc-50 {
|
|
4328
4509
|
&:where(.dark, .dark *) {
|
|
4329
|
-
&[data-state=
|
|
4510
|
+
&[data-state='checked'] {
|
|
4330
4511
|
border-color: var(--color-zinc-50);
|
|
4331
4512
|
}
|
|
4332
4513
|
}
|
|
@@ -4334,7 +4515,7 @@
|
|
|
4334
4515
|
.dark\:dark\:data-\[state\=checked\]\:bg-zinc-50 {
|
|
4335
4516
|
&:where(.dark, .dark *) {
|
|
4336
4517
|
&:where(.dark, .dark *) {
|
|
4337
|
-
&[data-state=
|
|
4518
|
+
&[data-state='checked'] {
|
|
4338
4519
|
background-color: var(--color-zinc-50);
|
|
4339
4520
|
}
|
|
4340
4521
|
}
|
|
@@ -4343,7 +4524,7 @@
|
|
|
4343
4524
|
.dark\:dark\:data-\[state\=checked\]\:bg-zinc-900 {
|
|
4344
4525
|
&:where(.dark, .dark *) {
|
|
4345
4526
|
&:where(.dark, .dark *) {
|
|
4346
|
-
&[data-state=
|
|
4527
|
+
&[data-state='checked'] {
|
|
4347
4528
|
background-color: var(--color-zinc-900);
|
|
4348
4529
|
}
|
|
4349
4530
|
}
|
|
@@ -4351,70 +4532,70 @@
|
|
|
4351
4532
|
}
|
|
4352
4533
|
.dark\:data-\[state\=checked\]\:bg-zinc-50 {
|
|
4353
4534
|
&:where(.dark, .dark *) {
|
|
4354
|
-
&[data-state=
|
|
4535
|
+
&[data-state='checked'] {
|
|
4355
4536
|
background-color: var(--color-zinc-50);
|
|
4356
4537
|
}
|
|
4357
4538
|
}
|
|
4358
4539
|
}
|
|
4359
4540
|
.dark\:data-\[state\=checked\]\:bg-zinc-900 {
|
|
4360
4541
|
&:where(.dark, .dark *) {
|
|
4361
|
-
&[data-state=
|
|
4542
|
+
&[data-state='checked'] {
|
|
4362
4543
|
background-color: var(--color-zinc-900);
|
|
4363
4544
|
}
|
|
4364
4545
|
}
|
|
4365
4546
|
}
|
|
4366
4547
|
.dark\:data-\[state\=checked\]\:text-zinc-900 {
|
|
4367
4548
|
&:where(.dark, .dark *) {
|
|
4368
|
-
&[data-state=
|
|
4549
|
+
&[data-state='checked'] {
|
|
4369
4550
|
color: var(--color-zinc-900);
|
|
4370
4551
|
}
|
|
4371
4552
|
}
|
|
4372
4553
|
}
|
|
4373
4554
|
.dark\:data-\[state\=on\]\:bg-zinc-800 {
|
|
4374
4555
|
&:where(.dark, .dark *) {
|
|
4375
|
-
&[data-state=
|
|
4556
|
+
&[data-state='on'] {
|
|
4376
4557
|
background-color: var(--color-zinc-800);
|
|
4377
4558
|
}
|
|
4378
4559
|
}
|
|
4379
4560
|
}
|
|
4380
4561
|
.dark\:data-\[state\=on\]\:text-zinc-50 {
|
|
4381
4562
|
&:where(.dark, .dark *) {
|
|
4382
|
-
&[data-state=
|
|
4563
|
+
&[data-state='on'] {
|
|
4383
4564
|
color: var(--color-zinc-50);
|
|
4384
4565
|
}
|
|
4385
4566
|
}
|
|
4386
4567
|
}
|
|
4387
4568
|
.dark\:data-\[state\=open\]\:bg-zinc-800 {
|
|
4388
4569
|
&:where(.dark, .dark *) {
|
|
4389
|
-
&[data-state=
|
|
4570
|
+
&[data-state='open'] {
|
|
4390
4571
|
background-color: var(--color-zinc-800);
|
|
4391
4572
|
}
|
|
4392
4573
|
}
|
|
4393
4574
|
}
|
|
4394
4575
|
.dark\:data-\[state\=open\]\:bg-zinc-800\/50 {
|
|
4395
4576
|
&:where(.dark, .dark *) {
|
|
4396
|
-
&[data-state=
|
|
4577
|
+
&[data-state='open'] {
|
|
4397
4578
|
background-color: color-mix(in oklab, var(--color-zinc-800) 50%, transparent);
|
|
4398
4579
|
}
|
|
4399
4580
|
}
|
|
4400
4581
|
}
|
|
4401
4582
|
.dark\:data-\[state\=open\]\:text-zinc-50 {
|
|
4402
4583
|
&:where(.dark, .dark *) {
|
|
4403
|
-
&[data-state=
|
|
4584
|
+
&[data-state='open'] {
|
|
4404
4585
|
color: var(--color-zinc-50);
|
|
4405
4586
|
}
|
|
4406
4587
|
}
|
|
4407
4588
|
}
|
|
4408
4589
|
.dark\:data-\[state\=open\]\:text-zinc-400 {
|
|
4409
4590
|
&:where(.dark, .dark *) {
|
|
4410
|
-
&[data-state=
|
|
4591
|
+
&[data-state='open'] {
|
|
4411
4592
|
color: var(--color-zinc-400);
|
|
4412
4593
|
}
|
|
4413
4594
|
}
|
|
4414
4595
|
}
|
|
4415
4596
|
.dark\:data-\[state\=open\]\:hover\:bg-zinc-800 {
|
|
4416
4597
|
&:where(.dark, .dark *) {
|
|
4417
|
-
&[data-state=
|
|
4598
|
+
&[data-state='open'] {
|
|
4418
4599
|
&:hover {
|
|
4419
4600
|
@media (hover: hover) {
|
|
4420
4601
|
background-color: var(--color-zinc-800);
|
|
@@ -4425,7 +4606,7 @@
|
|
|
4425
4606
|
}
|
|
4426
4607
|
.dark\:data-\[state\=open\]\:focus\:bg-zinc-800 {
|
|
4427
4608
|
&:where(.dark, .dark *) {
|
|
4428
|
-
&[data-state=
|
|
4609
|
+
&[data-state='open'] {
|
|
4429
4610
|
&:focus {
|
|
4430
4611
|
background-color: var(--color-zinc-800);
|
|
4431
4612
|
}
|
|
@@ -4434,7 +4615,7 @@
|
|
|
4434
4615
|
}
|
|
4435
4616
|
.dark\:data-\[state\=selected\]\:bg-zinc-800 {
|
|
4436
4617
|
&:where(.dark, .dark *) {
|
|
4437
|
-
&[data-state=
|
|
4618
|
+
&[data-state='selected'] {
|
|
4438
4619
|
background-color: var(--color-zinc-800);
|
|
4439
4620
|
}
|
|
4440
4621
|
}
|
|
@@ -4442,7 +4623,7 @@
|
|
|
4442
4623
|
.dark\:dark\:data-\[state\=unchecked\]\:bg-zinc-50 {
|
|
4443
4624
|
&:where(.dark, .dark *) {
|
|
4444
4625
|
&:where(.dark, .dark *) {
|
|
4445
|
-
&[data-state=
|
|
4626
|
+
&[data-state='unchecked'] {
|
|
4446
4627
|
background-color: var(--color-zinc-50);
|
|
4447
4628
|
}
|
|
4448
4629
|
}
|
|
@@ -4451,7 +4632,7 @@
|
|
|
4451
4632
|
.dark\:dark\:data-\[state\=unchecked\]\:bg-zinc-800\/80 {
|
|
4452
4633
|
&:where(.dark, .dark *) {
|
|
4453
4634
|
&:where(.dark, .dark *) {
|
|
4454
|
-
&[data-state=
|
|
4635
|
+
&[data-state='unchecked'] {
|
|
4455
4636
|
background-color: color-mix(in oklab, var(--color-zinc-800) 80%, transparent);
|
|
4456
4637
|
}
|
|
4457
4638
|
}
|
|
@@ -4459,28 +4640,28 @@
|
|
|
4459
4640
|
}
|
|
4460
4641
|
.dark\:data-\[state\=unchecked\]\:bg-zinc-200\/80 {
|
|
4461
4642
|
&:where(.dark, .dark *) {
|
|
4462
|
-
&[data-state=
|
|
4643
|
+
&[data-state='unchecked'] {
|
|
4463
4644
|
background-color: color-mix(in oklab, var(--color-zinc-200) 80%, transparent);
|
|
4464
4645
|
}
|
|
4465
4646
|
}
|
|
4466
4647
|
}
|
|
4467
4648
|
.dark\:data-\[state\=unchecked\]\:bg-zinc-800 {
|
|
4468
4649
|
&:where(.dark, .dark *) {
|
|
4469
|
-
&[data-state=
|
|
4650
|
+
&[data-state='unchecked'] {
|
|
4470
4651
|
background-color: var(--color-zinc-800);
|
|
4471
4652
|
}
|
|
4472
4653
|
}
|
|
4473
4654
|
}
|
|
4474
4655
|
.dark\:data-\[state\=unchecked\]\:bg-zinc-950 {
|
|
4475
4656
|
&:where(.dark, .dark *) {
|
|
4476
|
-
&[data-state=
|
|
4657
|
+
&[data-state='unchecked'] {
|
|
4477
4658
|
background-color: var(--color-zinc-950);
|
|
4478
4659
|
}
|
|
4479
4660
|
}
|
|
4480
4661
|
}
|
|
4481
4662
|
.dark\:data-\[variant\=destructive\]\:text-red-900 {
|
|
4482
4663
|
&:where(.dark, .dark *) {
|
|
4483
|
-
&[data-variant=
|
|
4664
|
+
&[data-variant='destructive'] {
|
|
4484
4665
|
color: var(--color-red-900);
|
|
4485
4666
|
}
|
|
4486
4667
|
}
|
|
@@ -4488,7 +4669,7 @@
|
|
|
4488
4669
|
.dark\:dark\:data-\[variant\=destructive\]\:focus\:bg-red-900\/20 {
|
|
4489
4670
|
&:where(.dark, .dark *) {
|
|
4490
4671
|
&:where(.dark, .dark *) {
|
|
4491
|
-
&[data-variant=
|
|
4672
|
+
&[data-variant='destructive'] {
|
|
4492
4673
|
&:focus {
|
|
4493
4674
|
background-color: color-mix(in oklab, var(--color-red-900) 20%, transparent);
|
|
4494
4675
|
}
|
|
@@ -4498,7 +4679,7 @@
|
|
|
4498
4679
|
}
|
|
4499
4680
|
.dark\:data-\[variant\=destructive\]\:focus\:bg-red-500\/20 {
|
|
4500
4681
|
&:where(.dark, .dark *) {
|
|
4501
|
-
&[data-variant=
|
|
4682
|
+
&[data-variant='destructive'] {
|
|
4502
4683
|
&:focus {
|
|
4503
4684
|
background-color: color-mix(in oklab, var(--color-red-500) 20%, transparent);
|
|
4504
4685
|
}
|
|
@@ -4507,7 +4688,7 @@
|
|
|
4507
4688
|
}
|
|
4508
4689
|
.dark\:data-\[variant\=destructive\]\:focus\:bg-red-900\/10 {
|
|
4509
4690
|
&:where(.dark, .dark *) {
|
|
4510
|
-
&[data-variant=
|
|
4691
|
+
&[data-variant='destructive'] {
|
|
4511
4692
|
&:focus {
|
|
4512
4693
|
background-color: color-mix(in oklab, var(--color-red-900) 10%, transparent);
|
|
4513
4694
|
}
|
|
@@ -4516,7 +4697,7 @@
|
|
|
4516
4697
|
}
|
|
4517
4698
|
.dark\:data-\[variant\=destructive\]\:focus\:text-red-900 {
|
|
4518
4699
|
&:where(.dark, .dark *) {
|
|
4519
|
-
&[data-variant=
|
|
4700
|
+
&[data-variant='destructive'] {
|
|
4520
4701
|
&:focus {
|
|
4521
4702
|
color: var(--color-red-900);
|
|
4522
4703
|
}
|
|
@@ -4563,7 +4744,7 @@
|
|
|
4563
4744
|
}
|
|
4564
4745
|
}
|
|
4565
4746
|
.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 {
|
|
4566
|
-
& [cmdk-group]:not([hidden]) ~[cmdk-group] {
|
|
4747
|
+
& [cmdk-group]:not([hidden]) ~ [cmdk-group] {
|
|
4567
4748
|
padding-top: calc(var(--spacing) * 0);
|
|
4568
4749
|
}
|
|
4569
4750
|
}
|
|
@@ -4649,7 +4830,7 @@
|
|
|
4649
4830
|
}
|
|
4650
4831
|
}
|
|
4651
4832
|
.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0 {
|
|
4652
|
-
&:has([role=checkbox]) {
|
|
4833
|
+
&:has([role='checkbox']) {
|
|
4653
4834
|
padding-right: calc(var(--spacing) * 0);
|
|
4654
4835
|
}
|
|
4655
4836
|
}
|
|
@@ -4691,33 +4872,33 @@
|
|
|
4691
4872
|
}
|
|
4692
4873
|
}
|
|
4693
4874
|
.\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\] {
|
|
4694
|
-
|
|
4875
|
+
& > [role='checkbox'] {
|
|
4695
4876
|
--tw-translate-y: 2px;
|
|
4696
4877
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
4697
4878
|
}
|
|
4698
4879
|
}
|
|
4699
4880
|
.\[\&\>button\]\:bg-accent {
|
|
4700
|
-
|
|
4881
|
+
& > button {
|
|
4701
4882
|
background-color: oklch(0.562 0.2175 20.33);
|
|
4702
4883
|
}
|
|
4703
4884
|
}
|
|
4704
4885
|
.\[\&\>button\]\:bg-primary {
|
|
4705
|
-
|
|
4886
|
+
& > button {
|
|
4706
4887
|
background-color: oklch(0.29 0.1173 259.84);
|
|
4707
4888
|
}
|
|
4708
4889
|
}
|
|
4709
4890
|
.\[\&\>button\]\:bg-transparent {
|
|
4710
|
-
|
|
4891
|
+
& > button {
|
|
4711
4892
|
background-color: transparent;
|
|
4712
4893
|
}
|
|
4713
4894
|
}
|
|
4714
4895
|
.\[\&\>button\]\:\!text-foreground {
|
|
4715
|
-
|
|
4896
|
+
& > button {
|
|
4716
4897
|
color: var(--foreground) !important;
|
|
4717
4898
|
}
|
|
4718
4899
|
}
|
|
4719
4900
|
.\[\&\>button\]\:hover\:bg-primary {
|
|
4720
|
-
|
|
4901
|
+
& > button {
|
|
4721
4902
|
&:hover {
|
|
4722
4903
|
@media (hover: hover) {
|
|
4723
4904
|
background-color: oklch(0.29 0.1173 259.84);
|
|
@@ -4726,7 +4907,7 @@
|
|
|
4726
4907
|
}
|
|
4727
4908
|
}
|
|
4728
4909
|
.\[\&\>button\]\:hover\:bg-transparent {
|
|
4729
|
-
|
|
4910
|
+
& > button {
|
|
4730
4911
|
&:hover {
|
|
4731
4912
|
@media (hover: hover) {
|
|
4732
4913
|
background-color: transparent;
|
|
@@ -4735,7 +4916,7 @@
|
|
|
4735
4916
|
}
|
|
4736
4917
|
}
|
|
4737
4918
|
.\[\&\>button\]\:hover\:\!text-foreground {
|
|
4738
|
-
|
|
4919
|
+
& > button {
|
|
4739
4920
|
&:hover {
|
|
4740
4921
|
@media (hover: hover) {
|
|
4741
4922
|
color: var(--foreground) !important;
|
|
@@ -4744,41 +4925,41 @@
|
|
|
4744
4925
|
}
|
|
4745
4926
|
}
|
|
4746
4927
|
.\[\&\>svg\]\:pointer-events-none {
|
|
4747
|
-
|
|
4928
|
+
& > svg {
|
|
4748
4929
|
pointer-events: none;
|
|
4749
4930
|
}
|
|
4750
4931
|
}
|
|
4751
4932
|
.\[\&\>svg\]\:size-3 {
|
|
4752
|
-
|
|
4933
|
+
& > svg {
|
|
4753
4934
|
width: calc(var(--spacing) * 3);
|
|
4754
4935
|
height: calc(var(--spacing) * 3);
|
|
4755
4936
|
}
|
|
4756
4937
|
}
|
|
4757
4938
|
.\[\&\>svg\]\:size-3\.5 {
|
|
4758
|
-
|
|
4939
|
+
& > svg {
|
|
4759
4940
|
width: calc(var(--spacing) * 3.5);
|
|
4760
4941
|
height: calc(var(--spacing) * 3.5);
|
|
4761
4942
|
}
|
|
4762
4943
|
}
|
|
4763
4944
|
.\[\&\>svg\]\:size-4 {
|
|
4764
|
-
|
|
4945
|
+
& > svg {
|
|
4765
4946
|
width: calc(var(--spacing) * 4);
|
|
4766
4947
|
height: calc(var(--spacing) * 4);
|
|
4767
4948
|
}
|
|
4768
4949
|
}
|
|
4769
4950
|
.\[\&\>svg\]\:translate-y-0\.5 {
|
|
4770
|
-
|
|
4951
|
+
& > svg {
|
|
4771
4952
|
--tw-translate-y: calc(var(--spacing) * 0.5);
|
|
4772
4953
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
4773
4954
|
}
|
|
4774
4955
|
}
|
|
4775
4956
|
.\[\&\>svg\]\:text-current {
|
|
4776
|
-
|
|
4957
|
+
& > svg {
|
|
4777
4958
|
color: currentColor;
|
|
4778
4959
|
}
|
|
4779
4960
|
}
|
|
4780
4961
|
.\[\&\>tr\]\:last\:border-b-0 {
|
|
4781
|
-
|
|
4962
|
+
& > tr {
|
|
4782
4963
|
&:last-child {
|
|
4783
4964
|
border-bottom-style: var(--tw-border-style);
|
|
4784
4965
|
border-bottom-width: 0px;
|
|
@@ -4786,18 +4967,18 @@
|
|
|
4786
4967
|
}
|
|
4787
4968
|
}
|
|
4788
4969
|
.\[\&\[data-panel-group-direction\=vertical\]\>div\]\:rotate-90 {
|
|
4789
|
-
&[data-panel-group-direction=vertical]>div {
|
|
4970
|
+
&[data-panel-group-direction='vertical'] > div {
|
|
4790
4971
|
rotate: 90deg;
|
|
4791
4972
|
}
|
|
4792
4973
|
}
|
|
4793
4974
|
.\[\&\[data-state\=open\]\>svg\]\:rotate-180 {
|
|
4794
|
-
&[data-state=open]>svg {
|
|
4975
|
+
&[data-state='open'] > svg {
|
|
4795
4976
|
rotate: 180deg;
|
|
4796
4977
|
}
|
|
4797
4978
|
}
|
|
4798
4979
|
.dark\:\[\@supports\(backdrop-filter\:blur\(0\)\)\]\:bg-slate-900\/75 {
|
|
4799
4980
|
&:where(.dark, .dark *) {
|
|
4800
|
-
@supports (backdrop-filter:blur(0)) {
|
|
4981
|
+
@supports (backdrop-filter: blur(0)) {
|
|
4801
4982
|
background-color: color-mix(in oklab, var(--color-slate-900) 75%, transparent);
|
|
4802
4983
|
}
|
|
4803
4984
|
}
|
|
@@ -4931,241 +5112,245 @@
|
|
|
4931
5112
|
@keyframes enter {
|
|
4932
5113
|
from {
|
|
4933
5114
|
opacity: var(--tw-enter-opacity, 1);
|
|
4934
|
-
transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0)
|
|
5115
|
+
transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0)
|
|
5116
|
+
scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1))
|
|
5117
|
+
rotate(var(--tw-enter-rotate, 0));
|
|
4935
5118
|
}
|
|
4936
5119
|
}
|
|
4937
5120
|
@keyframes exit {
|
|
4938
5121
|
to {
|
|
4939
5122
|
opacity: var(--tw-exit-opacity, 1);
|
|
4940
|
-
transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0)
|
|
5123
|
+
transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0)
|
|
5124
|
+
scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1))
|
|
5125
|
+
rotate(var(--tw-exit-rotate, 0));
|
|
4941
5126
|
}
|
|
4942
5127
|
}
|
|
4943
5128
|
@property --tw-translate-x {
|
|
4944
|
-
syntax:
|
|
5129
|
+
syntax: '*';
|
|
4945
5130
|
inherits: false;
|
|
4946
5131
|
initial-value: 0;
|
|
4947
5132
|
}
|
|
4948
5133
|
@property --tw-translate-y {
|
|
4949
|
-
syntax:
|
|
5134
|
+
syntax: '*';
|
|
4950
5135
|
inherits: false;
|
|
4951
5136
|
initial-value: 0;
|
|
4952
5137
|
}
|
|
4953
5138
|
@property --tw-translate-z {
|
|
4954
|
-
syntax:
|
|
5139
|
+
syntax: '*';
|
|
4955
5140
|
inherits: false;
|
|
4956
5141
|
initial-value: 0;
|
|
4957
5142
|
}
|
|
4958
5143
|
@property --tw-scale-x {
|
|
4959
|
-
syntax:
|
|
5144
|
+
syntax: '*';
|
|
4960
5145
|
inherits: false;
|
|
4961
5146
|
initial-value: 1;
|
|
4962
5147
|
}
|
|
4963
5148
|
@property --tw-scale-y {
|
|
4964
|
-
syntax:
|
|
5149
|
+
syntax: '*';
|
|
4965
5150
|
inherits: false;
|
|
4966
5151
|
initial-value: 1;
|
|
4967
5152
|
}
|
|
4968
5153
|
@property --tw-scale-z {
|
|
4969
|
-
syntax:
|
|
5154
|
+
syntax: '*';
|
|
4970
5155
|
inherits: false;
|
|
4971
5156
|
initial-value: 1;
|
|
4972
5157
|
}
|
|
4973
5158
|
@property --tw-rotate-x {
|
|
4974
|
-
syntax:
|
|
5159
|
+
syntax: '*';
|
|
4975
5160
|
inherits: false;
|
|
4976
5161
|
initial-value: rotateX(0);
|
|
4977
5162
|
}
|
|
4978
5163
|
@property --tw-rotate-y {
|
|
4979
|
-
syntax:
|
|
5164
|
+
syntax: '*';
|
|
4980
5165
|
inherits: false;
|
|
4981
5166
|
initial-value: rotateY(0);
|
|
4982
5167
|
}
|
|
4983
5168
|
@property --tw-rotate-z {
|
|
4984
|
-
syntax:
|
|
5169
|
+
syntax: '*';
|
|
4985
5170
|
inherits: false;
|
|
4986
5171
|
initial-value: rotateZ(0);
|
|
4987
5172
|
}
|
|
4988
5173
|
@property --tw-skew-x {
|
|
4989
|
-
syntax:
|
|
5174
|
+
syntax: '*';
|
|
4990
5175
|
inherits: false;
|
|
4991
5176
|
initial-value: skewX(0);
|
|
4992
5177
|
}
|
|
4993
5178
|
@property --tw-skew-y {
|
|
4994
|
-
syntax:
|
|
5179
|
+
syntax: '*';
|
|
4995
5180
|
inherits: false;
|
|
4996
5181
|
initial-value: skewY(0);
|
|
4997
5182
|
}
|
|
4998
5183
|
@property --tw-space-y-reverse {
|
|
4999
|
-
syntax:
|
|
5184
|
+
syntax: '*';
|
|
5000
5185
|
inherits: false;
|
|
5001
5186
|
initial-value: 0;
|
|
5002
5187
|
}
|
|
5003
5188
|
@property --tw-border-style {
|
|
5004
|
-
syntax:
|
|
5189
|
+
syntax: '*';
|
|
5005
5190
|
inherits: false;
|
|
5006
5191
|
initial-value: solid;
|
|
5007
5192
|
}
|
|
5008
5193
|
@property --tw-gradient-position {
|
|
5009
|
-
syntax:
|
|
5194
|
+
syntax: '*';
|
|
5010
5195
|
inherits: false;
|
|
5011
5196
|
}
|
|
5012
5197
|
@property --tw-gradient-from {
|
|
5013
|
-
syntax:
|
|
5198
|
+
syntax: '<color>';
|
|
5014
5199
|
inherits: false;
|
|
5015
5200
|
initial-value: #0000;
|
|
5016
5201
|
}
|
|
5017
5202
|
@property --tw-gradient-via {
|
|
5018
|
-
syntax:
|
|
5203
|
+
syntax: '<color>';
|
|
5019
5204
|
inherits: false;
|
|
5020
5205
|
initial-value: #0000;
|
|
5021
5206
|
}
|
|
5022
5207
|
@property --tw-gradient-to {
|
|
5023
|
-
syntax:
|
|
5208
|
+
syntax: '<color>';
|
|
5024
5209
|
inherits: false;
|
|
5025
5210
|
initial-value: #0000;
|
|
5026
5211
|
}
|
|
5027
5212
|
@property --tw-gradient-stops {
|
|
5028
|
-
syntax:
|
|
5213
|
+
syntax: '*';
|
|
5029
5214
|
inherits: false;
|
|
5030
5215
|
}
|
|
5031
5216
|
@property --tw-gradient-via-stops {
|
|
5032
|
-
syntax:
|
|
5217
|
+
syntax: '*';
|
|
5033
5218
|
inherits: false;
|
|
5034
5219
|
}
|
|
5035
5220
|
@property --tw-gradient-from-position {
|
|
5036
|
-
syntax:
|
|
5221
|
+
syntax: '<length-percentage>';
|
|
5037
5222
|
inherits: false;
|
|
5038
5223
|
initial-value: 0%;
|
|
5039
5224
|
}
|
|
5040
5225
|
@property --tw-gradient-via-position {
|
|
5041
|
-
syntax:
|
|
5226
|
+
syntax: '<length-percentage>';
|
|
5042
5227
|
inherits: false;
|
|
5043
5228
|
initial-value: 50%;
|
|
5044
5229
|
}
|
|
5045
5230
|
@property --tw-gradient-to-position {
|
|
5046
|
-
syntax:
|
|
5231
|
+
syntax: '<length-percentage>';
|
|
5047
5232
|
inherits: false;
|
|
5048
5233
|
initial-value: 100%;
|
|
5049
5234
|
}
|
|
5050
5235
|
@property --tw-leading {
|
|
5051
|
-
syntax:
|
|
5236
|
+
syntax: '*';
|
|
5052
5237
|
inherits: false;
|
|
5053
5238
|
}
|
|
5054
5239
|
@property --tw-font-weight {
|
|
5055
|
-
syntax:
|
|
5240
|
+
syntax: '*';
|
|
5056
5241
|
inherits: false;
|
|
5057
5242
|
}
|
|
5058
5243
|
@property --tw-tracking {
|
|
5059
|
-
syntax:
|
|
5244
|
+
syntax: '*';
|
|
5060
5245
|
inherits: false;
|
|
5061
5246
|
}
|
|
5062
5247
|
@property --tw-shadow {
|
|
5063
|
-
syntax:
|
|
5248
|
+
syntax: '*';
|
|
5064
5249
|
inherits: false;
|
|
5065
5250
|
initial-value: 0 0 #0000;
|
|
5066
5251
|
}
|
|
5067
5252
|
@property --tw-shadow-color {
|
|
5068
|
-
syntax:
|
|
5253
|
+
syntax: '*';
|
|
5069
5254
|
inherits: false;
|
|
5070
5255
|
}
|
|
5071
5256
|
@property --tw-inset-shadow {
|
|
5072
|
-
syntax:
|
|
5257
|
+
syntax: '*';
|
|
5073
5258
|
inherits: false;
|
|
5074
5259
|
initial-value: 0 0 #0000;
|
|
5075
5260
|
}
|
|
5076
5261
|
@property --tw-inset-shadow-color {
|
|
5077
|
-
syntax:
|
|
5262
|
+
syntax: '*';
|
|
5078
5263
|
inherits: false;
|
|
5079
5264
|
}
|
|
5080
5265
|
@property --tw-ring-color {
|
|
5081
|
-
syntax:
|
|
5266
|
+
syntax: '*';
|
|
5082
5267
|
inherits: false;
|
|
5083
5268
|
}
|
|
5084
5269
|
@property --tw-ring-shadow {
|
|
5085
|
-
syntax:
|
|
5270
|
+
syntax: '*';
|
|
5086
5271
|
inherits: false;
|
|
5087
5272
|
initial-value: 0 0 #0000;
|
|
5088
5273
|
}
|
|
5089
5274
|
@property --tw-inset-ring-color {
|
|
5090
|
-
syntax:
|
|
5275
|
+
syntax: '*';
|
|
5091
5276
|
inherits: false;
|
|
5092
5277
|
}
|
|
5093
5278
|
@property --tw-inset-ring-shadow {
|
|
5094
|
-
syntax:
|
|
5279
|
+
syntax: '*';
|
|
5095
5280
|
inherits: false;
|
|
5096
5281
|
initial-value: 0 0 #0000;
|
|
5097
5282
|
}
|
|
5098
5283
|
@property --tw-ring-inset {
|
|
5099
|
-
syntax:
|
|
5284
|
+
syntax: '*';
|
|
5100
5285
|
inherits: false;
|
|
5101
5286
|
}
|
|
5102
5287
|
@property --tw-ring-offset-width {
|
|
5103
|
-
syntax:
|
|
5288
|
+
syntax: '<length>';
|
|
5104
5289
|
inherits: false;
|
|
5105
5290
|
initial-value: 0px;
|
|
5106
5291
|
}
|
|
5107
5292
|
@property --tw-ring-offset-color {
|
|
5108
|
-
syntax:
|
|
5293
|
+
syntax: '*';
|
|
5109
5294
|
inherits: false;
|
|
5110
5295
|
initial-value: #fff;
|
|
5111
5296
|
}
|
|
5112
5297
|
@property --tw-ring-offset-shadow {
|
|
5113
|
-
syntax:
|
|
5298
|
+
syntax: '*';
|
|
5114
5299
|
inherits: false;
|
|
5115
5300
|
initial-value: 0 0 #0000;
|
|
5116
5301
|
}
|
|
5117
5302
|
@property --tw-outline-style {
|
|
5118
|
-
syntax:
|
|
5303
|
+
syntax: '*';
|
|
5119
5304
|
inherits: false;
|
|
5120
5305
|
initial-value: solid;
|
|
5121
5306
|
}
|
|
5122
5307
|
@property --tw-backdrop-blur {
|
|
5123
|
-
syntax:
|
|
5308
|
+
syntax: '*';
|
|
5124
5309
|
inherits: false;
|
|
5125
5310
|
}
|
|
5126
5311
|
@property --tw-backdrop-brightness {
|
|
5127
|
-
syntax:
|
|
5312
|
+
syntax: '*';
|
|
5128
5313
|
inherits: false;
|
|
5129
5314
|
}
|
|
5130
5315
|
@property --tw-backdrop-contrast {
|
|
5131
|
-
syntax:
|
|
5316
|
+
syntax: '*';
|
|
5132
5317
|
inherits: false;
|
|
5133
5318
|
}
|
|
5134
5319
|
@property --tw-backdrop-grayscale {
|
|
5135
|
-
syntax:
|
|
5320
|
+
syntax: '*';
|
|
5136
5321
|
inherits: false;
|
|
5137
5322
|
}
|
|
5138
5323
|
@property --tw-backdrop-hue-rotate {
|
|
5139
|
-
syntax:
|
|
5324
|
+
syntax: '*';
|
|
5140
5325
|
inherits: false;
|
|
5141
5326
|
}
|
|
5142
5327
|
@property --tw-backdrop-invert {
|
|
5143
|
-
syntax:
|
|
5328
|
+
syntax: '*';
|
|
5144
5329
|
inherits: false;
|
|
5145
5330
|
}
|
|
5146
5331
|
@property --tw-backdrop-opacity {
|
|
5147
|
-
syntax:
|
|
5332
|
+
syntax: '*';
|
|
5148
5333
|
inherits: false;
|
|
5149
5334
|
}
|
|
5150
5335
|
@property --tw-backdrop-saturate {
|
|
5151
|
-
syntax:
|
|
5336
|
+
syntax: '*';
|
|
5152
5337
|
inherits: false;
|
|
5153
5338
|
}
|
|
5154
5339
|
@property --tw-backdrop-sepia {
|
|
5155
|
-
syntax:
|
|
5340
|
+
syntax: '*';
|
|
5156
5341
|
inherits: false;
|
|
5157
5342
|
}
|
|
5158
5343
|
@property --tw-duration {
|
|
5159
|
-
syntax:
|
|
5344
|
+
syntax: '*';
|
|
5160
5345
|
inherits: false;
|
|
5161
5346
|
}
|
|
5162
5347
|
@property --tw-ease {
|
|
5163
|
-
syntax:
|
|
5348
|
+
syntax: '*';
|
|
5164
5349
|
inherits: false;
|
|
5165
5350
|
}
|
|
5166
5351
|
@property --tw-content {
|
|
5167
|
-
syntax:
|
|
5168
|
-
initial-value:
|
|
5352
|
+
syntax: '*';
|
|
5353
|
+
initial-value: '';
|
|
5169
5354
|
inherits: false;
|
|
5170
5355
|
}
|
|
5171
5356
|
@keyframes pulse {
|