@inklu/docs 0.2.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/CHANGELOG.md +7 -0
- package/components.json +25 -0
- package/dist/index.d.mts +271 -0
- package/dist/index.d.ts +271 -0
- package/dist/index.js +2455 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +2368 -0
- package/dist/index.mjs.map +1 -0
- package/dist/shiki.d.mts +10 -0
- package/dist/shiki.d.ts +10 -0
- package/dist/shiki.js +47 -0
- package/dist/shiki.js.map +1 -0
- package/dist/shiki.mjs +22 -0
- package/dist/shiki.mjs.map +1 -0
- package/dist/styles.css +2556 -0
- package/package.json +55 -0
- package/src/components/content/changelog-content.tsx +119 -0
- package/src/components/content/code-block.tsx +111 -0
- package/src/components/content/docs-content.tsx +113 -0
- package/src/components/layout/docs-layout.tsx +192 -0
- package/src/components/layout/site-header.tsx +152 -0
- package/src/components/layout/site-layout.tsx +28 -0
- package/src/components/layout/site-provider.tsx +23 -0
- package/src/components/layout/site-template.tsx +20 -0
- package/src/components/layout/theme-provider.tsx +10 -0
- package/src/components/layout/theme-switcher.tsx +42 -0
- package/src/components/motion-primitives/morph-icon.tsx +97 -0
- package/src/components/motion-primitives/progressive-blur.tsx +64 -0
- package/src/components/motion-primitives/sliding-number.tsx +131 -0
- package/src/components/motion-primitives/text-effect.tsx +290 -0
- package/src/components/motion-primitives/text-morph.tsx +77 -0
- package/src/components/motion-primitives/text-scramble.tsx +87 -0
- package/src/components/shared/command-block.tsx +193 -0
- package/src/components/shared/scroll-fade.tsx +22 -0
- package/src/components/ui/badge.tsx +50 -0
- package/src/components/ui/brand-logo.tsx +68 -0
- package/src/components/ui/button-group.tsx +87 -0
- package/src/components/ui/button.tsx +104 -0
- package/src/components/ui/card.tsx +97 -0
- package/src/components/ui/direction.tsx +6 -0
- package/src/components/ui/hover-card.tsx +51 -0
- package/src/components/ui/item.tsx +201 -0
- package/src/components/ui/separator.tsx +25 -0
- package/src/components/ui/toast.tsx +322 -0
- package/src/components/ui/tooltip.tsx +66 -0
- package/src/hooks/use-copy-to-clipboard.ts +54 -0
- package/src/index.ts +30 -0
- package/src/lib/constants.ts +63 -0
- package/src/lib/motions.ts +21 -0
- package/src/lib/utils/audio.ts +56 -0
- package/src/lib/utils.ts +14 -0
- package/src/shiki.ts +25 -0
- package/src/styles.css +112 -0
- package/src/typeset.css +513 -0
- package/tsconfig.json +15 -0
- package/tsup.config.ts +11 -0
package/dist/styles.css
ADDED
|
@@ -0,0 +1,2556 @@
|
|
|
1
|
+
/*! tailwindcss v4.3.3 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
4
|
+
@layer theme {
|
|
5
|
+
:root, :host {
|
|
6
|
+
--font-mono: var(--font-geist-mono);
|
|
7
|
+
--color-slate-900: oklch(20.8% 0.042 265.755);
|
|
8
|
+
--color-white: #fff;
|
|
9
|
+
--spacing: 0.25rem;
|
|
10
|
+
--container-xs: 20rem;
|
|
11
|
+
--text-xs: 0.75rem;
|
|
12
|
+
--text-xs--line-height: calc(1 / 0.75);
|
|
13
|
+
--text-sm: 0.875rem;
|
|
14
|
+
--text-sm--line-height: calc(1.25 / 0.875);
|
|
15
|
+
--text-base: 1rem;
|
|
16
|
+
--text-base--line-height: calc(1.5 / 1);
|
|
17
|
+
--text-lg: 1.125rem;
|
|
18
|
+
--text-lg--line-height: calc(1.75 / 1.125);
|
|
19
|
+
--font-weight-normal: 400;
|
|
20
|
+
--font-weight-medium: 500;
|
|
21
|
+
--font-weight-extrabold: 800;
|
|
22
|
+
--tracking-tight: -0.025em;
|
|
23
|
+
--tracking-wide: 0.025em;
|
|
24
|
+
--leading-snug: 1.375;
|
|
25
|
+
--leading-normal: 1.5;
|
|
26
|
+
--leading-relaxed: 1.625;
|
|
27
|
+
--radius-md: calc(var(--radius) * 0.8);
|
|
28
|
+
--radius-xl: 0.75rem;
|
|
29
|
+
--radius-2xl: 1rem;
|
|
30
|
+
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
31
|
+
--animate-spin: spin 1s linear infinite;
|
|
32
|
+
--default-transition-duration: 150ms;
|
|
33
|
+
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
34
|
+
--default-font-family: var(--font-geist);
|
|
35
|
+
--default-mono-font-family: var(--font-geist-mono);
|
|
36
|
+
--color-foreground: var(--foreground);
|
|
37
|
+
--font-heading: var(--font-geist);
|
|
38
|
+
--color-primary: var(--primary);
|
|
39
|
+
--color-muted-foreground: var(--muted-foreground);
|
|
40
|
+
--color-muted: var(--muted);
|
|
41
|
+
--color-border: var(--border);
|
|
42
|
+
--color-ring: var(--ring);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
@layer base {
|
|
46
|
+
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
|
47
|
+
box-sizing: border-box;
|
|
48
|
+
margin: 0;
|
|
49
|
+
padding: 0;
|
|
50
|
+
border: 0 solid;
|
|
51
|
+
}
|
|
52
|
+
html, :host {
|
|
53
|
+
line-height: 1.5;
|
|
54
|
+
-webkit-text-size-adjust: 100%;
|
|
55
|
+
tab-size: 4;
|
|
56
|
+
font-family: var(--default-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
57
|
+
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
58
|
+
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
59
|
+
-webkit-tap-highlight-color: transparent;
|
|
60
|
+
}
|
|
61
|
+
hr {
|
|
62
|
+
height: 0;
|
|
63
|
+
color: inherit;
|
|
64
|
+
border-top-width: 1px;
|
|
65
|
+
}
|
|
66
|
+
abbr:where([title]) {
|
|
67
|
+
-webkit-text-decoration: underline dotted;
|
|
68
|
+
text-decoration: underline dotted;
|
|
69
|
+
}
|
|
70
|
+
h1, h2, h3, h4, h5, h6 {
|
|
71
|
+
font-size: inherit;
|
|
72
|
+
font-weight: inherit;
|
|
73
|
+
}
|
|
74
|
+
a {
|
|
75
|
+
color: inherit;
|
|
76
|
+
-webkit-text-decoration: inherit;
|
|
77
|
+
text-decoration: inherit;
|
|
78
|
+
}
|
|
79
|
+
b, strong {
|
|
80
|
+
font-weight: bolder;
|
|
81
|
+
}
|
|
82
|
+
code, kbd, samp, pre {
|
|
83
|
+
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
84
|
+
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
85
|
+
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
86
|
+
font-size: 1em;
|
|
87
|
+
}
|
|
88
|
+
small {
|
|
89
|
+
font-size: 80%;
|
|
90
|
+
}
|
|
91
|
+
sub, sup {
|
|
92
|
+
font-size: 75%;
|
|
93
|
+
line-height: 0;
|
|
94
|
+
position: relative;
|
|
95
|
+
vertical-align: baseline;
|
|
96
|
+
}
|
|
97
|
+
sub {
|
|
98
|
+
bottom: -0.25em;
|
|
99
|
+
}
|
|
100
|
+
sup {
|
|
101
|
+
top: -0.5em;
|
|
102
|
+
}
|
|
103
|
+
table {
|
|
104
|
+
text-indent: 0;
|
|
105
|
+
border-color: inherit;
|
|
106
|
+
border-collapse: collapse;
|
|
107
|
+
}
|
|
108
|
+
:-moz-focusring:where(:not(iframe)) {
|
|
109
|
+
outline: auto;
|
|
110
|
+
}
|
|
111
|
+
progress {
|
|
112
|
+
vertical-align: baseline;
|
|
113
|
+
}
|
|
114
|
+
summary {
|
|
115
|
+
display: list-item;
|
|
116
|
+
}
|
|
117
|
+
ol, ul, menu {
|
|
118
|
+
list-style: none;
|
|
119
|
+
}
|
|
120
|
+
img, svg, video, canvas, audio, iframe, embed, object {
|
|
121
|
+
display: block;
|
|
122
|
+
vertical-align: middle;
|
|
123
|
+
}
|
|
124
|
+
img, video {
|
|
125
|
+
max-width: 100%;
|
|
126
|
+
height: auto;
|
|
127
|
+
}
|
|
128
|
+
button, input, select, optgroup, textarea, ::file-selector-button {
|
|
129
|
+
font: inherit;
|
|
130
|
+
font-feature-settings: inherit;
|
|
131
|
+
font-variation-settings: inherit;
|
|
132
|
+
letter-spacing: inherit;
|
|
133
|
+
color: inherit;
|
|
134
|
+
border-radius: 0;
|
|
135
|
+
background-color: transparent;
|
|
136
|
+
opacity: 1;
|
|
137
|
+
}
|
|
138
|
+
:where(select:is([multiple], [size])) optgroup {
|
|
139
|
+
font-weight: bolder;
|
|
140
|
+
}
|
|
141
|
+
:where(select:is([multiple], [size])) optgroup option {
|
|
142
|
+
padding-inline-start: 20px;
|
|
143
|
+
}
|
|
144
|
+
::file-selector-button {
|
|
145
|
+
margin-inline-end: 4px;
|
|
146
|
+
}
|
|
147
|
+
::placeholder {
|
|
148
|
+
opacity: 1;
|
|
149
|
+
}
|
|
150
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
151
|
+
::placeholder {
|
|
152
|
+
color: currentcolor;
|
|
153
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
154
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
textarea {
|
|
159
|
+
resize: vertical;
|
|
160
|
+
}
|
|
161
|
+
::-webkit-search-decoration {
|
|
162
|
+
-webkit-appearance: none;
|
|
163
|
+
}
|
|
164
|
+
::-webkit-date-and-time-value {
|
|
165
|
+
min-height: 1lh;
|
|
166
|
+
text-align: inherit;
|
|
167
|
+
}
|
|
168
|
+
::-webkit-datetime-edit {
|
|
169
|
+
display: inline-flex;
|
|
170
|
+
}
|
|
171
|
+
::-webkit-datetime-edit-fields-wrapper {
|
|
172
|
+
padding: 0;
|
|
173
|
+
}
|
|
174
|
+
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
|
175
|
+
padding-block: 0;
|
|
176
|
+
}
|
|
177
|
+
::-webkit-calendar-picker-indicator {
|
|
178
|
+
line-height: 1;
|
|
179
|
+
}
|
|
180
|
+
:-moz-ui-invalid {
|
|
181
|
+
box-shadow: none;
|
|
182
|
+
}
|
|
183
|
+
button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
|
|
184
|
+
appearance: button;
|
|
185
|
+
}
|
|
186
|
+
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
|
|
187
|
+
height: auto;
|
|
188
|
+
}
|
|
189
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
|
190
|
+
display: none !important;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
@layer utilities {
|
|
194
|
+
.pointer-events-auto {
|
|
195
|
+
pointer-events: auto;
|
|
196
|
+
}
|
|
197
|
+
.pointer-events-none {
|
|
198
|
+
pointer-events: none;
|
|
199
|
+
}
|
|
200
|
+
.invisible {
|
|
201
|
+
visibility: hidden;
|
|
202
|
+
}
|
|
203
|
+
.visible {
|
|
204
|
+
visibility: visible;
|
|
205
|
+
}
|
|
206
|
+
.sr-only {
|
|
207
|
+
position: absolute;
|
|
208
|
+
width: 1px;
|
|
209
|
+
height: 1px;
|
|
210
|
+
padding: 0;
|
|
211
|
+
margin: -1px;
|
|
212
|
+
overflow: hidden;
|
|
213
|
+
clip-path: inset(50%);
|
|
214
|
+
white-space: nowrap;
|
|
215
|
+
border-width: 0;
|
|
216
|
+
}
|
|
217
|
+
.absolute {
|
|
218
|
+
position: absolute;
|
|
219
|
+
}
|
|
220
|
+
.fixed {
|
|
221
|
+
position: fixed;
|
|
222
|
+
}
|
|
223
|
+
.relative {
|
|
224
|
+
position: relative;
|
|
225
|
+
}
|
|
226
|
+
.static {
|
|
227
|
+
position: static;
|
|
228
|
+
}
|
|
229
|
+
.sticky {
|
|
230
|
+
position: sticky;
|
|
231
|
+
}
|
|
232
|
+
.inset-0 {
|
|
233
|
+
inset: 0px;
|
|
234
|
+
}
|
|
235
|
+
.inset-x-0 {
|
|
236
|
+
inset-inline: 0px;
|
|
237
|
+
}
|
|
238
|
+
.top-0 {
|
|
239
|
+
top: 0px;
|
|
240
|
+
}
|
|
241
|
+
.top-3 {
|
|
242
|
+
top: calc(var(--spacing) * 3);
|
|
243
|
+
}
|
|
244
|
+
.top-4 {
|
|
245
|
+
top: calc(var(--spacing) * 4);
|
|
246
|
+
}
|
|
247
|
+
.right-3 {
|
|
248
|
+
right: calc(var(--spacing) * 3);
|
|
249
|
+
}
|
|
250
|
+
.left-1\/2 {
|
|
251
|
+
left: calc(1 / 2 * 100%);
|
|
252
|
+
}
|
|
253
|
+
.isolate {
|
|
254
|
+
isolation: isolate;
|
|
255
|
+
}
|
|
256
|
+
.z-\(--z-header\) {
|
|
257
|
+
z-index: var(--z-header);
|
|
258
|
+
}
|
|
259
|
+
.z-\(--z-scroll-fade\) {
|
|
260
|
+
z-index: var(--z-scroll-fade);
|
|
261
|
+
}
|
|
262
|
+
.z-10 {
|
|
263
|
+
z-index: 10;
|
|
264
|
+
}
|
|
265
|
+
.z-20 {
|
|
266
|
+
z-index: 20;
|
|
267
|
+
}
|
|
268
|
+
.z-50 {
|
|
269
|
+
z-index: 50;
|
|
270
|
+
}
|
|
271
|
+
.z-60 {
|
|
272
|
+
z-index: 60;
|
|
273
|
+
}
|
|
274
|
+
.z-\[calc\(9999-var\(--toast-index\)\)\] {
|
|
275
|
+
z-index: calc(9999 - var(--toast-index));
|
|
276
|
+
}
|
|
277
|
+
.col-start-2 {
|
|
278
|
+
grid-column-start: 2;
|
|
279
|
+
}
|
|
280
|
+
.row-span-2 {
|
|
281
|
+
grid-row: span 2 / span 2;
|
|
282
|
+
}
|
|
283
|
+
.row-start-1 {
|
|
284
|
+
grid-row-start: 1;
|
|
285
|
+
}
|
|
286
|
+
.container {
|
|
287
|
+
width: 100%;
|
|
288
|
+
@media (width >= 40rem) {
|
|
289
|
+
max-width: 40rem;
|
|
290
|
+
}
|
|
291
|
+
@media (width >= 48rem) {
|
|
292
|
+
max-width: 48rem;
|
|
293
|
+
}
|
|
294
|
+
@media (width >= 64rem) {
|
|
295
|
+
max-width: 64rem;
|
|
296
|
+
}
|
|
297
|
+
@media (width >= 80rem) {
|
|
298
|
+
max-width: 80rem;
|
|
299
|
+
}
|
|
300
|
+
@media (width >= 96rem) {
|
|
301
|
+
max-width: 96rem;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
.mx-auto {
|
|
305
|
+
margin-inline: auto;
|
|
306
|
+
}
|
|
307
|
+
.my-2 {
|
|
308
|
+
margin-block: calc(var(--spacing) * 2);
|
|
309
|
+
}
|
|
310
|
+
.mt-0 {
|
|
311
|
+
margin-top: 0px;
|
|
312
|
+
}
|
|
313
|
+
.mt-0\.5 {
|
|
314
|
+
margin-top: calc(var(--spacing) * 0.5);
|
|
315
|
+
}
|
|
316
|
+
.mt-4 {
|
|
317
|
+
margin-top: calc(var(--spacing) * 4);
|
|
318
|
+
}
|
|
319
|
+
.mt-6 {
|
|
320
|
+
margin-top: calc(var(--spacing) * 6);
|
|
321
|
+
}
|
|
322
|
+
.mt-12 {
|
|
323
|
+
margin-top: calc(var(--spacing) * 12);
|
|
324
|
+
}
|
|
325
|
+
.mt-16 {
|
|
326
|
+
margin-top: calc(var(--spacing) * 16);
|
|
327
|
+
}
|
|
328
|
+
.mt-32 {
|
|
329
|
+
margin-top: calc(var(--spacing) * 32);
|
|
330
|
+
}
|
|
331
|
+
.mr-2 {
|
|
332
|
+
margin-right: calc(var(--spacing) * 2);
|
|
333
|
+
}
|
|
334
|
+
.mb-2 {
|
|
335
|
+
margin-bottom: calc(var(--spacing) * 2);
|
|
336
|
+
}
|
|
337
|
+
.mb-4 {
|
|
338
|
+
margin-bottom: calc(var(--spacing) * 4);
|
|
339
|
+
}
|
|
340
|
+
.mb-8 {
|
|
341
|
+
margin-bottom: calc(var(--spacing) * 8);
|
|
342
|
+
}
|
|
343
|
+
.-ml-2 {
|
|
344
|
+
margin-left: calc(var(--spacing) * -2);
|
|
345
|
+
}
|
|
346
|
+
.ml-auto {
|
|
347
|
+
margin-left: auto;
|
|
348
|
+
}
|
|
349
|
+
.line-clamp-1 {
|
|
350
|
+
overflow: hidden;
|
|
351
|
+
display: -webkit-box;
|
|
352
|
+
-webkit-box-orient: vertical;
|
|
353
|
+
-webkit-line-clamp: 1;
|
|
354
|
+
}
|
|
355
|
+
.line-clamp-2 {
|
|
356
|
+
overflow: hidden;
|
|
357
|
+
display: -webkit-box;
|
|
358
|
+
-webkit-box-orient: vertical;
|
|
359
|
+
-webkit-line-clamp: 2;
|
|
360
|
+
}
|
|
361
|
+
.block {
|
|
362
|
+
display: block;
|
|
363
|
+
}
|
|
364
|
+
.flex {
|
|
365
|
+
display: flex;
|
|
366
|
+
}
|
|
367
|
+
.grid {
|
|
368
|
+
display: grid;
|
|
369
|
+
}
|
|
370
|
+
.hidden {
|
|
371
|
+
display: none;
|
|
372
|
+
}
|
|
373
|
+
.inline-block {
|
|
374
|
+
display: inline-block;
|
|
375
|
+
}
|
|
376
|
+
.inline-flex {
|
|
377
|
+
display: inline-flex;
|
|
378
|
+
}
|
|
379
|
+
.inline-grid {
|
|
380
|
+
display: inline-grid;
|
|
381
|
+
}
|
|
382
|
+
.size-2\.5 {
|
|
383
|
+
width: calc(var(--spacing) * 2.5);
|
|
384
|
+
height: calc(var(--spacing) * 2.5);
|
|
385
|
+
}
|
|
386
|
+
.size-3\.5 {
|
|
387
|
+
width: calc(var(--spacing) * 3.5);
|
|
388
|
+
height: calc(var(--spacing) * 3.5);
|
|
389
|
+
}
|
|
390
|
+
.size-7 {
|
|
391
|
+
width: calc(var(--spacing) * 7);
|
|
392
|
+
height: calc(var(--spacing) * 7);
|
|
393
|
+
}
|
|
394
|
+
.size-8 {
|
|
395
|
+
width: calc(var(--spacing) * 8);
|
|
396
|
+
height: calc(var(--spacing) * 8);
|
|
397
|
+
}
|
|
398
|
+
.size-9 {
|
|
399
|
+
width: calc(var(--spacing) * 9);
|
|
400
|
+
height: calc(var(--spacing) * 9);
|
|
401
|
+
}
|
|
402
|
+
.size-10 {
|
|
403
|
+
width: calc(var(--spacing) * 10);
|
|
404
|
+
height: calc(var(--spacing) * 10);
|
|
405
|
+
}
|
|
406
|
+
.size-11 {
|
|
407
|
+
width: calc(var(--spacing) * 11);
|
|
408
|
+
height: calc(var(--spacing) * 11);
|
|
409
|
+
}
|
|
410
|
+
.size-\[4px\] {
|
|
411
|
+
width: 4px;
|
|
412
|
+
height: 4px;
|
|
413
|
+
}
|
|
414
|
+
.h-\(--toast-calc-height\) {
|
|
415
|
+
height: var(--toast-calc-height);
|
|
416
|
+
}
|
|
417
|
+
.h-3 {
|
|
418
|
+
height: calc(var(--spacing) * 3);
|
|
419
|
+
}
|
|
420
|
+
.h-4 {
|
|
421
|
+
height: calc(var(--spacing) * 4);
|
|
422
|
+
}
|
|
423
|
+
.h-7 {
|
|
424
|
+
height: calc(var(--spacing) * 7);
|
|
425
|
+
}
|
|
426
|
+
.h-8 {
|
|
427
|
+
height: calc(var(--spacing) * 8);
|
|
428
|
+
}
|
|
429
|
+
.h-9 {
|
|
430
|
+
height: calc(var(--spacing) * 9);
|
|
431
|
+
}
|
|
432
|
+
.h-10 {
|
|
433
|
+
height: calc(var(--spacing) * 10);
|
|
434
|
+
}
|
|
435
|
+
.h-11 {
|
|
436
|
+
height: calc(var(--spacing) * 11);
|
|
437
|
+
}
|
|
438
|
+
.h-20 {
|
|
439
|
+
height: calc(var(--spacing) * 20);
|
|
440
|
+
}
|
|
441
|
+
.min-h-screen {
|
|
442
|
+
min-height: 100vh;
|
|
443
|
+
}
|
|
444
|
+
.w-3 {
|
|
445
|
+
width: calc(var(--spacing) * 3);
|
|
446
|
+
}
|
|
447
|
+
.w-4 {
|
|
448
|
+
width: calc(var(--spacing) * 4);
|
|
449
|
+
}
|
|
450
|
+
.w-64 {
|
|
451
|
+
width: calc(var(--spacing) * 64);
|
|
452
|
+
}
|
|
453
|
+
.w-\[1ch\] {
|
|
454
|
+
width: 1ch;
|
|
455
|
+
}
|
|
456
|
+
.w-\[calc\(100\%-var\(--toast-inset\)\*2\)\] {
|
|
457
|
+
width: calc(100% - var(--toast-inset) * 2);
|
|
458
|
+
}
|
|
459
|
+
.w-fit {
|
|
460
|
+
width: fit-content;
|
|
461
|
+
}
|
|
462
|
+
.w-full {
|
|
463
|
+
width: 100%;
|
|
464
|
+
}
|
|
465
|
+
.max-w-\(--layout-content-width\) {
|
|
466
|
+
max-width: var(--layout-content-width);
|
|
467
|
+
}
|
|
468
|
+
.max-w-\(--layout-max-width\) {
|
|
469
|
+
max-width: var(--layout-max-width);
|
|
470
|
+
}
|
|
471
|
+
.max-w-90 {
|
|
472
|
+
max-width: calc(var(--spacing) * 90);
|
|
473
|
+
}
|
|
474
|
+
.max-w-\[min\(--spacing\(64\)\,var\(--available-width\)\)\] {
|
|
475
|
+
max-width: min(calc(var(--spacing) * 64), var(--available-width));
|
|
476
|
+
}
|
|
477
|
+
.max-w-xs {
|
|
478
|
+
max-width: var(--container-xs);
|
|
479
|
+
}
|
|
480
|
+
.min-w-0 {
|
|
481
|
+
min-width: 0px;
|
|
482
|
+
}
|
|
483
|
+
.flex-1 {
|
|
484
|
+
flex: 1;
|
|
485
|
+
}
|
|
486
|
+
.shrink-0 {
|
|
487
|
+
flex-shrink: 0;
|
|
488
|
+
}
|
|
489
|
+
.basis-full {
|
|
490
|
+
flex-basis: 100%;
|
|
491
|
+
}
|
|
492
|
+
.origin-\(--transform-origin\) {
|
|
493
|
+
transform-origin: var(--transform-origin);
|
|
494
|
+
}
|
|
495
|
+
.-translate-x-1\/2 {
|
|
496
|
+
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
497
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
498
|
+
}
|
|
499
|
+
.translate-y-1 {
|
|
500
|
+
--tw-translate-y: var(--spacing);
|
|
501
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
502
|
+
}
|
|
503
|
+
.translate-y-\[calc\(-50\%-2px\)\] {
|
|
504
|
+
--tw-translate-y: calc(-50% - 2px);
|
|
505
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
506
|
+
}
|
|
507
|
+
.rotate-45 {
|
|
508
|
+
rotate: 45deg;
|
|
509
|
+
}
|
|
510
|
+
.transform {
|
|
511
|
+
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
512
|
+
}
|
|
513
|
+
.cursor-default {
|
|
514
|
+
cursor: default;
|
|
515
|
+
}
|
|
516
|
+
.cursor-pointer {
|
|
517
|
+
cursor: pointer;
|
|
518
|
+
}
|
|
519
|
+
.scroll-mt-24 {
|
|
520
|
+
scroll-margin-top: calc(var(--spacing) * 24);
|
|
521
|
+
}
|
|
522
|
+
.grid-cols-2 {
|
|
523
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
524
|
+
}
|
|
525
|
+
.flex-col {
|
|
526
|
+
flex-direction: column;
|
|
527
|
+
}
|
|
528
|
+
.flex-row {
|
|
529
|
+
flex-direction: row;
|
|
530
|
+
}
|
|
531
|
+
.flex-wrap {
|
|
532
|
+
flex-wrap: wrap;
|
|
533
|
+
}
|
|
534
|
+
.place-content-center {
|
|
535
|
+
place-content: center;
|
|
536
|
+
}
|
|
537
|
+
.place-items-center {
|
|
538
|
+
place-items: center;
|
|
539
|
+
}
|
|
540
|
+
.items-center {
|
|
541
|
+
align-items: center;
|
|
542
|
+
}
|
|
543
|
+
.items-stretch {
|
|
544
|
+
align-items: stretch;
|
|
545
|
+
}
|
|
546
|
+
.justify-between {
|
|
547
|
+
justify-content: space-between;
|
|
548
|
+
}
|
|
549
|
+
.justify-center {
|
|
550
|
+
justify-content: center;
|
|
551
|
+
}
|
|
552
|
+
.gap-0\.5 {
|
|
553
|
+
gap: calc(var(--spacing) * 0.5);
|
|
554
|
+
}
|
|
555
|
+
.gap-1 {
|
|
556
|
+
gap: var(--spacing);
|
|
557
|
+
}
|
|
558
|
+
.gap-1\.5 {
|
|
559
|
+
gap: calc(var(--spacing) * 1.5);
|
|
560
|
+
}
|
|
561
|
+
.gap-2 {
|
|
562
|
+
gap: calc(var(--spacing) * 2);
|
|
563
|
+
}
|
|
564
|
+
.gap-2\.5 {
|
|
565
|
+
gap: calc(var(--spacing) * 2.5);
|
|
566
|
+
}
|
|
567
|
+
.gap-3 {
|
|
568
|
+
gap: calc(var(--spacing) * 3);
|
|
569
|
+
}
|
|
570
|
+
.gap-4 {
|
|
571
|
+
gap: calc(var(--spacing) * 4);
|
|
572
|
+
}
|
|
573
|
+
.gap-6 {
|
|
574
|
+
gap: calc(var(--spacing) * 6);
|
|
575
|
+
}
|
|
576
|
+
.gap-10 {
|
|
577
|
+
gap: calc(var(--spacing) * 10);
|
|
578
|
+
}
|
|
579
|
+
.gap-\[2\.5px\] {
|
|
580
|
+
gap: 2.5px;
|
|
581
|
+
}
|
|
582
|
+
:where(.space-y-1\.5 > :not(:last-child)) {
|
|
583
|
+
--tw-space-y-reverse: 0;
|
|
584
|
+
margin-block-start: calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse));
|
|
585
|
+
margin-block-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)));
|
|
586
|
+
}
|
|
587
|
+
.gap-x-1 {
|
|
588
|
+
column-gap: var(--spacing);
|
|
589
|
+
}
|
|
590
|
+
.gap-x-6 {
|
|
591
|
+
column-gap: calc(var(--spacing) * 6);
|
|
592
|
+
}
|
|
593
|
+
.gap-y-1 {
|
|
594
|
+
row-gap: var(--spacing);
|
|
595
|
+
}
|
|
596
|
+
.gap-y-2 {
|
|
597
|
+
row-gap: calc(var(--spacing) * 2);
|
|
598
|
+
}
|
|
599
|
+
.self-start {
|
|
600
|
+
align-self: flex-start;
|
|
601
|
+
}
|
|
602
|
+
.self-stretch {
|
|
603
|
+
align-self: stretch;
|
|
604
|
+
}
|
|
605
|
+
.justify-self-end {
|
|
606
|
+
justify-self: flex-end;
|
|
607
|
+
}
|
|
608
|
+
.overflow-hidden {
|
|
609
|
+
overflow: hidden;
|
|
610
|
+
}
|
|
611
|
+
.overflow-x-auto {
|
|
612
|
+
overflow-x: auto;
|
|
613
|
+
}
|
|
614
|
+
.overflow-x-clip {
|
|
615
|
+
overflow-x: clip;
|
|
616
|
+
}
|
|
617
|
+
.overflow-x-visible {
|
|
618
|
+
overflow-x: visible;
|
|
619
|
+
}
|
|
620
|
+
.overflow-y-clip {
|
|
621
|
+
overflow-y: clip;
|
|
622
|
+
}
|
|
623
|
+
.rounded-2xl {
|
|
624
|
+
border-radius: var(--radius-2xl);
|
|
625
|
+
}
|
|
626
|
+
.rounded-\[1px\] {
|
|
627
|
+
border-radius: 1px;
|
|
628
|
+
}
|
|
629
|
+
.rounded-\[2px\] {
|
|
630
|
+
border-radius: 2px;
|
|
631
|
+
}
|
|
632
|
+
.rounded-\[inherit\] {
|
|
633
|
+
border-radius: inherit;
|
|
634
|
+
}
|
|
635
|
+
.rounded-full {
|
|
636
|
+
border-radius: calc(infinity * 1px);
|
|
637
|
+
}
|
|
638
|
+
.rounded-lg {
|
|
639
|
+
border-radius: var(--radius);
|
|
640
|
+
}
|
|
641
|
+
.rounded-md {
|
|
642
|
+
border-radius: calc(var(--radius) * 0.8);
|
|
643
|
+
}
|
|
644
|
+
.rounded-sm {
|
|
645
|
+
border-radius: calc(var(--radius) * 0.6);
|
|
646
|
+
}
|
|
647
|
+
.rounded-xl {
|
|
648
|
+
border-radius: var(--radius-xl);
|
|
649
|
+
}
|
|
650
|
+
.border {
|
|
651
|
+
border-style: var(--tw-border-style);
|
|
652
|
+
border-width: 1px;
|
|
653
|
+
}
|
|
654
|
+
.border-0 {
|
|
655
|
+
border-style: var(--tw-border-style);
|
|
656
|
+
border-width: 0px;
|
|
657
|
+
}
|
|
658
|
+
.border-t {
|
|
659
|
+
border-top-style: var(--tw-border-style);
|
|
660
|
+
border-top-width: 1px;
|
|
661
|
+
}
|
|
662
|
+
.border-border {
|
|
663
|
+
border-color: var(--border);
|
|
664
|
+
}
|
|
665
|
+
.border-transparent {
|
|
666
|
+
border-color: transparent;
|
|
667
|
+
}
|
|
668
|
+
.bg-accent {
|
|
669
|
+
background-color: var(--accent);
|
|
670
|
+
}
|
|
671
|
+
.bg-border {
|
|
672
|
+
background-color: var(--border);
|
|
673
|
+
}
|
|
674
|
+
.bg-card {
|
|
675
|
+
background-color: var(--card);
|
|
676
|
+
}
|
|
677
|
+
.bg-code {
|
|
678
|
+
background-color: var(--code);
|
|
679
|
+
}
|
|
680
|
+
.bg-current {
|
|
681
|
+
background-color: currentcolor;
|
|
682
|
+
}
|
|
683
|
+
.bg-foreground {
|
|
684
|
+
background-color: var(--foreground);
|
|
685
|
+
}
|
|
686
|
+
.bg-input {
|
|
687
|
+
background-color: var(--input);
|
|
688
|
+
}
|
|
689
|
+
.bg-muted {
|
|
690
|
+
background-color: var(--muted);
|
|
691
|
+
}
|
|
692
|
+
.bg-muted\/50 {
|
|
693
|
+
background-color: var(--muted);
|
|
694
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
695
|
+
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
.bg-popover {
|
|
699
|
+
background-color: var(--popover);
|
|
700
|
+
}
|
|
701
|
+
.bg-primary {
|
|
702
|
+
background-color: var(--primary);
|
|
703
|
+
}
|
|
704
|
+
.bg-slate-900 {
|
|
705
|
+
background-color: var(--color-slate-900);
|
|
706
|
+
}
|
|
707
|
+
.bg-transparent {
|
|
708
|
+
background-color: transparent;
|
|
709
|
+
}
|
|
710
|
+
.bg-gradient-to-b {
|
|
711
|
+
--tw-gradient-position: to bottom in oklab;
|
|
712
|
+
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
713
|
+
}
|
|
714
|
+
.from-background {
|
|
715
|
+
--tw-gradient-from: var(--background);
|
|
716
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
717
|
+
}
|
|
718
|
+
.to-transparent {
|
|
719
|
+
--tw-gradient-to: transparent;
|
|
720
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
721
|
+
}
|
|
722
|
+
.fill-foreground {
|
|
723
|
+
fill: var(--foreground);
|
|
724
|
+
}
|
|
725
|
+
.p-2 {
|
|
726
|
+
padding: calc(var(--spacing) * 2);
|
|
727
|
+
}
|
|
728
|
+
.p-2\.5 {
|
|
729
|
+
padding: calc(var(--spacing) * 2.5);
|
|
730
|
+
}
|
|
731
|
+
.px-\(--layout-padding\) {
|
|
732
|
+
padding-inline: var(--layout-padding);
|
|
733
|
+
}
|
|
734
|
+
.px-1\.5 {
|
|
735
|
+
padding-inline: calc(var(--spacing) * 1.5);
|
|
736
|
+
}
|
|
737
|
+
.px-2 {
|
|
738
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
739
|
+
}
|
|
740
|
+
.px-2\.5 {
|
|
741
|
+
padding-inline: calc(var(--spacing) * 2.5);
|
|
742
|
+
}
|
|
743
|
+
.px-3 {
|
|
744
|
+
padding-inline: calc(var(--spacing) * 3);
|
|
745
|
+
}
|
|
746
|
+
.px-3\.5 {
|
|
747
|
+
padding-inline: calc(var(--spacing) * 3.5);
|
|
748
|
+
}
|
|
749
|
+
.px-4 {
|
|
750
|
+
padding-inline: calc(var(--spacing) * 4);
|
|
751
|
+
}
|
|
752
|
+
.px-5 {
|
|
753
|
+
padding-inline: calc(var(--spacing) * 5);
|
|
754
|
+
}
|
|
755
|
+
.px-6 {
|
|
756
|
+
padding-inline: calc(var(--spacing) * 6);
|
|
757
|
+
}
|
|
758
|
+
.px-\[calc\(--spacing\(2\)-1px\)\] {
|
|
759
|
+
padding-inline: calc(calc(var(--spacing) * 2) - 1px);
|
|
760
|
+
}
|
|
761
|
+
.px-\[calc\(--spacing\(2\.5\)-1px\)\] {
|
|
762
|
+
padding-inline: calc(calc(var(--spacing) * 2.5) - 1px);
|
|
763
|
+
}
|
|
764
|
+
.px-\[calc\(--spacing\(3\)-1px\)\] {
|
|
765
|
+
padding-inline: calc(calc(var(--spacing) * 3) - 1px);
|
|
766
|
+
}
|
|
767
|
+
.px-\[calc\(--spacing\(3\.5\)-1px\)\] {
|
|
768
|
+
padding-inline: calc(calc(var(--spacing) * 3.5) - 1px);
|
|
769
|
+
}
|
|
770
|
+
.px-\[calc\(--spacing\(4\)-1px\)\] {
|
|
771
|
+
padding-inline: calc(calc(var(--spacing) * 4) - 1px);
|
|
772
|
+
}
|
|
773
|
+
.py-0\.5 {
|
|
774
|
+
padding-block: calc(var(--spacing) * 0.5);
|
|
775
|
+
}
|
|
776
|
+
.py-1 {
|
|
777
|
+
padding-block: var(--spacing);
|
|
778
|
+
}
|
|
779
|
+
.py-1\.5 {
|
|
780
|
+
padding-block: calc(var(--spacing) * 1.5);
|
|
781
|
+
}
|
|
782
|
+
.py-2 {
|
|
783
|
+
padding-block: calc(var(--spacing) * 2);
|
|
784
|
+
}
|
|
785
|
+
.py-2\.5 {
|
|
786
|
+
padding-block: calc(var(--spacing) * 2.5);
|
|
787
|
+
}
|
|
788
|
+
.py-3 {
|
|
789
|
+
padding-block: calc(var(--spacing) * 3);
|
|
790
|
+
}
|
|
791
|
+
.py-4 {
|
|
792
|
+
padding-block: calc(var(--spacing) * 4);
|
|
793
|
+
}
|
|
794
|
+
.py-12 {
|
|
795
|
+
padding-block: calc(var(--spacing) * 12);
|
|
796
|
+
}
|
|
797
|
+
.pt-3 {
|
|
798
|
+
padding-top: calc(var(--spacing) * 3);
|
|
799
|
+
}
|
|
800
|
+
.pt-4 {
|
|
801
|
+
padding-top: calc(var(--spacing) * 4);
|
|
802
|
+
}
|
|
803
|
+
.pb-1\.5 {
|
|
804
|
+
padding-bottom: calc(var(--spacing) * 1.5);
|
|
805
|
+
}
|
|
806
|
+
.pb-24 {
|
|
807
|
+
padding-bottom: calc(var(--spacing) * 24);
|
|
808
|
+
}
|
|
809
|
+
.text-center {
|
|
810
|
+
text-align: center;
|
|
811
|
+
}
|
|
812
|
+
.text-left {
|
|
813
|
+
text-align: left;
|
|
814
|
+
}
|
|
815
|
+
.align-middle {
|
|
816
|
+
vertical-align: middle;
|
|
817
|
+
}
|
|
818
|
+
.align-top {
|
|
819
|
+
vertical-align: top;
|
|
820
|
+
}
|
|
821
|
+
.font-mono {
|
|
822
|
+
font-family: var(--font-geist-mono);
|
|
823
|
+
}
|
|
824
|
+
.font-sans {
|
|
825
|
+
font-family: var(--font-geist);
|
|
826
|
+
}
|
|
827
|
+
.text-lg {
|
|
828
|
+
font-size: var(--text-lg);
|
|
829
|
+
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
830
|
+
}
|
|
831
|
+
.text-sm {
|
|
832
|
+
font-size: var(--text-sm);
|
|
833
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
834
|
+
}
|
|
835
|
+
.text-xs {
|
|
836
|
+
font-size: var(--text-xs);
|
|
837
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
838
|
+
}
|
|
839
|
+
.text-xs\/relaxed {
|
|
840
|
+
font-size: var(--text-xs);
|
|
841
|
+
line-height: var(--leading-relaxed);
|
|
842
|
+
}
|
|
843
|
+
.text-\[10px\] {
|
|
844
|
+
font-size: 10px;
|
|
845
|
+
}
|
|
846
|
+
.text-\[16px\] {
|
|
847
|
+
font-size: 16px;
|
|
848
|
+
}
|
|
849
|
+
.leading-5 {
|
|
850
|
+
--tw-leading: calc(var(--spacing) * 5);
|
|
851
|
+
line-height: calc(var(--spacing) * 5);
|
|
852
|
+
}
|
|
853
|
+
.leading-none {
|
|
854
|
+
--tw-leading: 1;
|
|
855
|
+
line-height: 1;
|
|
856
|
+
}
|
|
857
|
+
.leading-normal {
|
|
858
|
+
--tw-leading: var(--leading-normal);
|
|
859
|
+
line-height: var(--leading-normal);
|
|
860
|
+
}
|
|
861
|
+
.leading-snug {
|
|
862
|
+
--tw-leading: var(--leading-snug);
|
|
863
|
+
line-height: var(--leading-snug);
|
|
864
|
+
}
|
|
865
|
+
.font-extrabold {
|
|
866
|
+
--tw-font-weight: var(--font-weight-extrabold);
|
|
867
|
+
font-weight: var(--font-weight-extrabold);
|
|
868
|
+
}
|
|
869
|
+
.font-medium {
|
|
870
|
+
--tw-font-weight: var(--font-weight-medium);
|
|
871
|
+
font-weight: var(--font-weight-medium);
|
|
872
|
+
}
|
|
873
|
+
.font-normal {
|
|
874
|
+
--tw-font-weight: var(--font-weight-normal);
|
|
875
|
+
font-weight: var(--font-weight-normal);
|
|
876
|
+
}
|
|
877
|
+
.tracking-tight {
|
|
878
|
+
--tw-tracking: var(--tracking-tight);
|
|
879
|
+
letter-spacing: var(--tracking-tight);
|
|
880
|
+
}
|
|
881
|
+
.tracking-wide {
|
|
882
|
+
--tw-tracking: var(--tracking-wide);
|
|
883
|
+
letter-spacing: var(--tracking-wide);
|
|
884
|
+
}
|
|
885
|
+
.text-balance {
|
|
886
|
+
text-wrap: balance;
|
|
887
|
+
}
|
|
888
|
+
.whitespace-nowrap {
|
|
889
|
+
white-space: nowrap;
|
|
890
|
+
}
|
|
891
|
+
.whitespace-pre {
|
|
892
|
+
white-space: pre;
|
|
893
|
+
}
|
|
894
|
+
.text-background {
|
|
895
|
+
color: var(--background);
|
|
896
|
+
}
|
|
897
|
+
.text-card-foreground {
|
|
898
|
+
color: var(--card-foreground);
|
|
899
|
+
}
|
|
900
|
+
.text-foreground {
|
|
901
|
+
color: var(--foreground);
|
|
902
|
+
}
|
|
903
|
+
.text-muted-foreground {
|
|
904
|
+
color: var(--muted-foreground);
|
|
905
|
+
}
|
|
906
|
+
.text-muted-foreground\/60 {
|
|
907
|
+
color: var(--muted-foreground);
|
|
908
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
909
|
+
color: color-mix(in oklab, var(--muted-foreground) 60%, transparent);
|
|
910
|
+
}
|
|
911
|
+
}
|
|
912
|
+
.text-popover-foreground {
|
|
913
|
+
color: var(--popover-foreground);
|
|
914
|
+
}
|
|
915
|
+
.text-primary-foreground {
|
|
916
|
+
color: var(--primary-foreground);
|
|
917
|
+
}
|
|
918
|
+
.text-slate-900 {
|
|
919
|
+
color: var(--color-slate-900);
|
|
920
|
+
}
|
|
921
|
+
.lowercase {
|
|
922
|
+
text-transform: lowercase;
|
|
923
|
+
}
|
|
924
|
+
.uppercase {
|
|
925
|
+
text-transform: uppercase;
|
|
926
|
+
}
|
|
927
|
+
.tabular-nums {
|
|
928
|
+
--tw-numeric-spacing: tabular-nums;
|
|
929
|
+
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
930
|
+
}
|
|
931
|
+
.underline-offset-4 {
|
|
932
|
+
text-underline-offset: 4px;
|
|
933
|
+
}
|
|
934
|
+
.opacity-0 {
|
|
935
|
+
opacity: 0%;
|
|
936
|
+
}
|
|
937
|
+
.opacity-50 {
|
|
938
|
+
opacity: 50%;
|
|
939
|
+
}
|
|
940
|
+
.opacity-60 {
|
|
941
|
+
opacity: 60%;
|
|
942
|
+
}
|
|
943
|
+
.opacity-100 {
|
|
944
|
+
opacity: 100%;
|
|
945
|
+
}
|
|
946
|
+
.shadow-md {
|
|
947
|
+
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
948
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
949
|
+
}
|
|
950
|
+
.ring-1 {
|
|
951
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
952
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
953
|
+
}
|
|
954
|
+
.ring-foreground\/10 {
|
|
955
|
+
--tw-ring-color: var(--foreground);
|
|
956
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
957
|
+
--tw-ring-color: color-mix(in oklab, var(--foreground) 10%, transparent);
|
|
958
|
+
}
|
|
959
|
+
}
|
|
960
|
+
.outline-hidden {
|
|
961
|
+
--tw-outline-style: none;
|
|
962
|
+
outline-style: none;
|
|
963
|
+
@media (forced-colors: active) {
|
|
964
|
+
outline: 2px solid transparent;
|
|
965
|
+
outline-offset: 2px;
|
|
966
|
+
}
|
|
967
|
+
}
|
|
968
|
+
.outline {
|
|
969
|
+
outline-style: var(--tw-outline-style);
|
|
970
|
+
outline-width: 1px;
|
|
971
|
+
}
|
|
972
|
+
.blur {
|
|
973
|
+
--tw-blur: blur(8px);
|
|
974
|
+
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
975
|
+
}
|
|
976
|
+
.filter {
|
|
977
|
+
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
978
|
+
}
|
|
979
|
+
.transition {
|
|
980
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
|
981
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
982
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
983
|
+
}
|
|
984
|
+
.transition-\[scale\,opacity\] {
|
|
985
|
+
transition-property: scale,opacity;
|
|
986
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
987
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
988
|
+
}
|
|
989
|
+
.transition-all {
|
|
990
|
+
transition-property: all;
|
|
991
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
992
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
993
|
+
}
|
|
994
|
+
.transition-colors {
|
|
995
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
996
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
997
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
998
|
+
}
|
|
999
|
+
.transition-opacity {
|
|
1000
|
+
transition-property: opacity;
|
|
1001
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1002
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1003
|
+
}
|
|
1004
|
+
.transition-shadow {
|
|
1005
|
+
transition-property: box-shadow;
|
|
1006
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1007
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1008
|
+
}
|
|
1009
|
+
.duration-150 {
|
|
1010
|
+
--tw-duration: 150ms;
|
|
1011
|
+
transition-duration: 150ms;
|
|
1012
|
+
}
|
|
1013
|
+
.duration-200 {
|
|
1014
|
+
--tw-duration: 200ms;
|
|
1015
|
+
transition-duration: 200ms;
|
|
1016
|
+
}
|
|
1017
|
+
.duration-250 {
|
|
1018
|
+
--tw-duration: 250ms;
|
|
1019
|
+
transition-duration: 250ms;
|
|
1020
|
+
}
|
|
1021
|
+
.duration-300 {
|
|
1022
|
+
--tw-duration: 300ms;
|
|
1023
|
+
transition-duration: 300ms;
|
|
1024
|
+
}
|
|
1025
|
+
.duration-\[160ms\] {
|
|
1026
|
+
--tw-duration: 160ms;
|
|
1027
|
+
transition-duration: 160ms;
|
|
1028
|
+
}
|
|
1029
|
+
.ease-out {
|
|
1030
|
+
--tw-ease: var(--ease-out);
|
|
1031
|
+
transition-timing-function: var(--ease-out);
|
|
1032
|
+
}
|
|
1033
|
+
.outline-none {
|
|
1034
|
+
--tw-outline-style: none;
|
|
1035
|
+
outline-style: none;
|
|
1036
|
+
}
|
|
1037
|
+
.select-none {
|
|
1038
|
+
-webkit-user-select: none;
|
|
1039
|
+
user-select: none;
|
|
1040
|
+
}
|
|
1041
|
+
.\[--toast-calc-height\:var\(--toast-frontmost-height\,var\(--toast-height\)\)\] {
|
|
1042
|
+
--toast-calc-height: var(--toast-frontmost-height,var(--toast-height));
|
|
1043
|
+
}
|
|
1044
|
+
.\[--toast-gap\:--spacing\(3\)\] {
|
|
1045
|
+
--toast-gap: calc(var(--spacing) * 3);
|
|
1046
|
+
}
|
|
1047
|
+
.\[--toast-inset\:--spacing\(4\)\] {
|
|
1048
|
+
--toast-inset: calc(var(--spacing) * 4);
|
|
1049
|
+
}
|
|
1050
|
+
.\[--toast-peek\:--spacing\(3\)\] {
|
|
1051
|
+
--toast-peek: calc(var(--spacing) * 3);
|
|
1052
|
+
}
|
|
1053
|
+
.\[--toast-scale\:calc\(max\(0\,1-\(var\(--toast-index\)\*\.1\)\)\)\] {
|
|
1054
|
+
--toast-scale: calc(max(0, 1 - (var(--toast-index) * .1)));
|
|
1055
|
+
}
|
|
1056
|
+
.\[--toast-shrink\:calc\(1-var\(--toast-scale\)\)\] {
|
|
1057
|
+
--toast-shrink: calc(1 - var(--toast-scale));
|
|
1058
|
+
}
|
|
1059
|
+
.\[transition\:transform_\.5s_cubic-bezier\(\.22\,1\,\.36\,1\)\,opacity_\.5s\,height_\.15s\,background-color_\.5s\] {
|
|
1060
|
+
transition: transform .5s cubic-bezier(.22,1,.36,1),opacity .5s,height .15s,background-color .5s;
|
|
1061
|
+
}
|
|
1062
|
+
@media (hover: hover) {
|
|
1063
|
+
.group-hover\:translate-y-0:is(:where(.group):hover *) {
|
|
1064
|
+
--tw-translate-y: 0px;
|
|
1065
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1066
|
+
}
|
|
1067
|
+
.group-hover\:opacity-100:is(:where(.group):hover *) {
|
|
1068
|
+
opacity: 100%;
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
.group-has-data-\[slot\=item-description\]\/item\:translate-y-0\.5:is(:where(.group\/item):has([data-slot="item-description"]) *) {
|
|
1072
|
+
--tw-translate-y: calc(var(--spacing) * 0.5);
|
|
1073
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1074
|
+
}
|
|
1075
|
+
.group-has-data-\[slot\=item-description\]\/item\:self-start:is(:where(.group\/item):has([data-slot="item-description"]) *) {
|
|
1076
|
+
align-self: flex-start;
|
|
1077
|
+
}
|
|
1078
|
+
.group-data-\[size\=sm\]\/item\:size-8:is(:where(.group\/item)[data-size="sm"] *) {
|
|
1079
|
+
width: calc(var(--spacing) * 8);
|
|
1080
|
+
height: calc(var(--spacing) * 8);
|
|
1081
|
+
}
|
|
1082
|
+
.group-data-\[size\=xs\]\/item\:size-6:is(:where(.group\/item)[data-size="xs"] *) {
|
|
1083
|
+
width: calc(var(--spacing) * 6);
|
|
1084
|
+
height: calc(var(--spacing) * 6);
|
|
1085
|
+
}
|
|
1086
|
+
.group-data-\[size\=xs\]\/item\:gap-0:is(:where(.group\/item)[data-size="xs"] *) {
|
|
1087
|
+
gap: 0px;
|
|
1088
|
+
}
|
|
1089
|
+
.group-data-\[size\=xs\]\/item\:text-xs:is(:where(.group\/item)[data-size="xs"] *) {
|
|
1090
|
+
font-size: var(--text-xs);
|
|
1091
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
1092
|
+
}
|
|
1093
|
+
.before\:rounded-\[calc\(var\(--radius-md\)-1px\)\]::before {
|
|
1094
|
+
content: var(--tw-content);
|
|
1095
|
+
border-radius: calc(var(--radius-md) - 1px);
|
|
1096
|
+
}
|
|
1097
|
+
.after\:absolute::after {
|
|
1098
|
+
content: var(--tw-content);
|
|
1099
|
+
position: absolute;
|
|
1100
|
+
}
|
|
1101
|
+
.after\:left-0::after {
|
|
1102
|
+
content: var(--tw-content);
|
|
1103
|
+
left: 0px;
|
|
1104
|
+
}
|
|
1105
|
+
.after\:h-\[calc\(var\(--toast-gap\)\+1px\)\]::after {
|
|
1106
|
+
content: var(--tw-content);
|
|
1107
|
+
height: calc(var(--toast-gap) + 1px);
|
|
1108
|
+
}
|
|
1109
|
+
.after\:w-full::after {
|
|
1110
|
+
content: var(--tw-content);
|
|
1111
|
+
width: 100%;
|
|
1112
|
+
}
|
|
1113
|
+
@media (hover: hover) {
|
|
1114
|
+
.hover\:bg-accent:hover {
|
|
1115
|
+
background-color: var(--accent);
|
|
1116
|
+
}
|
|
1117
|
+
.hover\:bg-code-foreground\/10:hover {
|
|
1118
|
+
background-color: var(--code-foreground);
|
|
1119
|
+
}
|
|
1120
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1121
|
+
.hover\:bg-code-foreground\/10:hover {
|
|
1122
|
+
background-color: color-mix(in oklab, var(--code-foreground) 10%, transparent);
|
|
1123
|
+
}
|
|
1124
|
+
}
|
|
1125
|
+
.hover\:bg-primary\/90:hover {
|
|
1126
|
+
background-color: var(--primary);
|
|
1127
|
+
}
|
|
1128
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1129
|
+
.hover\:bg-primary\/90:hover {
|
|
1130
|
+
background-color: color-mix(in oklab, var(--primary) 90%, transparent);
|
|
1131
|
+
}
|
|
1132
|
+
}
|
|
1133
|
+
.hover\:text-accent-foreground:hover {
|
|
1134
|
+
color: var(--accent-foreground);
|
|
1135
|
+
}
|
|
1136
|
+
.hover\:text-code-foreground:hover {
|
|
1137
|
+
color: var(--code-foreground);
|
|
1138
|
+
}
|
|
1139
|
+
.hover\:text-foreground:hover {
|
|
1140
|
+
color: var(--foreground);
|
|
1141
|
+
}
|
|
1142
|
+
.hover\:underline:hover {
|
|
1143
|
+
text-decoration-line: underline;
|
|
1144
|
+
}
|
|
1145
|
+
.hover\:opacity-80:hover {
|
|
1146
|
+
opacity: 80%;
|
|
1147
|
+
}
|
|
1148
|
+
.hover\:opacity-100:hover {
|
|
1149
|
+
opacity: 100%;
|
|
1150
|
+
}
|
|
1151
|
+
}
|
|
1152
|
+
.focus-visible\:translate-y-0:focus-visible {
|
|
1153
|
+
--tw-translate-y: 0px;
|
|
1154
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1155
|
+
}
|
|
1156
|
+
.focus-visible\:border-ring:focus-visible {
|
|
1157
|
+
border-color: var(--ring);
|
|
1158
|
+
}
|
|
1159
|
+
.focus-visible\:opacity-100:focus-visible {
|
|
1160
|
+
opacity: 100%;
|
|
1161
|
+
}
|
|
1162
|
+
.focus-visible\:ring-1:focus-visible {
|
|
1163
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1164
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1165
|
+
}
|
|
1166
|
+
.focus-visible\:ring-2:focus-visible {
|
|
1167
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1168
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1169
|
+
}
|
|
1170
|
+
.focus-visible\:ring-\[3px\]:focus-visible {
|
|
1171
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1172
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1173
|
+
}
|
|
1174
|
+
.focus-visible\:ring-ring:focus-visible {
|
|
1175
|
+
--tw-ring-color: var(--ring);
|
|
1176
|
+
}
|
|
1177
|
+
.focus-visible\:ring-ring\/50:focus-visible {
|
|
1178
|
+
--tw-ring-color: var(--ring);
|
|
1179
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1180
|
+
--tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
1181
|
+
}
|
|
1182
|
+
}
|
|
1183
|
+
.focus-visible\:ring-white\/20:focus-visible {
|
|
1184
|
+
--tw-ring-color: color-mix(in srgb, #fff 20%, transparent);
|
|
1185
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1186
|
+
--tw-ring-color: color-mix(in oklab, var(--color-white) 20%, transparent);
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
:is(.\*\:focus-visible\:relative > *):focus-visible {
|
|
1190
|
+
position: relative;
|
|
1191
|
+
}
|
|
1192
|
+
:is(.\*\:focus-visible\:z-10 > *):focus-visible {
|
|
1193
|
+
z-index: 10;
|
|
1194
|
+
}
|
|
1195
|
+
.active\:scale-\[0\.97\]:active {
|
|
1196
|
+
scale: 0.97;
|
|
1197
|
+
}
|
|
1198
|
+
.disabled\:pointer-events-none:disabled {
|
|
1199
|
+
pointer-events: none;
|
|
1200
|
+
}
|
|
1201
|
+
.disabled\:opacity-50:disabled {
|
|
1202
|
+
opacity: 50%;
|
|
1203
|
+
}
|
|
1204
|
+
:where([data-slot="dropdown-menu-content"]) .in-data-\[slot\=dropdown-menu-content\]\:p-0 {
|
|
1205
|
+
padding: 0px;
|
|
1206
|
+
}
|
|
1207
|
+
:where([data-type="loading"]) .in-data-\[type\=loading\]\:animate-spin {
|
|
1208
|
+
animation: var(--animate-spin);
|
|
1209
|
+
}
|
|
1210
|
+
:where([data-type="loading"]) .in-data-\[type\=loading\]\:opacity-80 {
|
|
1211
|
+
opacity: 80%;
|
|
1212
|
+
}
|
|
1213
|
+
.has-data-\[size\=sm\]\:gap-2\.5:has([data-size="sm"]) {
|
|
1214
|
+
gap: calc(var(--spacing) * 2.5);
|
|
1215
|
+
}
|
|
1216
|
+
.has-data-\[size\=xs\]\:gap-2:has([data-size="xs"]) {
|
|
1217
|
+
gap: calc(var(--spacing) * 2);
|
|
1218
|
+
}
|
|
1219
|
+
.has-data-\[slot\=kbd\]\:pr-1\.5:has([data-slot="kbd"]) {
|
|
1220
|
+
padding-right: calc(var(--spacing) * 1.5);
|
|
1221
|
+
}
|
|
1222
|
+
.has-\[\>\[data-slot\=button-group\]\]\:gap-2:has( > [data-slot=button-group]) {
|
|
1223
|
+
gap: calc(var(--spacing) * 2);
|
|
1224
|
+
}
|
|
1225
|
+
.data-behind\:opacity-0[data-behind] {
|
|
1226
|
+
opacity: 0%;
|
|
1227
|
+
}
|
|
1228
|
+
.data-behind\:not-data-expanded\:pointer-events-none[data-behind]:not([data-expanded]) {
|
|
1229
|
+
pointer-events: none;
|
|
1230
|
+
}
|
|
1231
|
+
.data-ending-style\:scale-98[data-ending-style] {
|
|
1232
|
+
--tw-scale-x: 98%;
|
|
1233
|
+
--tw-scale-y: 98%;
|
|
1234
|
+
--tw-scale-z: 98%;
|
|
1235
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
1236
|
+
}
|
|
1237
|
+
.data-ending-style\:opacity-0[data-ending-style] {
|
|
1238
|
+
opacity: 0%;
|
|
1239
|
+
}
|
|
1240
|
+
.data-ending-style\:not-data-limited\:not-data-swipe-direction\:transform-\[translateY\(calc\(100\%\+var\(--toast-inset\)\)\)\][data-ending-style]:not([data-limited]):not([data-swipe-direction]) {
|
|
1241
|
+
transform: translateY(calc(100% + var(--toast-inset)));
|
|
1242
|
+
}
|
|
1243
|
+
.data-expanded\:h-\(--toast-height\)[data-expanded] {
|
|
1244
|
+
height: var(--toast-height);
|
|
1245
|
+
}
|
|
1246
|
+
.data-expanded\:opacity-100[data-expanded] {
|
|
1247
|
+
opacity: 100%;
|
|
1248
|
+
}
|
|
1249
|
+
.data-horizontal\:mx-px[data-horizontal] {
|
|
1250
|
+
margin-inline: 1px;
|
|
1251
|
+
}
|
|
1252
|
+
.data-horizontal\:h-px[data-horizontal] {
|
|
1253
|
+
height: 1px;
|
|
1254
|
+
}
|
|
1255
|
+
.data-horizontal\:w-auto[data-horizontal] {
|
|
1256
|
+
width: auto;
|
|
1257
|
+
}
|
|
1258
|
+
.data-horizontal\:w-full[data-horizontal] {
|
|
1259
|
+
width: 100%;
|
|
1260
|
+
}
|
|
1261
|
+
.data-instant\:duration-0[data-instant] {
|
|
1262
|
+
--tw-duration: 0ms;
|
|
1263
|
+
transition-duration: 0ms;
|
|
1264
|
+
}
|
|
1265
|
+
.data-limited\:opacity-0[data-limited] {
|
|
1266
|
+
opacity: 0%;
|
|
1267
|
+
}
|
|
1268
|
+
.data-position\:data-expanded\:transform-\[translateX\(var\(--toast-swipe-movement-x\)\)_translateY\(var\(--toast-calc-offset-y\)\)\][data-position][data-expanded] {
|
|
1269
|
+
transform: translateX(var(--toast-swipe-movement-x)) translateY(var(--toast-calc-offset-y));
|
|
1270
|
+
}
|
|
1271
|
+
:is(.\*\:data-slot\:rounded-e-none > *)[data-slot] {
|
|
1272
|
+
border-start-end-radius: 0;
|
|
1273
|
+
border-end-end-radius: 0;
|
|
1274
|
+
}
|
|
1275
|
+
:is(.\*\:data-slot\:rounded-b-none > *)[data-slot] {
|
|
1276
|
+
border-bottom-right-radius: 0;
|
|
1277
|
+
border-bottom-left-radius: 0;
|
|
1278
|
+
}
|
|
1279
|
+
.data-starting-style\:scale-98[data-starting-style] {
|
|
1280
|
+
--tw-scale-x: 98%;
|
|
1281
|
+
--tw-scale-y: 98%;
|
|
1282
|
+
--tw-scale-z: 98%;
|
|
1283
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
1284
|
+
}
|
|
1285
|
+
.data-starting-style\:opacity-0[data-starting-style] {
|
|
1286
|
+
opacity: 0%;
|
|
1287
|
+
}
|
|
1288
|
+
.data-vertical\:my-px[data-vertical] {
|
|
1289
|
+
margin-block: 1px;
|
|
1290
|
+
}
|
|
1291
|
+
.data-vertical\:h-auto[data-vertical] {
|
|
1292
|
+
height: auto;
|
|
1293
|
+
}
|
|
1294
|
+
.data-vertical\:w-px[data-vertical] {
|
|
1295
|
+
width: 1px;
|
|
1296
|
+
}
|
|
1297
|
+
.data-vertical\:self-stretch[data-vertical] {
|
|
1298
|
+
align-self: stretch;
|
|
1299
|
+
}
|
|
1300
|
+
.data-\[position\*\=bottom\]\:top-auto[data-position*="bottom"] {
|
|
1301
|
+
top: auto;
|
|
1302
|
+
}
|
|
1303
|
+
.data-\[position\*\=bottom\]\:bottom-\(--toast-inset\)[data-position*="bottom"] {
|
|
1304
|
+
bottom: var(--toast-inset);
|
|
1305
|
+
}
|
|
1306
|
+
.data-\[position\*\=bottom\]\:bottom-0[data-position*="bottom"] {
|
|
1307
|
+
bottom: 0px;
|
|
1308
|
+
}
|
|
1309
|
+
.data-\[position\*\=bottom\]\:origin-\[50\%_calc\(50\%\+50\%\*min\(var\(--toast-index\,0\)\,1\)\)\][data-position*="bottom"] {
|
|
1310
|
+
transform-origin: 50% calc(50% + 50% * min(var(--toast-index,0), 1));
|
|
1311
|
+
}
|
|
1312
|
+
.data-\[position\*\=bottom\]\:transform-\[translateX\(var\(--toast-swipe-movement-x\)\)_translateY\(calc\(var\(--toast-swipe-movement-y\)-\(var\(--toast-index\)\*var\(--toast-peek\)\)-\(var\(--toast-shrink\)\*var\(--toast-calc-height\)\)\)\)_scale\(var\(--toast-scale\)\)\][data-position*="bottom"] {
|
|
1313
|
+
transform: translateX(var(--toast-swipe-movement-x)) translateY(calc(var(--toast-swipe-movement-y) - (var(--toast-index) * var(--toast-peek)) - (var(--toast-shrink) * var(--toast-calc-height)))) scale(var(--toast-scale));
|
|
1314
|
+
}
|
|
1315
|
+
.data-\[position\*\=bottom\]\:\[--toast-calc-offset-y\:calc\(var\(--toast-offset-y\)\*-1\+var\(--toast-index\)\*var\(--toast-gap\)\*-1\+var\(--toast-swipe-movement-y\)\)\][data-position*="bottom"] {
|
|
1316
|
+
--toast-calc-offset-y: calc(var(--toast-offset-y) * -1 + var(--toast-index) * var(--toast-gap) * -1 + var(--toast-swipe-movement-y));
|
|
1317
|
+
}
|
|
1318
|
+
.data-\[position\*\=bottom\]\:after\:bottom-full[data-position*="bottom"]::after {
|
|
1319
|
+
content: var(--tw-content);
|
|
1320
|
+
bottom: 100%;
|
|
1321
|
+
}
|
|
1322
|
+
.data-\[position\*\=bottom\]\:data-starting-style\:transform-\[translateY\(calc\(100\%\+var\(--toast-inset\)\)\)\][data-position*="bottom"][data-starting-style] {
|
|
1323
|
+
transform: translateY(calc(100% + var(--toast-inset)));
|
|
1324
|
+
}
|
|
1325
|
+
.data-\[position\*\=center\]\:right-0[data-position*="center"] {
|
|
1326
|
+
right: 0px;
|
|
1327
|
+
}
|
|
1328
|
+
.data-\[position\*\=center\]\:left-0[data-position*="center"] {
|
|
1329
|
+
left: 0px;
|
|
1330
|
+
}
|
|
1331
|
+
.data-\[position\*\=center\]\:left-1\/2[data-position*="center"] {
|
|
1332
|
+
left: calc(1 / 2 * 100%);
|
|
1333
|
+
}
|
|
1334
|
+
.data-\[position\*\=center\]\:-translate-x-1\/2[data-position*="center"] {
|
|
1335
|
+
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
1336
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1337
|
+
}
|
|
1338
|
+
.data-\[position\*\=left\]\:right-auto[data-position*="left"] {
|
|
1339
|
+
right: auto;
|
|
1340
|
+
}
|
|
1341
|
+
.data-\[position\*\=left\]\:left-\(--toast-inset\)[data-position*="left"] {
|
|
1342
|
+
left: var(--toast-inset);
|
|
1343
|
+
}
|
|
1344
|
+
.data-\[position\*\=left\]\:left-0[data-position*="left"] {
|
|
1345
|
+
left: 0px;
|
|
1346
|
+
}
|
|
1347
|
+
.data-\[position\*\=right\]\:right-\(--toast-inset\)[data-position*="right"] {
|
|
1348
|
+
right: var(--toast-inset);
|
|
1349
|
+
}
|
|
1350
|
+
.data-\[position\*\=right\]\:right-0[data-position*="right"] {
|
|
1351
|
+
right: 0px;
|
|
1352
|
+
}
|
|
1353
|
+
.data-\[position\*\=right\]\:left-auto[data-position*="right"] {
|
|
1354
|
+
left: auto;
|
|
1355
|
+
}
|
|
1356
|
+
.data-\[position\*\=top\]\:top-\(--toast-inset\)[data-position*="top"] {
|
|
1357
|
+
top: var(--toast-inset);
|
|
1358
|
+
}
|
|
1359
|
+
.data-\[position\*\=top\]\:top-0[data-position*="top"] {
|
|
1360
|
+
top: 0px;
|
|
1361
|
+
}
|
|
1362
|
+
.data-\[position\*\=top\]\:bottom-auto[data-position*="top"] {
|
|
1363
|
+
bottom: auto;
|
|
1364
|
+
}
|
|
1365
|
+
.data-\[position\*\=top\]\:origin-\[50\%_calc\(50\%-50\%\*min\(var\(--toast-index\,0\)\,1\)\)\][data-position*="top"] {
|
|
1366
|
+
transform-origin: 50% calc(50% - 50% * min(var(--toast-index,0), 1));
|
|
1367
|
+
}
|
|
1368
|
+
.data-\[position\*\=top\]\:transform-\[translateX\(var\(--toast-swipe-movement-x\)\)_translateY\(calc\(var\(--toast-swipe-movement-y\)\+\(var\(--toast-index\)\*var\(--toast-peek\)\)\+\(var\(--toast-shrink\)\*var\(--toast-calc-height\)\)\)\)_scale\(var\(--toast-scale\)\)\][data-position*="top"] {
|
|
1369
|
+
transform: translateX(var(--toast-swipe-movement-x)) translateY(calc(var(--toast-swipe-movement-y) + (var(--toast-index) * var(--toast-peek)) + (var(--toast-shrink) * var(--toast-calc-height)))) scale(var(--toast-scale));
|
|
1370
|
+
}
|
|
1371
|
+
.data-\[position\*\=top\]\:\[--toast-calc-offset-y\:calc\(var\(--toast-offset-y\)\+var\(--toast-index\)\*var\(--toast-gap\)\+var\(--toast-swipe-movement-y\)\)\][data-position*="top"] {
|
|
1372
|
+
--toast-calc-offset-y: calc(var(--toast-offset-y) + var(--toast-index) * var(--toast-gap) + var(--toast-swipe-movement-y));
|
|
1373
|
+
}
|
|
1374
|
+
.data-\[position\*\=top\]\:after\:top-full[data-position*="top"]::after {
|
|
1375
|
+
content: var(--tw-content);
|
|
1376
|
+
top: 100%;
|
|
1377
|
+
}
|
|
1378
|
+
.data-\[position\*\=top\]\:data-starting-style\:transform-\[translateY\(calc\(-100\%-var\(--toast-inset\)\)\)\][data-position*="top"][data-starting-style] {
|
|
1379
|
+
transform: translateY(calc(-100% - var(--toast-inset)));
|
|
1380
|
+
}
|
|
1381
|
+
.data-\[side\=bottom\]\:top-1[data-side="bottom"] {
|
|
1382
|
+
top: var(--spacing);
|
|
1383
|
+
}
|
|
1384
|
+
.data-\[side\=inline-end\]\:top-1\/2\![data-side="inline-end"] {
|
|
1385
|
+
top: calc(1 / 2 * 100%) !important;
|
|
1386
|
+
}
|
|
1387
|
+
.data-\[side\=inline-end\]\:-left-1[data-side="inline-end"] {
|
|
1388
|
+
left: calc(var(--spacing) * -1);
|
|
1389
|
+
}
|
|
1390
|
+
.data-\[side\=inline-end\]\:-translate-y-1\/2[data-side="inline-end"] {
|
|
1391
|
+
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
1392
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1393
|
+
}
|
|
1394
|
+
.data-\[side\=inline-start\]\:top-1\/2\![data-side="inline-start"] {
|
|
1395
|
+
top: calc(1 / 2 * 100%) !important;
|
|
1396
|
+
}
|
|
1397
|
+
.data-\[side\=inline-start\]\:-right-1[data-side="inline-start"] {
|
|
1398
|
+
right: calc(var(--spacing) * -1);
|
|
1399
|
+
}
|
|
1400
|
+
.data-\[side\=inline-start\]\:-translate-y-1\/2[data-side="inline-start"] {
|
|
1401
|
+
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
1402
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1403
|
+
}
|
|
1404
|
+
.data-\[side\=left\]\:top-1\/2\![data-side="left"] {
|
|
1405
|
+
top: calc(1 / 2 * 100%) !important;
|
|
1406
|
+
}
|
|
1407
|
+
.data-\[side\=left\]\:-right-1[data-side="left"] {
|
|
1408
|
+
right: calc(var(--spacing) * -1);
|
|
1409
|
+
}
|
|
1410
|
+
.data-\[side\=left\]\:-translate-y-1\/2[data-side="left"] {
|
|
1411
|
+
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
1412
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1413
|
+
}
|
|
1414
|
+
.data-\[side\=right\]\:top-1\/2\![data-side="right"] {
|
|
1415
|
+
top: calc(1 / 2 * 100%) !important;
|
|
1416
|
+
}
|
|
1417
|
+
.data-\[side\=right\]\:-left-1[data-side="right"] {
|
|
1418
|
+
left: calc(var(--spacing) * -1);
|
|
1419
|
+
}
|
|
1420
|
+
.data-\[side\=right\]\:-translate-y-1\/2[data-side="right"] {
|
|
1421
|
+
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
1422
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1423
|
+
}
|
|
1424
|
+
.data-\[side\=top\]\:-bottom-2\.5[data-side="top"] {
|
|
1425
|
+
bottom: calc(var(--spacing) * -2.5);
|
|
1426
|
+
}
|
|
1427
|
+
:is(.\*\*\:data-\[slot\=kbd\]\:relative *)[data-slot="kbd"] {
|
|
1428
|
+
position: relative;
|
|
1429
|
+
}
|
|
1430
|
+
:is(.\*\*\:data-\[slot\=kbd\]\:isolate *)[data-slot="kbd"] {
|
|
1431
|
+
isolation: isolate;
|
|
1432
|
+
}
|
|
1433
|
+
:is(.\*\*\:data-\[slot\=kbd\]\:z-50 *)[data-slot="kbd"] {
|
|
1434
|
+
z-index: 50;
|
|
1435
|
+
}
|
|
1436
|
+
:is(.\*\*\:data-\[slot\=kbd\]\:rounded-sm *)[data-slot="kbd"] {
|
|
1437
|
+
border-radius: calc(var(--radius) * 0.6);
|
|
1438
|
+
}
|
|
1439
|
+
.data-ending-style\:data-\[swipe-direction\=down\]\:transform-\[translateY\(calc\(var\(--toast-swipe-movement-y\)\+100\%\+var\(--toast-inset\)\)\)\][data-ending-style][data-swipe-direction="down"] {
|
|
1440
|
+
transform: translateY(calc(var(--toast-swipe-movement-y) + 100% + var(--toast-inset)));
|
|
1441
|
+
}
|
|
1442
|
+
.data-expanded\:data-ending-style\:data-\[swipe-direction\=down\]\:transform-\[translateY\(calc\(var\(--toast-swipe-movement-y\)\+100\%\+var\(--toast-inset\)\)\)\][data-expanded][data-ending-style][data-swipe-direction="down"] {
|
|
1443
|
+
transform: translateY(calc(var(--toast-swipe-movement-y) + 100% + var(--toast-inset)));
|
|
1444
|
+
}
|
|
1445
|
+
.data-ending-style\:data-\[swipe-direction\=left\]\:transform-\[translateX\(calc\(var\(--toast-swipe-movement-x\)-100\%-var\(--toast-inset\)\)\)_translateY\(var\(--toast-calc-offset-y\)\)\][data-ending-style][data-swipe-direction="left"] {
|
|
1446
|
+
transform: translateX(calc(var(--toast-swipe-movement-x) - 100% - var(--toast-inset))) translateY(var(--toast-calc-offset-y));
|
|
1447
|
+
}
|
|
1448
|
+
.data-expanded\:data-ending-style\:data-\[swipe-direction\=left\]\:transform-\[translateX\(calc\(var\(--toast-swipe-movement-x\)-100\%-var\(--toast-inset\)\)\)_translateY\(var\(--toast-calc-offset-y\)\)\][data-expanded][data-ending-style][data-swipe-direction="left"] {
|
|
1449
|
+
transform: translateX(calc(var(--toast-swipe-movement-x) - 100% - var(--toast-inset))) translateY(var(--toast-calc-offset-y));
|
|
1450
|
+
}
|
|
1451
|
+
.data-ending-style\:data-\[swipe-direction\=right\]\:transform-\[translateX\(calc\(var\(--toast-swipe-movement-x\)\+100\%\+var\(--toast-inset\)\)\)_translateY\(var\(--toast-calc-offset-y\)\)\][data-ending-style][data-swipe-direction="right"] {
|
|
1452
|
+
transform: translateX(calc(var(--toast-swipe-movement-x) + 100% + var(--toast-inset))) translateY(var(--toast-calc-offset-y));
|
|
1453
|
+
}
|
|
1454
|
+
.data-expanded\:data-ending-style\:data-\[swipe-direction\=right\]\:transform-\[translateX\(calc\(var\(--toast-swipe-movement-x\)\+100\%\+var\(--toast-inset\)\)\)_translateY\(var\(--toast-calc-offset-y\)\)\][data-expanded][data-ending-style][data-swipe-direction="right"] {
|
|
1455
|
+
transform: translateX(calc(var(--toast-swipe-movement-x) + 100% + var(--toast-inset))) translateY(var(--toast-calc-offset-y));
|
|
1456
|
+
}
|
|
1457
|
+
.data-ending-style\:data-\[swipe-direction\=up\]\:transform-\[translateY\(calc\(var\(--toast-swipe-movement-y\)-100\%-var\(--toast-inset\)\)\)\][data-ending-style][data-swipe-direction="up"] {
|
|
1458
|
+
transform: translateY(calc(var(--toast-swipe-movement-y) - 100% - var(--toast-inset)));
|
|
1459
|
+
}
|
|
1460
|
+
.data-expanded\:data-ending-style\:data-\[swipe-direction\=up\]\:transform-\[translateY\(calc\(var\(--toast-swipe-movement-y\)-100\%-var\(--toast-inset\)\)\)\][data-expanded][data-ending-style][data-swipe-direction="up"] {
|
|
1461
|
+
transform: translateY(calc(var(--toast-swipe-movement-y) - 100% - var(--toast-inset)));
|
|
1462
|
+
}
|
|
1463
|
+
@media (width >= 40rem) {
|
|
1464
|
+
.sm\:inline {
|
|
1465
|
+
display: inline;
|
|
1466
|
+
}
|
|
1467
|
+
.sm\:size-6 {
|
|
1468
|
+
width: calc(var(--spacing) * 6);
|
|
1469
|
+
height: calc(var(--spacing) * 6);
|
|
1470
|
+
}
|
|
1471
|
+
.sm\:size-7 {
|
|
1472
|
+
width: calc(var(--spacing) * 7);
|
|
1473
|
+
height: calc(var(--spacing) * 7);
|
|
1474
|
+
}
|
|
1475
|
+
.sm\:size-8 {
|
|
1476
|
+
width: calc(var(--spacing) * 8);
|
|
1477
|
+
height: calc(var(--spacing) * 8);
|
|
1478
|
+
}
|
|
1479
|
+
.sm\:size-9 {
|
|
1480
|
+
width: calc(var(--spacing) * 9);
|
|
1481
|
+
height: calc(var(--spacing) * 9);
|
|
1482
|
+
}
|
|
1483
|
+
.sm\:size-10 {
|
|
1484
|
+
width: calc(var(--spacing) * 10);
|
|
1485
|
+
height: calc(var(--spacing) * 10);
|
|
1486
|
+
}
|
|
1487
|
+
.sm\:h-6 {
|
|
1488
|
+
height: calc(var(--spacing) * 6);
|
|
1489
|
+
}
|
|
1490
|
+
.sm\:h-7 {
|
|
1491
|
+
height: calc(var(--spacing) * 7);
|
|
1492
|
+
}
|
|
1493
|
+
.sm\:h-8 {
|
|
1494
|
+
height: calc(var(--spacing) * 8);
|
|
1495
|
+
}
|
|
1496
|
+
.sm\:h-9 {
|
|
1497
|
+
height: calc(var(--spacing) * 9);
|
|
1498
|
+
}
|
|
1499
|
+
.sm\:h-10 {
|
|
1500
|
+
height: calc(var(--spacing) * 10);
|
|
1501
|
+
}
|
|
1502
|
+
.sm\:text-base {
|
|
1503
|
+
font-size: var(--text-base);
|
|
1504
|
+
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
1505
|
+
}
|
|
1506
|
+
.sm\:text-xs {
|
|
1507
|
+
font-size: var(--text-xs);
|
|
1508
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
1509
|
+
}
|
|
1510
|
+
.sm\:\[--toast-inset\:--spacing\(8\)\] {
|
|
1511
|
+
--toast-inset: calc(var(--spacing) * 8);
|
|
1512
|
+
}
|
|
1513
|
+
}
|
|
1514
|
+
@media (width >= 48rem) {
|
|
1515
|
+
.md\:sticky {
|
|
1516
|
+
position: sticky;
|
|
1517
|
+
}
|
|
1518
|
+
.md\:top-24 {
|
|
1519
|
+
top: calc(var(--spacing) * 24);
|
|
1520
|
+
}
|
|
1521
|
+
.md\:w-48 {
|
|
1522
|
+
width: calc(var(--spacing) * 48);
|
|
1523
|
+
}
|
|
1524
|
+
.md\:flex-col {
|
|
1525
|
+
flex-direction: column;
|
|
1526
|
+
}
|
|
1527
|
+
.md\:flex-row {
|
|
1528
|
+
flex-direction: row;
|
|
1529
|
+
}
|
|
1530
|
+
.md\:gap-2 {
|
|
1531
|
+
gap: calc(var(--spacing) * 2);
|
|
1532
|
+
}
|
|
1533
|
+
.md\:gap-5 {
|
|
1534
|
+
gap: calc(var(--spacing) * 5);
|
|
1535
|
+
}
|
|
1536
|
+
.md\:gap-8 {
|
|
1537
|
+
gap: calc(var(--spacing) * 8);
|
|
1538
|
+
}
|
|
1539
|
+
.md\:gap-16 {
|
|
1540
|
+
gap: calc(var(--spacing) * 16);
|
|
1541
|
+
}
|
|
1542
|
+
.md\:gap-y-1 {
|
|
1543
|
+
row-gap: var(--spacing);
|
|
1544
|
+
}
|
|
1545
|
+
.md\:gap-y-4 {
|
|
1546
|
+
row-gap: calc(var(--spacing) * 4);
|
|
1547
|
+
}
|
|
1548
|
+
.md\:self-start {
|
|
1549
|
+
align-self: flex-start;
|
|
1550
|
+
}
|
|
1551
|
+
.md\:py-24 {
|
|
1552
|
+
padding-block: calc(var(--spacing) * 24);
|
|
1553
|
+
}
|
|
1554
|
+
}
|
|
1555
|
+
.dark\:bg-white:is(.dark *) {
|
|
1556
|
+
background-color: var(--color-white);
|
|
1557
|
+
}
|
|
1558
|
+
.dark\:text-white:is(.dark *) {
|
|
1559
|
+
color: var(--color-white);
|
|
1560
|
+
}
|
|
1561
|
+
.\[\&_\.line\]\:min-h-6 .line {
|
|
1562
|
+
min-height: calc(var(--spacing) * 6);
|
|
1563
|
+
}
|
|
1564
|
+
.\[\&_code\]\:bg-transparent\! code {
|
|
1565
|
+
background-color: transparent !important;
|
|
1566
|
+
}
|
|
1567
|
+
.\[\&_code\]\:p-0 code {
|
|
1568
|
+
padding: 0px;
|
|
1569
|
+
}
|
|
1570
|
+
.\[\&_img\]\:size-full img {
|
|
1571
|
+
width: 100%;
|
|
1572
|
+
height: 100%;
|
|
1573
|
+
}
|
|
1574
|
+
.\[\&_img\]\:object-cover img {
|
|
1575
|
+
object-fit: cover;
|
|
1576
|
+
}
|
|
1577
|
+
.\[\&_pre\]\:m-0 pre {
|
|
1578
|
+
margin: 0px;
|
|
1579
|
+
}
|
|
1580
|
+
.\[\&_pre\]\:overflow-x-auto pre {
|
|
1581
|
+
overflow-x: auto;
|
|
1582
|
+
}
|
|
1583
|
+
.\[\&_pre\]\:bg-transparent\! pre {
|
|
1584
|
+
background-color: transparent !important;
|
|
1585
|
+
}
|
|
1586
|
+
.\[\&_pre\]\:px-5 pre {
|
|
1587
|
+
padding-inline: calc(var(--spacing) * 5);
|
|
1588
|
+
}
|
|
1589
|
+
.\[\&_pre\]\:py-4 pre {
|
|
1590
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1591
|
+
}
|
|
1592
|
+
.\[\&_pre\]\:font-mono pre {
|
|
1593
|
+
font-family: var(--font-geist-mono);
|
|
1594
|
+
}
|
|
1595
|
+
.\[\&_pre\]\:leading-relaxed pre {
|
|
1596
|
+
--tw-leading: var(--leading-relaxed);
|
|
1597
|
+
line-height: var(--leading-relaxed);
|
|
1598
|
+
}
|
|
1599
|
+
.\[\&_pre\:\:-webkit-scrollbar\]\:h-2 pre::-webkit-scrollbar {
|
|
1600
|
+
height: calc(var(--spacing) * 2);
|
|
1601
|
+
}
|
|
1602
|
+
.\[\&_pre\:\:-webkit-scrollbar-thumb\]\:rounded-full pre::-webkit-scrollbar-thumb {
|
|
1603
|
+
border-radius: calc(infinity * 1px);
|
|
1604
|
+
}
|
|
1605
|
+
.\[\&_pre\:\:-webkit-scrollbar-thumb\]\:bg-code-foreground\/10 pre::-webkit-scrollbar-thumb {
|
|
1606
|
+
background-color: var(--code-foreground);
|
|
1607
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1608
|
+
background-color: color-mix(in oklab, var(--code-foreground) 10%, transparent);
|
|
1609
|
+
}
|
|
1610
|
+
}
|
|
1611
|
+
.\[\&_pre\:\:-webkit-scrollbar-thumb\:hover\]\:bg-code-foreground\/20 pre::-webkit-scrollbar-thumb:hover {
|
|
1612
|
+
background-color: var(--code-foreground);
|
|
1613
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1614
|
+
background-color: color-mix(in oklab, var(--code-foreground) 20%, transparent);
|
|
1615
|
+
}
|
|
1616
|
+
}
|
|
1617
|
+
.\[\&_pre\:\:-webkit-scrollbar-track\]\:bg-transparent pre::-webkit-scrollbar-track {
|
|
1618
|
+
background-color: transparent;
|
|
1619
|
+
}
|
|
1620
|
+
.\[\&_svg\]\:pointer-events-none svg {
|
|
1621
|
+
pointer-events: none;
|
|
1622
|
+
}
|
|
1623
|
+
.\[\&_svg\]\:shrink-0 svg {
|
|
1624
|
+
flex-shrink: 0;
|
|
1625
|
+
}
|
|
1626
|
+
.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*='size-']) {
|
|
1627
|
+
width: calc(var(--spacing) * 4);
|
|
1628
|
+
height: calc(var(--spacing) * 4);
|
|
1629
|
+
}
|
|
1630
|
+
.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-5 svg:not([class*='size-']) {
|
|
1631
|
+
width: calc(var(--spacing) * 5);
|
|
1632
|
+
height: calc(var(--spacing) * 5);
|
|
1633
|
+
}
|
|
1634
|
+
.not-in-data-\[slot\=input-group\]\:\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4:not(:where([data-slot="input-group"]) *) svg:not([class*='size-']) {
|
|
1635
|
+
width: calc(var(--spacing) * 4);
|
|
1636
|
+
height: calc(var(--spacing) * 4);
|
|
1637
|
+
}
|
|
1638
|
+
@media (width >= 40rem) {
|
|
1639
|
+
.sm\:\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-3\.5 svg:not([class*='size-']) {
|
|
1640
|
+
width: calc(var(--spacing) * 3.5);
|
|
1641
|
+
height: calc(var(--spacing) * 3.5);
|
|
1642
|
+
}
|
|
1643
|
+
.sm\:\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4\.5 svg:not([class*='size-']) {
|
|
1644
|
+
width: calc(var(--spacing) * 4.5);
|
|
1645
|
+
height: calc(var(--spacing) * 4.5);
|
|
1646
|
+
}
|
|
1647
|
+
.sm\:not-in-data-\[slot\=input-group\]\:\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-3\.5:not(:where([data-slot="input-group"]) *) svg:not([class*='size-']) {
|
|
1648
|
+
width: calc(var(--spacing) * 3.5);
|
|
1649
|
+
height: calc(var(--spacing) * 3.5);
|
|
1650
|
+
}
|
|
1651
|
+
}
|
|
1652
|
+
.\[\&\+\[data-slot\=item-content\]\]\:flex-none + [data-slot=item-content] {
|
|
1653
|
+
flex: none;
|
|
1654
|
+
}
|
|
1655
|
+
.\[a\]\:transition-colors:is(a) {
|
|
1656
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
1657
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1658
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1659
|
+
}
|
|
1660
|
+
@media (hover: hover) {
|
|
1661
|
+
.\[a\]\:hover\:bg-muted:is(a):hover {
|
|
1662
|
+
background-color: var(--muted);
|
|
1663
|
+
}
|
|
1664
|
+
}
|
|
1665
|
+
.has-\[select\[aria-hidden\=true\]\:last-child\]\:\[\&\>\[data-slot\=select-trigger\]\:last-of-type\]\:rounded-e-md:has(:is(select[aria-hidden=true]:last-child)) > [data-slot=select-trigger]:last-of-type {
|
|
1666
|
+
border-start-end-radius: calc(var(--radius) * 0.8);
|
|
1667
|
+
border-end-end-radius: calc(var(--radius) * 0.8);
|
|
1668
|
+
}
|
|
1669
|
+
.\[\&\>\[data-slot\=select-trigger\]\:not\(\[class\*\=\'w-\'\]\)\]\:w-fit > [data-slot=select-trigger]:not([class*='w-']) {
|
|
1670
|
+
width: fit-content;
|
|
1671
|
+
}
|
|
1672
|
+
.\[\&\>\[data-slot\]\:not\(\:has\(\~\[data-slot\]\)\)\]\:rounded-e-md\! > [data-slot]:not(:has( ~ [data-slot])) {
|
|
1673
|
+
border-start-end-radius: calc(var(--radius) * 0.8) !important;
|
|
1674
|
+
border-end-end-radius: calc(var(--radius) * 0.8) !important;
|
|
1675
|
+
}
|
|
1676
|
+
.\[\&\>\[data-slot\]\:not\(\:has\(\~\[data-slot\]\)\)\]\:rounded-b-md\! > [data-slot]:not(:has( ~ [data-slot])) {
|
|
1677
|
+
border-bottom-right-radius: calc(var(--radius) * 0.8) !important;
|
|
1678
|
+
border-bottom-left-radius: calc(var(--radius) * 0.8) !important;
|
|
1679
|
+
}
|
|
1680
|
+
.\[\&\>\[data-slot\]\~\[data-slot\]\]\:rounded-s-none > [data-slot] ~ [data-slot] {
|
|
1681
|
+
border-start-start-radius: 0;
|
|
1682
|
+
border-end-start-radius: 0;
|
|
1683
|
+
}
|
|
1684
|
+
.\[\&\>\[data-slot\]\~\[data-slot\]\]\:rounded-t-none > [data-slot] ~ [data-slot] {
|
|
1685
|
+
border-top-left-radius: 0;
|
|
1686
|
+
border-top-right-radius: 0;
|
|
1687
|
+
}
|
|
1688
|
+
.\[\&\>\[data-slot\]\~\[data-slot\]\]\:border-s-0 > [data-slot] ~ [data-slot] {
|
|
1689
|
+
border-inline-start-style: var(--tw-border-style);
|
|
1690
|
+
border-inline-start-width: 0px;
|
|
1691
|
+
}
|
|
1692
|
+
.\[\&\>\[data-slot\]\~\[data-slot\]\]\:border-t-0 > [data-slot] ~ [data-slot] {
|
|
1693
|
+
border-top-style: var(--tw-border-style);
|
|
1694
|
+
border-top-width: 0px;
|
|
1695
|
+
}
|
|
1696
|
+
.\[\&\>a\]\:underline > a {
|
|
1697
|
+
text-decoration-line: underline;
|
|
1698
|
+
}
|
|
1699
|
+
.\[\&\>a\]\:underline-offset-4 > a {
|
|
1700
|
+
text-underline-offset: 4px;
|
|
1701
|
+
}
|
|
1702
|
+
.\[\&\>a\:hover\]\:text-primary > a:hover {
|
|
1703
|
+
color: var(--primary);
|
|
1704
|
+
}
|
|
1705
|
+
.\[\&\>input\]\:flex-1 > input {
|
|
1706
|
+
flex: 1;
|
|
1707
|
+
}
|
|
1708
|
+
.\[\&\>svg\]\:h-lh > svg {
|
|
1709
|
+
height: 1lh;
|
|
1710
|
+
}
|
|
1711
|
+
.\[\&\>svg\]\:w-4 > svg {
|
|
1712
|
+
width: calc(var(--spacing) * 4);
|
|
1713
|
+
}
|
|
1714
|
+
}
|
|
1715
|
+
@layer components {
|
|
1716
|
+
.typeset {
|
|
1717
|
+
--typeset-font-body: inherit;
|
|
1718
|
+
--typeset-font-heading: var(--font-heading);
|
|
1719
|
+
--typeset-font-mono: var(--font-mono);
|
|
1720
|
+
--typeset-size: 1em;
|
|
1721
|
+
--typeset-leading: 1.8;
|
|
1722
|
+
--typeset-flow: 1.5em;
|
|
1723
|
+
--typeset-body: currentColor;
|
|
1724
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1725
|
+
--typeset-body: color-mix(in oklab, currentColor 82%, transparent);
|
|
1726
|
+
}
|
|
1727
|
+
}
|
|
1728
|
+
.typeset-docs {
|
|
1729
|
+
--typeset-font-body: var(--font-geist);
|
|
1730
|
+
--typeset-font-heading: var(--font-geist);
|
|
1731
|
+
--typeset-font-mono: var(--font-geist-mono);
|
|
1732
|
+
--typeset-size: 14px;
|
|
1733
|
+
--typeset-leading: 1.6;
|
|
1734
|
+
--typeset-flow: 1.75em;
|
|
1735
|
+
}
|
|
1736
|
+
.dark .typeset {
|
|
1737
|
+
--typeset-leading: 1.85;
|
|
1738
|
+
}
|
|
1739
|
+
.dark .typeset-docs {
|
|
1740
|
+
--typeset-leading: 1.6;
|
|
1741
|
+
}
|
|
1742
|
+
.typeset {
|
|
1743
|
+
font-family: var(--typeset-font-body);
|
|
1744
|
+
font-size: calc(var(--typeset-size) * 1.125);
|
|
1745
|
+
line-height: var(--typeset-leading);
|
|
1746
|
+
color: var(--color-foreground, currentColor);
|
|
1747
|
+
overflow-wrap: break-word;
|
|
1748
|
+
margin-trim: block-start;
|
|
1749
|
+
@media (min-width: 48rem), print {
|
|
1750
|
+
font-size: var(--typeset-size);
|
|
1751
|
+
}
|
|
1752
|
+
--typeset-muted: var(
|
|
1753
|
+
--color-muted-foreground,
|
|
1754
|
+
currentColor
|
|
1755
|
+
);
|
|
1756
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1757
|
+
--typeset-muted: var(
|
|
1758
|
+
--color-muted-foreground,
|
|
1759
|
+
color-mix(in oklab, currentColor 60%, transparent)
|
|
1760
|
+
);
|
|
1761
|
+
}
|
|
1762
|
+
--typeset-rule: var(
|
|
1763
|
+
--color-border,
|
|
1764
|
+
currentColor
|
|
1765
|
+
);
|
|
1766
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1767
|
+
--typeset-rule: var(
|
|
1768
|
+
--color-border,
|
|
1769
|
+
color-mix(in oklab, currentColor 20%, transparent)
|
|
1770
|
+
);
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1773
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(p) {
|
|
1774
|
+
margin-block-start: var(--typeset-flow);
|
|
1775
|
+
margin-block-end: 0;
|
|
1776
|
+
color: var(--typeset-body);
|
|
1777
|
+
}
|
|
1778
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(h1, h2, h3, h4, h5, h6) {
|
|
1779
|
+
color: var(--color-foreground, currentColor);
|
|
1780
|
+
font-family: var(--typeset-font-heading);
|
|
1781
|
+
font-weight: 600;
|
|
1782
|
+
margin-block-end: 0;
|
|
1783
|
+
}
|
|
1784
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(h1) {
|
|
1785
|
+
font-size: 1.45em;
|
|
1786
|
+
line-height: 1.3;
|
|
1787
|
+
margin-block-start: var(--typeset-flow);
|
|
1788
|
+
}
|
|
1789
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(h2) {
|
|
1790
|
+
font-size: 1.25em;
|
|
1791
|
+
line-height: 1.4;
|
|
1792
|
+
margin-block-start: calc(var(--typeset-flow) * 1.4);
|
|
1793
|
+
}
|
|
1794
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(h3) {
|
|
1795
|
+
font-size: 1.125em;
|
|
1796
|
+
line-height: 1.45;
|
|
1797
|
+
margin-block-start: var(--typeset-flow);
|
|
1798
|
+
}
|
|
1799
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(h4) {
|
|
1800
|
+
font-size: 1em;
|
|
1801
|
+
line-height: 1.5;
|
|
1802
|
+
margin-block-start: var(--typeset-flow);
|
|
1803
|
+
}
|
|
1804
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(h5) {
|
|
1805
|
+
font-size: 0.875em;
|
|
1806
|
+
line-height: 1.5;
|
|
1807
|
+
font-weight: 500;
|
|
1808
|
+
color: var(--typeset-muted);
|
|
1809
|
+
margin-block-start: calc(var(--typeset-flow) / 0.875);
|
|
1810
|
+
}
|
|
1811
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(h6) {
|
|
1812
|
+
font-size: 0.8125em;
|
|
1813
|
+
line-height: 1.5;
|
|
1814
|
+
font-weight: 500;
|
|
1815
|
+
letter-spacing: 0.08em;
|
|
1816
|
+
text-transform: uppercase;
|
|
1817
|
+
color: var(--typeset-muted);
|
|
1818
|
+
margin-block-start: calc(var(--typeset-flow) / 0.8125);
|
|
1819
|
+
}
|
|
1820
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where([id]) {
|
|
1821
|
+
scroll-margin-block-start: var(--typeset-flow);
|
|
1822
|
+
}
|
|
1823
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(h1 + *, h2 + *, h3 + *, h4 + *, h5 + *, h6 + *) {
|
|
1824
|
+
margin-block-start: 1em;
|
|
1825
|
+
}
|
|
1826
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(:is(h1, h2, h3, h4) :is(code)) {
|
|
1827
|
+
font-size: 0.9em;
|
|
1828
|
+
}
|
|
1829
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(a) {
|
|
1830
|
+
color: inherit;
|
|
1831
|
+
font-weight: 500;
|
|
1832
|
+
text-decoration-line: underline;
|
|
1833
|
+
text-decoration-color: currentColor;
|
|
1834
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1835
|
+
text-decoration-color: color-mix(in oklab, currentColor 30%, transparent);
|
|
1836
|
+
}
|
|
1837
|
+
}
|
|
1838
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(a:hover) {
|
|
1839
|
+
text-decoration-color: currentColor;
|
|
1840
|
+
}
|
|
1841
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(a:focus-visible) {
|
|
1842
|
+
outline: 2px solid var(--color-ring, currentColor);
|
|
1843
|
+
outline-offset: 2px;
|
|
1844
|
+
border-radius: 0.125em;
|
|
1845
|
+
}
|
|
1846
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(:is(h1, h2, h3, h4, h5, h6) :is(a)) {
|
|
1847
|
+
font-weight: inherit;
|
|
1848
|
+
}
|
|
1849
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(strong, b) {
|
|
1850
|
+
font-weight: 600;
|
|
1851
|
+
}
|
|
1852
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(:is(h1, h2, h3, h4) :is(strong, b)) {
|
|
1853
|
+
font-weight: 600;
|
|
1854
|
+
}
|
|
1855
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(mark) {
|
|
1856
|
+
background-color: color-mix( in oklab, oklch(0.86 0.17 95) 40%, transparent );
|
|
1857
|
+
color: inherit;
|
|
1858
|
+
padding: 0.05em 0.15em;
|
|
1859
|
+
border-radius: 0.2em;
|
|
1860
|
+
}
|
|
1861
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(abbr[title]) {
|
|
1862
|
+
text-decoration-line: underline;
|
|
1863
|
+
text-decoration-style: dotted;
|
|
1864
|
+
text-underline-offset: 0.2em;
|
|
1865
|
+
cursor: help;
|
|
1866
|
+
}
|
|
1867
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(del, s) {
|
|
1868
|
+
color: var(--typeset-muted);
|
|
1869
|
+
text-decoration-line: line-through;
|
|
1870
|
+
}
|
|
1871
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(sup, sub) {
|
|
1872
|
+
font-size: 0.75em;
|
|
1873
|
+
line-height: 0;
|
|
1874
|
+
position: relative;
|
|
1875
|
+
vertical-align: baseline;
|
|
1876
|
+
}
|
|
1877
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(sup) {
|
|
1878
|
+
top: -0.5em;
|
|
1879
|
+
}
|
|
1880
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(sub) {
|
|
1881
|
+
bottom: -0.25em;
|
|
1882
|
+
}
|
|
1883
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(sup a) {
|
|
1884
|
+
text-decoration-line: none;
|
|
1885
|
+
font-weight: 500;
|
|
1886
|
+
}
|
|
1887
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(ul) {
|
|
1888
|
+
list-style-type: disc;
|
|
1889
|
+
}
|
|
1890
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(ol) {
|
|
1891
|
+
list-style-type: decimal;
|
|
1892
|
+
}
|
|
1893
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(ul ul) {
|
|
1894
|
+
list-style-type: circle;
|
|
1895
|
+
}
|
|
1896
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(ul ul ul) {
|
|
1897
|
+
list-style-type: square;
|
|
1898
|
+
}
|
|
1899
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(ol[type="a" i]) {
|
|
1900
|
+
list-style-type: lower-alpha;
|
|
1901
|
+
}
|
|
1902
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(ol[type="i" i]) {
|
|
1903
|
+
list-style-type: lower-roman;
|
|
1904
|
+
}
|
|
1905
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(ol[type="A" s]) {
|
|
1906
|
+
list-style-type: upper-alpha;
|
|
1907
|
+
}
|
|
1908
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(ol[type="I" s]) {
|
|
1909
|
+
list-style-type: upper-roman;
|
|
1910
|
+
}
|
|
1911
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(ul, ol) {
|
|
1912
|
+
margin-block-start: var(--typeset-flow);
|
|
1913
|
+
margin-block-end: 0;
|
|
1914
|
+
padding-inline-start: 1.5em;
|
|
1915
|
+
}
|
|
1916
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(li) {
|
|
1917
|
+
margin-block-start: 0.5em;
|
|
1918
|
+
padding-inline-start: 0.4em;
|
|
1919
|
+
color: var(--typeset-body);
|
|
1920
|
+
}
|
|
1921
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(li > p, li > ul, li > ol) {
|
|
1922
|
+
margin-block-start: 0.5em;
|
|
1923
|
+
}
|
|
1924
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(ul > li)::marker {
|
|
1925
|
+
color: var(--typeset-muted);
|
|
1926
|
+
}
|
|
1927
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(ol > li)::marker {
|
|
1928
|
+
color: var(--typeset-muted);
|
|
1929
|
+
}
|
|
1930
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(ul.contains-task-list) {
|
|
1931
|
+
list-style-type: none;
|
|
1932
|
+
padding-inline-start: 0.25em;
|
|
1933
|
+
}
|
|
1934
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(li.task-list-item > input[type="checkbox"]) {
|
|
1935
|
+
margin-inline-end: 0.5em;
|
|
1936
|
+
vertical-align: -0.1em;
|
|
1937
|
+
accent-color: var(--color-primary, currentColor);
|
|
1938
|
+
}
|
|
1939
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(details) {
|
|
1940
|
+
margin-block-start: var(--typeset-flow);
|
|
1941
|
+
margin-block-end: 0;
|
|
1942
|
+
}
|
|
1943
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(summary) {
|
|
1944
|
+
cursor: pointer;
|
|
1945
|
+
font-weight: 500;
|
|
1946
|
+
}
|
|
1947
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(summary)::marker {
|
|
1948
|
+
color: var(--typeset-muted);
|
|
1949
|
+
}
|
|
1950
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(kbd) {
|
|
1951
|
+
font-family: inherit;
|
|
1952
|
+
font-size: 0.85em;
|
|
1953
|
+
font-weight: 500;
|
|
1954
|
+
border: 1px solid var(--typeset-rule);
|
|
1955
|
+
border-block-end-width: 2px;
|
|
1956
|
+
border-radius: min(calc(var(--radius, 0.5em) * 0.6), 0.35em);
|
|
1957
|
+
padding: 0.0625em 0.35em;
|
|
1958
|
+
}
|
|
1959
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(dl) {
|
|
1960
|
+
margin-block-start: var(--typeset-flow);
|
|
1961
|
+
margin-block-end: 0;
|
|
1962
|
+
}
|
|
1963
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(dt) {
|
|
1964
|
+
font-weight: 500;
|
|
1965
|
+
margin-block-start: 1em;
|
|
1966
|
+
}
|
|
1967
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(dt + dt) {
|
|
1968
|
+
margin-block-start: 0.25em;
|
|
1969
|
+
}
|
|
1970
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(dd) {
|
|
1971
|
+
margin-block-start: 0.25em;
|
|
1972
|
+
margin-inline-start: 0;
|
|
1973
|
+
padding-inline-start: 1em;
|
|
1974
|
+
color: var(--typeset-muted);
|
|
1975
|
+
}
|
|
1976
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(:not(pre) > code) {
|
|
1977
|
+
background-color: var( --color-muted, currentColor );
|
|
1978
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1979
|
+
background-color: var( --color-muted, color-mix(in oklab, currentColor 8%, transparent) );
|
|
1980
|
+
}
|
|
1981
|
+
font-family: var(--typeset-font-mono);
|
|
1982
|
+
font-size: 0.85em;
|
|
1983
|
+
border-radius: min(calc(var(--radius, 0.5em) * 0.6), 0.35em);
|
|
1984
|
+
padding: 0.125em 0.3em;
|
|
1985
|
+
}
|
|
1986
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(pre) {
|
|
1987
|
+
background-color: var( --color-muted, currentColor );
|
|
1988
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1989
|
+
background-color: var( --color-muted, color-mix(in oklab, currentColor 8%, transparent) );
|
|
1990
|
+
}
|
|
1991
|
+
font-family: var(--typeset-font-mono);
|
|
1992
|
+
font-size: 0.875em;
|
|
1993
|
+
line-height: 1.5;
|
|
1994
|
+
tab-size: 2;
|
|
1995
|
+
direction: ltr;
|
|
1996
|
+
border-radius: var(--radius, 0.5em);
|
|
1997
|
+
padding: 0.75em 1em;
|
|
1998
|
+
overflow-x: auto;
|
|
1999
|
+
margin-block-start: calc(var(--typeset-flow) / 0.875);
|
|
2000
|
+
margin-block-end: 0;
|
|
2001
|
+
}
|
|
2002
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(pre code) {
|
|
2003
|
+
background-color: transparent;
|
|
2004
|
+
font-family: inherit;
|
|
2005
|
+
font-size: inherit;
|
|
2006
|
+
padding: 0;
|
|
2007
|
+
border-radius: 0;
|
|
2008
|
+
}
|
|
2009
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(blockquote) {
|
|
2010
|
+
border-inline-start: 2px solid var(--typeset-rule);
|
|
2011
|
+
padding-inline-start: 1em;
|
|
2012
|
+
margin-block-start: var(--typeset-flow);
|
|
2013
|
+
margin-block-end: 0;
|
|
2014
|
+
margin-inline: 0;
|
|
2015
|
+
}
|
|
2016
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(hr) {
|
|
2017
|
+
border: 0;
|
|
2018
|
+
border-block-start: 1px solid var(--typeset-rule);
|
|
2019
|
+
margin-block-start: calc(var(--typeset-flow) * 2.4);
|
|
2020
|
+
margin-block-end: 0;
|
|
2021
|
+
}
|
|
2022
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(hr + h1, hr + h2, hr + h3, hr + h4) {
|
|
2023
|
+
margin-block-start: var(--typeset-flow);
|
|
2024
|
+
}
|
|
2025
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(.footnotes, [data-footnotes]) {
|
|
2026
|
+
margin-block-start: calc(var(--typeset-flow) * 2);
|
|
2027
|
+
border-block-start: 1px solid var(--typeset-rule);
|
|
2028
|
+
padding-block-start: var(--typeset-flow);
|
|
2029
|
+
font-size: 0.875em;
|
|
2030
|
+
color: var(--typeset-muted);
|
|
2031
|
+
}
|
|
2032
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(math[display="block"]) {
|
|
2033
|
+
margin-block-start: var(--typeset-flow);
|
|
2034
|
+
margin-block-end: 0;
|
|
2035
|
+
overflow-x: auto;
|
|
2036
|
+
overflow-y: hidden;
|
|
2037
|
+
padding-block: 0.25em;
|
|
2038
|
+
}
|
|
2039
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(img, video) {
|
|
2040
|
+
border-radius: var(--radius, 0.5em);
|
|
2041
|
+
max-width: 100%;
|
|
2042
|
+
height: auto;
|
|
2043
|
+
margin-block-start: var(--typeset-flow);
|
|
2044
|
+
margin-block-end: 0;
|
|
2045
|
+
}
|
|
2046
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(p img) {
|
|
2047
|
+
margin-block-start: 0;
|
|
2048
|
+
}
|
|
2049
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(figure) {
|
|
2050
|
+
margin-block-start: var(--typeset-flow);
|
|
2051
|
+
margin-block-end: 0;
|
|
2052
|
+
margin-inline: 0;
|
|
2053
|
+
}
|
|
2054
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(figcaption, caption) {
|
|
2055
|
+
color: var(--typeset-muted);
|
|
2056
|
+
font-size: 0.875em;
|
|
2057
|
+
text-align: center;
|
|
2058
|
+
margin-block-start: calc(0.75em / 0.875);
|
|
2059
|
+
}
|
|
2060
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(caption) {
|
|
2061
|
+
caption-side: bottom;
|
|
2062
|
+
}
|
|
2063
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(table) {
|
|
2064
|
+
max-width: 100%;
|
|
2065
|
+
font-size: 1em;
|
|
2066
|
+
line-height: 1.5;
|
|
2067
|
+
font-variant-numeric: tabular-nums;
|
|
2068
|
+
border-collapse: separate;
|
|
2069
|
+
border-spacing: 0;
|
|
2070
|
+
border-block-end: 1px solid var(--typeset-rule);
|
|
2071
|
+
margin-block-start: var(--typeset-flow);
|
|
2072
|
+
margin-block-end: 0;
|
|
2073
|
+
}
|
|
2074
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(.typeset-scroll) {
|
|
2075
|
+
overflow-x: auto;
|
|
2076
|
+
margin-block-start: var(--typeset-flow);
|
|
2077
|
+
}
|
|
2078
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(.typeset-scroll > *) {
|
|
2079
|
+
margin-block-start: 0;
|
|
2080
|
+
}
|
|
2081
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(.typeset-scroll table) {
|
|
2082
|
+
width: max-content;
|
|
2083
|
+
max-width: none;
|
|
2084
|
+
}
|
|
2085
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(thead th) {
|
|
2086
|
+
font-weight: 500;
|
|
2087
|
+
text-align: start;
|
|
2088
|
+
white-space: nowrap;
|
|
2089
|
+
padding: 0.65em 1em;
|
|
2090
|
+
}
|
|
2091
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(:is(tbody, tfoot) :is(td, th)) {
|
|
2092
|
+
padding: 0.75em 1em;
|
|
2093
|
+
text-align: start;
|
|
2094
|
+
vertical-align: top;
|
|
2095
|
+
border-block-start: 1px solid var(--typeset-rule);
|
|
2096
|
+
}
|
|
2097
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(td) {
|
|
2098
|
+
color: var(--typeset-body);
|
|
2099
|
+
}
|
|
2100
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(tbody th, tfoot th) {
|
|
2101
|
+
font-weight: 500;
|
|
2102
|
+
}
|
|
2103
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(th:first-child, td:first-child) {
|
|
2104
|
+
padding-inline-start: 0;
|
|
2105
|
+
}
|
|
2106
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(th[align="center"], td[align="center"]) {
|
|
2107
|
+
text-align: center;
|
|
2108
|
+
}
|
|
2109
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(th[align="right"], td[align="right"]) {
|
|
2110
|
+
text-align: end;
|
|
2111
|
+
}
|
|
2112
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(li > blockquote, li > table, li > figure) {
|
|
2113
|
+
margin-block-start: 0.5em;
|
|
2114
|
+
}
|
|
2115
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(li > pre) {
|
|
2116
|
+
margin-block-start: calc(0.5em / 0.875);
|
|
2117
|
+
}
|
|
2118
|
+
@media print {
|
|
2119
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(pre, table, blockquote, figure) {
|
|
2120
|
+
break-inside: avoid;
|
|
2121
|
+
}
|
|
2122
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(h1, h2, h3, h4) {
|
|
2123
|
+
break-after: avoid;
|
|
2124
|
+
}
|
|
2125
|
+
}
|
|
2126
|
+
@media (forced-colors: active) {
|
|
2127
|
+
.typeset *:not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ):where(:not(pre) > code) {
|
|
2128
|
+
border: 1px solid;
|
|
2129
|
+
}
|
|
2130
|
+
}
|
|
2131
|
+
.typeset > :where(:first-child):not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ), .typeset > :where(:first-child) > :where(:first-child):not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ), .typeset :where( li > :first-child, blockquote > :first-child, td > :first-child, th > :first-child, dd > :first-child, figure > :first-child, figure > picture > img ):not( :where( .not-typeset, [data-not-typeset], .not-typeset *, [data-not-typeset] * ) ) {
|
|
2132
|
+
margin-block-start: 0;
|
|
2133
|
+
}
|
|
2134
|
+
}
|
|
2135
|
+
:root {
|
|
2136
|
+
--background: oklch(0.99 0.002 240);
|
|
2137
|
+
--foreground: oklch(0.145 0 0);
|
|
2138
|
+
--card: oklch(0.967 0.001 286.375);
|
|
2139
|
+
--card-foreground: oklch(0.145 0 0);
|
|
2140
|
+
--popover: oklch(0.99 0.002 240);
|
|
2141
|
+
--popover-foreground: oklch(0.145 0 0);
|
|
2142
|
+
--code: oklch(0.967 0.001 286.375);
|
|
2143
|
+
--code-foreground: oklch(0.145 0 0);
|
|
2144
|
+
--primary: var(--foreground);
|
|
2145
|
+
--primary-foreground: var(--background);
|
|
2146
|
+
--secondary: oklch(0.967 0.001 286.375);
|
|
2147
|
+
--secondary-foreground: oklch(0.21 0.006 285.885);
|
|
2148
|
+
--muted: oklch(0.97 0 0);
|
|
2149
|
+
--muted-foreground: oklch(0.556 0 0);
|
|
2150
|
+
--accent: oklch(0.97 0 0);
|
|
2151
|
+
--accent-foreground: oklch(0.205 0 0);
|
|
2152
|
+
--destructive: oklch(0.577 0.245 27.325);
|
|
2153
|
+
--border: oklch(0.922 0 0);
|
|
2154
|
+
--input: oklch(0.922 0 0);
|
|
2155
|
+
--ring: oklch(0.708 0 0);
|
|
2156
|
+
--radius: 0.625rem;
|
|
2157
|
+
--layout-max-width: 1200px;
|
|
2158
|
+
--layout-content-width: 48em;
|
|
2159
|
+
--layout-padding: 1.5rem;
|
|
2160
|
+
--z-scroll-fade: 5;
|
|
2161
|
+
--z-header: 10;
|
|
2162
|
+
--z-toast: 50;
|
|
2163
|
+
}
|
|
2164
|
+
.dark {
|
|
2165
|
+
--background: oklch(0.145 0.003 285);
|
|
2166
|
+
--foreground: oklch(0.96 0.003 285);
|
|
2167
|
+
--card: oklch(0.175 0.003 285);
|
|
2168
|
+
--card-foreground: var(--foreground);
|
|
2169
|
+
--popover: oklch(0.145 0.003 285);
|
|
2170
|
+
--popover-foreground: var(--foreground);
|
|
2171
|
+
--code: oklch(0.175 0.003 285);
|
|
2172
|
+
--code-foreground: var(--foreground);
|
|
2173
|
+
--primary: var(--foreground);
|
|
2174
|
+
--primary-foreground: var(--background);
|
|
2175
|
+
--secondary: oklch(0.205 0.003 285);
|
|
2176
|
+
--secondary-foreground: var(--foreground);
|
|
2177
|
+
--muted: oklch(0.185 0.003 285);
|
|
2178
|
+
--muted-foreground: oklch(0.69 0.003 285);
|
|
2179
|
+
--accent: oklch(0.225 0.003 285);
|
|
2180
|
+
--accent-foreground: var(--foreground);
|
|
2181
|
+
--destructive: oklch(0.62 0.22 28);
|
|
2182
|
+
--destructive-foreground: white;
|
|
2183
|
+
--border: oklch(0.285 0.003 285);
|
|
2184
|
+
--input: var(--border);
|
|
2185
|
+
--ring: var(--primary);
|
|
2186
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2187
|
+
--ring: color-mix(in srgb, var(--primary) 45%, transparent);
|
|
2188
|
+
}
|
|
2189
|
+
--layout-max-width: 1200px;
|
|
2190
|
+
--layout-content-width: 48em;
|
|
2191
|
+
--layout-padding: 1.5rem;
|
|
2192
|
+
--z-scroll-fade: 5;
|
|
2193
|
+
--z-header: 10;
|
|
2194
|
+
--z-toast: 50;
|
|
2195
|
+
}
|
|
2196
|
+
@layer base {
|
|
2197
|
+
* {
|
|
2198
|
+
border-color: var(--border);
|
|
2199
|
+
outline-color: var(--ring);
|
|
2200
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2201
|
+
outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
2202
|
+
}
|
|
2203
|
+
}
|
|
2204
|
+
body {
|
|
2205
|
+
background-color: var(--background);
|
|
2206
|
+
color: var(--foreground);
|
|
2207
|
+
}
|
|
2208
|
+
.dark .shiki, .dark .shiki span {
|
|
2209
|
+
color: var(--shiki-dark);
|
|
2210
|
+
font-style: var(--shiki-dark-font-style);
|
|
2211
|
+
font-weight: var(--shiki-dark-font-weight);
|
|
2212
|
+
text-decoration: var(--shiki-dark-text-decoration);
|
|
2213
|
+
}
|
|
2214
|
+
}
|
|
2215
|
+
@property --tw-translate-x {
|
|
2216
|
+
syntax: "*";
|
|
2217
|
+
inherits: false;
|
|
2218
|
+
initial-value: 0;
|
|
2219
|
+
}
|
|
2220
|
+
@property --tw-translate-y {
|
|
2221
|
+
syntax: "*";
|
|
2222
|
+
inherits: false;
|
|
2223
|
+
initial-value: 0;
|
|
2224
|
+
}
|
|
2225
|
+
@property --tw-translate-z {
|
|
2226
|
+
syntax: "*";
|
|
2227
|
+
inherits: false;
|
|
2228
|
+
initial-value: 0;
|
|
2229
|
+
}
|
|
2230
|
+
@property --tw-rotate-x {
|
|
2231
|
+
syntax: "*";
|
|
2232
|
+
inherits: false;
|
|
2233
|
+
}
|
|
2234
|
+
@property --tw-rotate-y {
|
|
2235
|
+
syntax: "*";
|
|
2236
|
+
inherits: false;
|
|
2237
|
+
}
|
|
2238
|
+
@property --tw-rotate-z {
|
|
2239
|
+
syntax: "*";
|
|
2240
|
+
inherits: false;
|
|
2241
|
+
}
|
|
2242
|
+
@property --tw-skew-x {
|
|
2243
|
+
syntax: "*";
|
|
2244
|
+
inherits: false;
|
|
2245
|
+
}
|
|
2246
|
+
@property --tw-skew-y {
|
|
2247
|
+
syntax: "*";
|
|
2248
|
+
inherits: false;
|
|
2249
|
+
}
|
|
2250
|
+
@property --tw-space-y-reverse {
|
|
2251
|
+
syntax: "*";
|
|
2252
|
+
inherits: false;
|
|
2253
|
+
initial-value: 0;
|
|
2254
|
+
}
|
|
2255
|
+
@property --tw-border-style {
|
|
2256
|
+
syntax: "*";
|
|
2257
|
+
inherits: false;
|
|
2258
|
+
initial-value: solid;
|
|
2259
|
+
}
|
|
2260
|
+
@property --tw-gradient-position {
|
|
2261
|
+
syntax: "*";
|
|
2262
|
+
inherits: false;
|
|
2263
|
+
}
|
|
2264
|
+
@property --tw-gradient-from {
|
|
2265
|
+
syntax: "<color>";
|
|
2266
|
+
inherits: false;
|
|
2267
|
+
initial-value: #0000;
|
|
2268
|
+
}
|
|
2269
|
+
@property --tw-gradient-via {
|
|
2270
|
+
syntax: "<color>";
|
|
2271
|
+
inherits: false;
|
|
2272
|
+
initial-value: #0000;
|
|
2273
|
+
}
|
|
2274
|
+
@property --tw-gradient-to {
|
|
2275
|
+
syntax: "<color>";
|
|
2276
|
+
inherits: false;
|
|
2277
|
+
initial-value: #0000;
|
|
2278
|
+
}
|
|
2279
|
+
@property --tw-gradient-stops {
|
|
2280
|
+
syntax: "*";
|
|
2281
|
+
inherits: false;
|
|
2282
|
+
}
|
|
2283
|
+
@property --tw-gradient-via-stops {
|
|
2284
|
+
syntax: "*";
|
|
2285
|
+
inherits: false;
|
|
2286
|
+
}
|
|
2287
|
+
@property --tw-gradient-from-position {
|
|
2288
|
+
syntax: "<length-percentage>";
|
|
2289
|
+
inherits: false;
|
|
2290
|
+
initial-value: 0%;
|
|
2291
|
+
}
|
|
2292
|
+
@property --tw-gradient-via-position {
|
|
2293
|
+
syntax: "<length-percentage>";
|
|
2294
|
+
inherits: false;
|
|
2295
|
+
initial-value: 50%;
|
|
2296
|
+
}
|
|
2297
|
+
@property --tw-gradient-to-position {
|
|
2298
|
+
syntax: "<length-percentage>";
|
|
2299
|
+
inherits: false;
|
|
2300
|
+
initial-value: 100%;
|
|
2301
|
+
}
|
|
2302
|
+
@property --tw-leading {
|
|
2303
|
+
syntax: "*";
|
|
2304
|
+
inherits: false;
|
|
2305
|
+
}
|
|
2306
|
+
@property --tw-font-weight {
|
|
2307
|
+
syntax: "*";
|
|
2308
|
+
inherits: false;
|
|
2309
|
+
}
|
|
2310
|
+
@property --tw-tracking {
|
|
2311
|
+
syntax: "*";
|
|
2312
|
+
inherits: false;
|
|
2313
|
+
}
|
|
2314
|
+
@property --tw-ordinal {
|
|
2315
|
+
syntax: "*";
|
|
2316
|
+
inherits: false;
|
|
2317
|
+
}
|
|
2318
|
+
@property --tw-slashed-zero {
|
|
2319
|
+
syntax: "*";
|
|
2320
|
+
inherits: false;
|
|
2321
|
+
}
|
|
2322
|
+
@property --tw-numeric-figure {
|
|
2323
|
+
syntax: "*";
|
|
2324
|
+
inherits: false;
|
|
2325
|
+
}
|
|
2326
|
+
@property --tw-numeric-spacing {
|
|
2327
|
+
syntax: "*";
|
|
2328
|
+
inherits: false;
|
|
2329
|
+
}
|
|
2330
|
+
@property --tw-numeric-fraction {
|
|
2331
|
+
syntax: "*";
|
|
2332
|
+
inherits: false;
|
|
2333
|
+
}
|
|
2334
|
+
@property --tw-shadow {
|
|
2335
|
+
syntax: "*";
|
|
2336
|
+
inherits: false;
|
|
2337
|
+
initial-value: 0 0 #0000;
|
|
2338
|
+
}
|
|
2339
|
+
@property --tw-shadow-color {
|
|
2340
|
+
syntax: "*";
|
|
2341
|
+
inherits: false;
|
|
2342
|
+
}
|
|
2343
|
+
@property --tw-shadow-alpha {
|
|
2344
|
+
syntax: "<percentage>";
|
|
2345
|
+
inherits: false;
|
|
2346
|
+
initial-value: 100%;
|
|
2347
|
+
}
|
|
2348
|
+
@property --tw-inset-shadow {
|
|
2349
|
+
syntax: "*";
|
|
2350
|
+
inherits: false;
|
|
2351
|
+
initial-value: 0 0 #0000;
|
|
2352
|
+
}
|
|
2353
|
+
@property --tw-inset-shadow-color {
|
|
2354
|
+
syntax: "*";
|
|
2355
|
+
inherits: false;
|
|
2356
|
+
}
|
|
2357
|
+
@property --tw-inset-shadow-alpha {
|
|
2358
|
+
syntax: "<percentage>";
|
|
2359
|
+
inherits: false;
|
|
2360
|
+
initial-value: 100%;
|
|
2361
|
+
}
|
|
2362
|
+
@property --tw-ring-color {
|
|
2363
|
+
syntax: "*";
|
|
2364
|
+
inherits: false;
|
|
2365
|
+
}
|
|
2366
|
+
@property --tw-ring-shadow {
|
|
2367
|
+
syntax: "*";
|
|
2368
|
+
inherits: false;
|
|
2369
|
+
initial-value: 0 0 #0000;
|
|
2370
|
+
}
|
|
2371
|
+
@property --tw-inset-ring-color {
|
|
2372
|
+
syntax: "*";
|
|
2373
|
+
inherits: false;
|
|
2374
|
+
}
|
|
2375
|
+
@property --tw-inset-ring-shadow {
|
|
2376
|
+
syntax: "*";
|
|
2377
|
+
inherits: false;
|
|
2378
|
+
initial-value: 0 0 #0000;
|
|
2379
|
+
}
|
|
2380
|
+
@property --tw-ring-inset {
|
|
2381
|
+
syntax: "*";
|
|
2382
|
+
inherits: false;
|
|
2383
|
+
}
|
|
2384
|
+
@property --tw-ring-offset-width {
|
|
2385
|
+
syntax: "<length>";
|
|
2386
|
+
inherits: false;
|
|
2387
|
+
initial-value: 0px;
|
|
2388
|
+
}
|
|
2389
|
+
@property --tw-ring-offset-color {
|
|
2390
|
+
syntax: "*";
|
|
2391
|
+
inherits: false;
|
|
2392
|
+
initial-value: #fff;
|
|
2393
|
+
}
|
|
2394
|
+
@property --tw-ring-offset-shadow {
|
|
2395
|
+
syntax: "*";
|
|
2396
|
+
inherits: false;
|
|
2397
|
+
initial-value: 0 0 #0000;
|
|
2398
|
+
}
|
|
2399
|
+
@property --tw-outline-style {
|
|
2400
|
+
syntax: "*";
|
|
2401
|
+
inherits: false;
|
|
2402
|
+
initial-value: solid;
|
|
2403
|
+
}
|
|
2404
|
+
@property --tw-blur {
|
|
2405
|
+
syntax: "*";
|
|
2406
|
+
inherits: false;
|
|
2407
|
+
}
|
|
2408
|
+
@property --tw-brightness {
|
|
2409
|
+
syntax: "*";
|
|
2410
|
+
inherits: false;
|
|
2411
|
+
}
|
|
2412
|
+
@property --tw-contrast {
|
|
2413
|
+
syntax: "*";
|
|
2414
|
+
inherits: false;
|
|
2415
|
+
}
|
|
2416
|
+
@property --tw-grayscale {
|
|
2417
|
+
syntax: "*";
|
|
2418
|
+
inherits: false;
|
|
2419
|
+
}
|
|
2420
|
+
@property --tw-hue-rotate {
|
|
2421
|
+
syntax: "*";
|
|
2422
|
+
inherits: false;
|
|
2423
|
+
}
|
|
2424
|
+
@property --tw-invert {
|
|
2425
|
+
syntax: "*";
|
|
2426
|
+
inherits: false;
|
|
2427
|
+
}
|
|
2428
|
+
@property --tw-opacity {
|
|
2429
|
+
syntax: "*";
|
|
2430
|
+
inherits: false;
|
|
2431
|
+
}
|
|
2432
|
+
@property --tw-saturate {
|
|
2433
|
+
syntax: "*";
|
|
2434
|
+
inherits: false;
|
|
2435
|
+
}
|
|
2436
|
+
@property --tw-sepia {
|
|
2437
|
+
syntax: "*";
|
|
2438
|
+
inherits: false;
|
|
2439
|
+
}
|
|
2440
|
+
@property --tw-drop-shadow {
|
|
2441
|
+
syntax: "*";
|
|
2442
|
+
inherits: false;
|
|
2443
|
+
}
|
|
2444
|
+
@property --tw-drop-shadow-color {
|
|
2445
|
+
syntax: "*";
|
|
2446
|
+
inherits: false;
|
|
2447
|
+
}
|
|
2448
|
+
@property --tw-drop-shadow-alpha {
|
|
2449
|
+
syntax: "<percentage>";
|
|
2450
|
+
inherits: false;
|
|
2451
|
+
initial-value: 100%;
|
|
2452
|
+
}
|
|
2453
|
+
@property --tw-drop-shadow-size {
|
|
2454
|
+
syntax: "*";
|
|
2455
|
+
inherits: false;
|
|
2456
|
+
}
|
|
2457
|
+
@property --tw-duration {
|
|
2458
|
+
syntax: "*";
|
|
2459
|
+
inherits: false;
|
|
2460
|
+
}
|
|
2461
|
+
@property --tw-ease {
|
|
2462
|
+
syntax: "*";
|
|
2463
|
+
inherits: false;
|
|
2464
|
+
}
|
|
2465
|
+
@property --tw-content {
|
|
2466
|
+
syntax: "*";
|
|
2467
|
+
initial-value: "";
|
|
2468
|
+
inherits: false;
|
|
2469
|
+
}
|
|
2470
|
+
@property --tw-scale-x {
|
|
2471
|
+
syntax: "*";
|
|
2472
|
+
inherits: false;
|
|
2473
|
+
initial-value: 1;
|
|
2474
|
+
}
|
|
2475
|
+
@property --tw-scale-y {
|
|
2476
|
+
syntax: "*";
|
|
2477
|
+
inherits: false;
|
|
2478
|
+
initial-value: 1;
|
|
2479
|
+
}
|
|
2480
|
+
@property --tw-scale-z {
|
|
2481
|
+
syntax: "*";
|
|
2482
|
+
inherits: false;
|
|
2483
|
+
initial-value: 1;
|
|
2484
|
+
}
|
|
2485
|
+
@keyframes spin {
|
|
2486
|
+
to {
|
|
2487
|
+
transform: rotate(360deg);
|
|
2488
|
+
}
|
|
2489
|
+
}
|
|
2490
|
+
@layer properties {
|
|
2491
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
2492
|
+
*, ::before, ::after, ::backdrop {
|
|
2493
|
+
--tw-translate-x: 0;
|
|
2494
|
+
--tw-translate-y: 0;
|
|
2495
|
+
--tw-translate-z: 0;
|
|
2496
|
+
--tw-rotate-x: initial;
|
|
2497
|
+
--tw-rotate-y: initial;
|
|
2498
|
+
--tw-rotate-z: initial;
|
|
2499
|
+
--tw-skew-x: initial;
|
|
2500
|
+
--tw-skew-y: initial;
|
|
2501
|
+
--tw-space-y-reverse: 0;
|
|
2502
|
+
--tw-border-style: solid;
|
|
2503
|
+
--tw-gradient-position: initial;
|
|
2504
|
+
--tw-gradient-from: #0000;
|
|
2505
|
+
--tw-gradient-via: #0000;
|
|
2506
|
+
--tw-gradient-to: #0000;
|
|
2507
|
+
--tw-gradient-stops: initial;
|
|
2508
|
+
--tw-gradient-via-stops: initial;
|
|
2509
|
+
--tw-gradient-from-position: 0%;
|
|
2510
|
+
--tw-gradient-via-position: 50%;
|
|
2511
|
+
--tw-gradient-to-position: 100%;
|
|
2512
|
+
--tw-leading: initial;
|
|
2513
|
+
--tw-font-weight: initial;
|
|
2514
|
+
--tw-tracking: initial;
|
|
2515
|
+
--tw-ordinal: initial;
|
|
2516
|
+
--tw-slashed-zero: initial;
|
|
2517
|
+
--tw-numeric-figure: initial;
|
|
2518
|
+
--tw-numeric-spacing: initial;
|
|
2519
|
+
--tw-numeric-fraction: initial;
|
|
2520
|
+
--tw-shadow: 0 0 #0000;
|
|
2521
|
+
--tw-shadow-color: initial;
|
|
2522
|
+
--tw-shadow-alpha: 100%;
|
|
2523
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
2524
|
+
--tw-inset-shadow-color: initial;
|
|
2525
|
+
--tw-inset-shadow-alpha: 100%;
|
|
2526
|
+
--tw-ring-color: initial;
|
|
2527
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
2528
|
+
--tw-inset-ring-color: initial;
|
|
2529
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
2530
|
+
--tw-ring-inset: initial;
|
|
2531
|
+
--tw-ring-offset-width: 0px;
|
|
2532
|
+
--tw-ring-offset-color: #fff;
|
|
2533
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
2534
|
+
--tw-outline-style: solid;
|
|
2535
|
+
--tw-blur: initial;
|
|
2536
|
+
--tw-brightness: initial;
|
|
2537
|
+
--tw-contrast: initial;
|
|
2538
|
+
--tw-grayscale: initial;
|
|
2539
|
+
--tw-hue-rotate: initial;
|
|
2540
|
+
--tw-invert: initial;
|
|
2541
|
+
--tw-opacity: initial;
|
|
2542
|
+
--tw-saturate: initial;
|
|
2543
|
+
--tw-sepia: initial;
|
|
2544
|
+
--tw-drop-shadow: initial;
|
|
2545
|
+
--tw-drop-shadow-color: initial;
|
|
2546
|
+
--tw-drop-shadow-alpha: 100%;
|
|
2547
|
+
--tw-drop-shadow-size: initial;
|
|
2548
|
+
--tw-duration: initial;
|
|
2549
|
+
--tw-ease: initial;
|
|
2550
|
+
--tw-content: "";
|
|
2551
|
+
--tw-scale-x: 1;
|
|
2552
|
+
--tw-scale-y: 1;
|
|
2553
|
+
--tw-scale-z: 1;
|
|
2554
|
+
}
|
|
2555
|
+
}
|
|
2556
|
+
}
|