@pandacss/studio 0.21.0 → 0.22.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/astro.config.mjs +3 -9
- package/dist/studio.d.mts +1 -1
- package/dist/studio.d.ts +1 -1
- package/dist/studio.js +38 -2050
- package/dist/studio.mjs +42 -2080
- package/package.json +11 -14
- package/src/components/sizes.tsx +4 -3
- package/styled-system/helpers.mjs +2 -0
- package/styled-system/jsx/aspect-ratio.mjs +2 -5
- package/styled-system/jsx/bleed.mjs +2 -5
- package/styled-system/jsx/box.mjs +3 -7
- package/styled-system/jsx/center.mjs +2 -5
- package/styled-system/jsx/circle.mjs +2 -5
- package/styled-system/jsx/container.mjs +3 -7
- package/styled-system/jsx/divider.mjs +2 -5
- package/styled-system/jsx/factory.mjs +1 -2
- package/styled-system/jsx/flex.mjs +2 -5
- package/styled-system/jsx/float.mjs +2 -5
- package/styled-system/jsx/grid-item.mjs +2 -5
- package/styled-system/jsx/grid.mjs +2 -5
- package/styled-system/jsx/hstack.mjs +2 -5
- package/styled-system/jsx/index.d.ts +0 -3
- package/styled-system/jsx/link-box.mjs +3 -7
- package/styled-system/jsx/link-overlay.mjs +3 -7
- package/styled-system/jsx/spacer.mjs +2 -5
- package/styled-system/jsx/square.mjs +2 -5
- package/styled-system/jsx/stack.mjs +2 -5
- package/styled-system/jsx/styled-link.mjs +3 -7
- package/styled-system/jsx/visually-hidden.mjs +3 -7
- package/styled-system/jsx/vstack.mjs +2 -5
- package/styled-system/jsx/wrap.mjs +2 -5
- package/styled-system/styles.css +1277 -542
- package/styled-system/types/conditions.d.ts +1 -1
- package/styled-system/types/csstype.d.ts +1270 -721
- package/styled-system/types/recipe.d.ts +5 -0
- package/styled-system/types/static-css.d.ts +39 -0
- package/styled-system/chunks/src__components__color-constrast.css +0 -106
- package/styled-system/chunks/src__components__color-wrapper.css +0 -58
- package/styled-system/chunks/src__components__colors.css +0 -106
- package/styled-system/chunks/src__components__empty-state.css +0 -46
- package/styled-system/chunks/src__components__font-family.css +0 -86
- package/styled-system/chunks/src__components__font-tokens.css +0 -62
- package/styled-system/chunks/src__components__input.css +0 -58
- package/styled-system/chunks/src__components__layer-styles.css +0 -63
- package/styled-system/chunks/src__components__nav-item.css +0 -57
- package/styled-system/chunks/src__components__overview.css +0 -122
- package/styled-system/chunks/src__components__radii.css +0 -50
- package/styled-system/chunks/src__components__semantic-color.css +0 -70
- package/styled-system/chunks/src__components__side-nav-item.css +0 -30
- package/styled-system/chunks/src__components__side-nav.css +0 -50
- package/styled-system/chunks/src__components__sizes.css +0 -42
- package/styled-system/chunks/src__components__text-styles.css +0 -32
- package/styled-system/chunks/src__components__theme-toggle.css +0 -62
- package/styled-system/chunks/src__components__token-content.css +0 -14
- package/styled-system/chunks/src__components__token-group.css +0 -22
- package/styled-system/chunks/src__components__typography-playground.css +0 -62
- package/styled-system/chunks/src__layouts__Sidebar.css +0 -114
- package/styled-system/global.css +0 -58
- package/styled-system/reset.css +0 -214
- package/styled-system/static.css +0 -5
- package/styled-system/tokens/index.css +0 -437
- package/styled-system/tokens/keyframes.css +0 -28
- package/styled-system/types/helpers.d.ts +0 -2
- package/virtual-panda.ts +0 -62
package/styled-system/styles.css
CHANGED
|
@@ -1,744 +1,1479 @@
|
|
|
1
1
|
@layer reset, base, tokens, recipes, utilities;
|
|
2
2
|
|
|
3
|
-
@
|
|
3
|
+
@layer reset{
|
|
4
|
+
* {
|
|
5
|
+
margin: 0;
|
|
6
|
+
padding: 0;
|
|
7
|
+
font: inherit;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
*,
|
|
11
|
+
*::before,
|
|
12
|
+
*::after {
|
|
13
|
+
box-sizing: border-box;
|
|
14
|
+
border-width: 0;
|
|
15
|
+
border-style: solid;
|
|
16
|
+
border-color: var(--global-color-border, currentColor);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
html {
|
|
20
|
+
line-height: 1.5;
|
|
21
|
+
--font-fallback: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
22
|
+
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
23
|
+
'Noto Color Emoji';
|
|
24
|
+
-webkit-text-size-adjust: 100%;
|
|
25
|
+
-webkit-font-smoothing: antialiased;
|
|
26
|
+
-moz-osx-font-smoothing: grayscale;
|
|
27
|
+
-moz-tab-size: 4;
|
|
28
|
+
tab-size: 4;
|
|
29
|
+
font-family: var(--global-font-body, var(--font-fallback));
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
hr {
|
|
33
|
+
height: 0;
|
|
34
|
+
color: inherit;
|
|
35
|
+
border-top-width: 1px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
body {
|
|
39
|
+
height: 100%;
|
|
40
|
+
line-height: inherit;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
img {
|
|
44
|
+
border-style: none;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
img,
|
|
48
|
+
svg,
|
|
49
|
+
video,
|
|
50
|
+
canvas,
|
|
51
|
+
audio,
|
|
52
|
+
iframe,
|
|
53
|
+
embed,
|
|
54
|
+
object {
|
|
55
|
+
display: block;
|
|
56
|
+
vertical-align: middle;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
img,
|
|
60
|
+
video {
|
|
61
|
+
max-width: 100%;
|
|
62
|
+
height: auto;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
p,
|
|
66
|
+
h1,
|
|
67
|
+
h2,
|
|
68
|
+
h3,
|
|
69
|
+
h4,
|
|
70
|
+
h5,
|
|
71
|
+
h6 {
|
|
72
|
+
overflow-wrap: break-word;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
ol,
|
|
76
|
+
ul {
|
|
77
|
+
list-style: none;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
code,
|
|
81
|
+
kbd,
|
|
82
|
+
pre,
|
|
83
|
+
samp {
|
|
84
|
+
font-size: 1em;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
button,
|
|
88
|
+
[type='button'],
|
|
89
|
+
[type='reset'],
|
|
90
|
+
[type='submit'] {
|
|
91
|
+
-webkit-appearance: button;
|
|
92
|
+
background-color: transparent;
|
|
93
|
+
background-image: none;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
button,
|
|
97
|
+
input,
|
|
98
|
+
optgroup,
|
|
99
|
+
select,
|
|
100
|
+
textarea {
|
|
101
|
+
color: inherit;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
button,
|
|
105
|
+
select {
|
|
106
|
+
text-transform: none;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
table {
|
|
110
|
+
text-indent: 0;
|
|
111
|
+
border-color: inherit;
|
|
112
|
+
border-collapse: collapse;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
input::placeholder,
|
|
116
|
+
textarea::placeholder {
|
|
117
|
+
opacity: 1;
|
|
118
|
+
color: var(--global-color-placeholder, #9ca3af);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
textarea {
|
|
122
|
+
resize: vertical;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
summary {
|
|
126
|
+
display: list-item;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
small {
|
|
130
|
+
font-size: 80%;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
sub,
|
|
134
|
+
sup {
|
|
135
|
+
font-size: 75%;
|
|
136
|
+
line-height: 0;
|
|
137
|
+
position: relative;
|
|
138
|
+
vertical-align: baseline;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
sub {
|
|
142
|
+
bottom: -0.25em;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
sup {
|
|
146
|
+
top: -0.5em;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
dialog {
|
|
150
|
+
padding: 0;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
a {
|
|
154
|
+
color: inherit;
|
|
155
|
+
text-decoration: inherit;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
abbr:where([title]) {
|
|
159
|
+
text-decoration: underline dotted;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
b,
|
|
163
|
+
strong {
|
|
164
|
+
font-weight: bolder;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
code,
|
|
168
|
+
kbd,
|
|
169
|
+
samp,
|
|
170
|
+
pre {
|
|
171
|
+
font-size: 1em;
|
|
172
|
+
--font-mono-fallback: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New';
|
|
173
|
+
font-family: var(--global-font-mono, var(--font-mono-fallback));
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
input[type="text"],
|
|
177
|
+
input[type="email"],
|
|
178
|
+
input[type="search"],
|
|
179
|
+
input[type="password"] {
|
|
180
|
+
-webkit-appearance: none;
|
|
181
|
+
-moz-appearance: none;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
input[type='search'] {
|
|
185
|
+
-webkit-appearance: textfield;
|
|
186
|
+
outline-offset: -2px;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
::-webkit-search-decoration,
|
|
190
|
+
::-webkit-search-cancel-button {
|
|
191
|
+
-webkit-appearance: none;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
::-webkit-file-upload-button {
|
|
195
|
+
-webkit-appearance: button;
|
|
196
|
+
font: inherit;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
input[type="number"]::-webkit-inner-spin-button,
|
|
200
|
+
input[type="number"]::-webkit-outer-spin-button {
|
|
201
|
+
height: auto;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
input[type='number']{
|
|
205
|
+
-moz-appearance: textfield;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
:-moz-ui-invalid {
|
|
209
|
+
box-shadow: none;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
:-moz-focusring {
|
|
213
|
+
outline: auto;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
@layer base{
|
|
218
|
+
:root{
|
|
219
|
+
--made-with-panda: '🐼';
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
*, *::before, *::after, ::backdrop{
|
|
223
|
+
--blur: ;
|
|
224
|
+
--brightness: ;
|
|
225
|
+
--contrast: ;
|
|
226
|
+
--grayscale: ;
|
|
227
|
+
--hue-rotate: ;
|
|
228
|
+
--invert: ;
|
|
229
|
+
--saturate: ;
|
|
230
|
+
--sepia: ;
|
|
231
|
+
--drop-shadow: ;
|
|
232
|
+
--backdrop-blur: ;
|
|
233
|
+
--backdrop-brightness: ;
|
|
234
|
+
--backdrop-contrast: ;
|
|
235
|
+
--backdrop-grayscale: ;
|
|
236
|
+
--backdrop-hue-rotate: ;
|
|
237
|
+
--backdrop-invert: ;
|
|
238
|
+
--backdrop-opacity: ;
|
|
239
|
+
--backdrop-saturate: ;
|
|
240
|
+
--backdrop-sepia: ;
|
|
241
|
+
--scroll-snap-strictness: proximity;
|
|
242
|
+
--border-spacing-x: 0;
|
|
243
|
+
--border-spacing-y: 0;
|
|
244
|
+
--translate-x: 0;
|
|
245
|
+
--translate-y: 0;
|
|
246
|
+
--rotate: 0;
|
|
247
|
+
--skew-x: 0;
|
|
248
|
+
--skew-y: 0;
|
|
249
|
+
--scale-x: 1;
|
|
250
|
+
--scale-y: 1;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
:root{
|
|
254
|
+
--global-color-border: var(--colors-border);
|
|
255
|
+
--global-color-placeholder: var(--colors-neutral-500);
|
|
256
|
+
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
|
|
257
|
+
font-size: var(--font-sizes-md);
|
|
258
|
+
line-height: var(--line-heights-normal);
|
|
259
|
+
font-weight: var(--font-weights-normal);
|
|
260
|
+
color-scheme: light dark;
|
|
261
|
+
color: var(--colors-text);
|
|
262
|
+
background: var(--colors-bg);
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
a{
|
|
266
|
+
color: unset;
|
|
267
|
+
text-decoration: none;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
body{
|
|
271
|
+
margin: var(--spacing-0);
|
|
272
|
+
min-height: 100vh;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
@layer tokens{
|
|
277
|
+
:where(:root, :host) {
|
|
278
|
+
--borders-none: none;
|
|
279
|
+
--easings-default: cubic-bezier(0.4, 0, 0.2, 1);
|
|
280
|
+
--easings-linear: linear;
|
|
281
|
+
--easings-in: cubic-bezier(0.4, 0, 1, 1);
|
|
282
|
+
--easings-out: cubic-bezier(0, 0, 0.2, 1);
|
|
283
|
+
--easings-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
284
|
+
--durations-fastest: 50ms;
|
|
285
|
+
--durations-faster: 100ms;
|
|
286
|
+
--durations-fast: 150ms;
|
|
287
|
+
--durations-normal: 200ms;
|
|
288
|
+
--durations-slow: 300ms;
|
|
289
|
+
--durations-slower: 400ms;
|
|
290
|
+
--durations-slowest: 500ms;
|
|
291
|
+
--radii-xs: 0.125rem;
|
|
292
|
+
--radii-sm: 0.25rem;
|
|
293
|
+
--radii-md: 0.375rem;
|
|
294
|
+
--radii-lg: 0.5rem;
|
|
295
|
+
--radii-xl: 0.75rem;
|
|
296
|
+
--radii-2xl: 1rem;
|
|
297
|
+
--radii-3xl: 1.5rem;
|
|
298
|
+
--radii-full: 9999px;
|
|
299
|
+
--font-weights-thin: 100;
|
|
300
|
+
--font-weights-extralight: 200;
|
|
301
|
+
--font-weights-light: 300;
|
|
302
|
+
--font-weights-normal: 400;
|
|
303
|
+
--font-weights-medium: 500;
|
|
304
|
+
--font-weights-semibold: 600;
|
|
305
|
+
--font-weights-bold: 700;
|
|
306
|
+
--font-weights-extrabold: 800;
|
|
307
|
+
--font-weights-black: 900;
|
|
308
|
+
--line-heights-none: 1;
|
|
309
|
+
--line-heights-tight: 1.25;
|
|
310
|
+
--line-heights-snug: 1.375;
|
|
311
|
+
--line-heights-normal: 1.5;
|
|
312
|
+
--line-heights-relaxed: 1.625;
|
|
313
|
+
--line-heights-loose: 2;
|
|
314
|
+
--fonts-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
315
|
+
--fonts-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
|
|
316
|
+
--fonts-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
317
|
+
--letter-spacings-tighter: -0.05em;
|
|
318
|
+
--letter-spacings-tight: -0.025em;
|
|
319
|
+
--letter-spacings-normal: 0em;
|
|
320
|
+
--letter-spacings-wide: 0.025em;
|
|
321
|
+
--letter-spacings-wider: 0.05em;
|
|
322
|
+
--letter-spacings-widest: 0.1em;
|
|
323
|
+
--font-sizes-2xs: 0.5rem;
|
|
324
|
+
--font-sizes-xs: 0.75rem;
|
|
325
|
+
--font-sizes-sm: 0.875rem;
|
|
326
|
+
--font-sizes-md: 1rem;
|
|
327
|
+
--font-sizes-lg: 1.125rem;
|
|
328
|
+
--font-sizes-xl: 1.25rem;
|
|
329
|
+
--font-sizes-2xl: 1.5rem;
|
|
330
|
+
--font-sizes-3xl: 1.875rem;
|
|
331
|
+
--font-sizes-4xl: 2.25rem;
|
|
332
|
+
--font-sizes-5xl: 3rem;
|
|
333
|
+
--font-sizes-6xl: 3.75rem;
|
|
334
|
+
--font-sizes-7xl: 4.5rem;
|
|
335
|
+
--font-sizes-8xl: 6rem;
|
|
336
|
+
--font-sizes-9xl: 8rem;
|
|
337
|
+
--shadows-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
338
|
+
--shadows-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
339
|
+
--shadows-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
340
|
+
--shadows-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
341
|
+
--shadows-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
342
|
+
--shadows-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
343
|
+
--shadows-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
|
|
344
|
+
--blurs-sm: 4px;
|
|
345
|
+
--blurs-base: 8px;
|
|
346
|
+
--blurs-md: 12px;
|
|
347
|
+
--blurs-lg: 16px;
|
|
348
|
+
--blurs-xl: 24px;
|
|
349
|
+
--blurs-2xl: 40px;
|
|
350
|
+
--blurs-3xl: 64px;
|
|
351
|
+
--spacing-0: 0rem;
|
|
352
|
+
--spacing-1: 0.25rem;
|
|
353
|
+
--spacing-2: 0.5rem;
|
|
354
|
+
--spacing-3: 0.75rem;
|
|
355
|
+
--spacing-4: 1rem;
|
|
356
|
+
--spacing-5: 1.25rem;
|
|
357
|
+
--spacing-6: 1.5rem;
|
|
358
|
+
--spacing-7: 1.75rem;
|
|
359
|
+
--spacing-8: 2rem;
|
|
360
|
+
--spacing-9: 2.25rem;
|
|
361
|
+
--spacing-10: 2.5rem;
|
|
362
|
+
--spacing-11: 2.75rem;
|
|
363
|
+
--spacing-12: 3rem;
|
|
364
|
+
--spacing-14: 3.5rem;
|
|
365
|
+
--spacing-16: 4rem;
|
|
366
|
+
--spacing-20: 5rem;
|
|
367
|
+
--spacing-24: 6rem;
|
|
368
|
+
--spacing-28: 7rem;
|
|
369
|
+
--spacing-32: 8rem;
|
|
370
|
+
--spacing-36: 9rem;
|
|
371
|
+
--spacing-40: 10rem;
|
|
372
|
+
--spacing-44: 11rem;
|
|
373
|
+
--spacing-48: 12rem;
|
|
374
|
+
--spacing-52: 13rem;
|
|
375
|
+
--spacing-56: 14rem;
|
|
376
|
+
--spacing-60: 15rem;
|
|
377
|
+
--spacing-64: 16rem;
|
|
378
|
+
--spacing-72: 18rem;
|
|
379
|
+
--spacing-80: 20rem;
|
|
380
|
+
--spacing-96: 24rem;
|
|
381
|
+
--spacing-0\.5: 0.125rem;
|
|
382
|
+
--spacing-1\.5: 0.375rem;
|
|
383
|
+
--spacing-2\.5: 0.625rem;
|
|
384
|
+
--spacing-3\.5: 0.875rem;
|
|
385
|
+
--sizes-0: 0rem;
|
|
386
|
+
--sizes-1: 0.25rem;
|
|
387
|
+
--sizes-2: 0.5rem;
|
|
388
|
+
--sizes-3: 0.75rem;
|
|
389
|
+
--sizes-4: 1rem;
|
|
390
|
+
--sizes-5: 1.25rem;
|
|
391
|
+
--sizes-6: 1.5rem;
|
|
392
|
+
--sizes-7: 1.75rem;
|
|
393
|
+
--sizes-8: 2rem;
|
|
394
|
+
--sizes-9: 2.25rem;
|
|
395
|
+
--sizes-10: 2.5rem;
|
|
396
|
+
--sizes-11: 2.75rem;
|
|
397
|
+
--sizes-12: 3rem;
|
|
398
|
+
--sizes-14: 3.5rem;
|
|
399
|
+
--sizes-16: 4rem;
|
|
400
|
+
--sizes-20: 5rem;
|
|
401
|
+
--sizes-24: 6rem;
|
|
402
|
+
--sizes-28: 7rem;
|
|
403
|
+
--sizes-32: 8rem;
|
|
404
|
+
--sizes-36: 9rem;
|
|
405
|
+
--sizes-40: 10rem;
|
|
406
|
+
--sizes-44: 11rem;
|
|
407
|
+
--sizes-48: 12rem;
|
|
408
|
+
--sizes-52: 13rem;
|
|
409
|
+
--sizes-56: 14rem;
|
|
410
|
+
--sizes-60: 15rem;
|
|
411
|
+
--sizes-64: 16rem;
|
|
412
|
+
--sizes-72: 18rem;
|
|
413
|
+
--sizes-80: 20rem;
|
|
414
|
+
--sizes-96: 24rem;
|
|
415
|
+
--sizes-0\.5: 0.125rem;
|
|
416
|
+
--sizes-1\.5: 0.375rem;
|
|
417
|
+
--sizes-2\.5: 0.625rem;
|
|
418
|
+
--sizes-3\.5: 0.875rem;
|
|
419
|
+
--sizes-xs: 20rem;
|
|
420
|
+
--sizes-sm: 24rem;
|
|
421
|
+
--sizes-md: 28rem;
|
|
422
|
+
--sizes-lg: 32rem;
|
|
423
|
+
--sizes-xl: 36rem;
|
|
424
|
+
--sizes-2xl: 42rem;
|
|
425
|
+
--sizes-3xl: 48rem;
|
|
426
|
+
--sizes-4xl: 56rem;
|
|
427
|
+
--sizes-5xl: 64rem;
|
|
428
|
+
--sizes-6xl: 72rem;
|
|
429
|
+
--sizes-7xl: 80rem;
|
|
430
|
+
--sizes-8xl: 90rem;
|
|
431
|
+
--sizes-prose: 65ch;
|
|
432
|
+
--sizes-full: 100%;
|
|
433
|
+
--sizes-min: min-content;
|
|
434
|
+
--sizes-max: max-content;
|
|
435
|
+
--sizes-fit: fit-content;
|
|
436
|
+
--sizes-breakpoint-sm: 640px;
|
|
437
|
+
--sizes-breakpoint-md: 768px;
|
|
438
|
+
--sizes-breakpoint-lg: 1024px;
|
|
439
|
+
--sizes-breakpoint-xl: 1280px;
|
|
440
|
+
--sizes-breakpoint-2xl: 1536px;
|
|
441
|
+
--animations-spin: spin 1s linear infinite;
|
|
442
|
+
--animations-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
443
|
+
--animations-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
444
|
+
--animations-bounce: bounce 1s infinite;
|
|
445
|
+
--colors-current: currentColor;
|
|
446
|
+
--colors-black: #000;
|
|
447
|
+
--colors-white: #fff;
|
|
448
|
+
--colors-transparent: rgb(0 0 0 / 0);
|
|
449
|
+
--colors-rose-50: #fff1f2;
|
|
450
|
+
--colors-rose-100: #ffe4e6;
|
|
451
|
+
--colors-rose-200: #fecdd3;
|
|
452
|
+
--colors-rose-300: #fda4af;
|
|
453
|
+
--colors-rose-400: #fb7185;
|
|
454
|
+
--colors-rose-500: #f43f5e;
|
|
455
|
+
--colors-rose-600: #e11d48;
|
|
456
|
+
--colors-rose-700: #be123c;
|
|
457
|
+
--colors-rose-800: #9f1239;
|
|
458
|
+
--colors-rose-900: #881337;
|
|
459
|
+
--colors-rose-950: #4c0519;
|
|
460
|
+
--colors-pink-50: #fdf2f8;
|
|
461
|
+
--colors-pink-100: #fce7f3;
|
|
462
|
+
--colors-pink-200: #fbcfe8;
|
|
463
|
+
--colors-pink-300: #f9a8d4;
|
|
464
|
+
--colors-pink-400: #f472b6;
|
|
465
|
+
--colors-pink-500: #ec4899;
|
|
466
|
+
--colors-pink-600: #db2777;
|
|
467
|
+
--colors-pink-700: #be185d;
|
|
468
|
+
--colors-pink-800: #9d174d;
|
|
469
|
+
--colors-pink-900: #831843;
|
|
470
|
+
--colors-pink-950: #500724;
|
|
471
|
+
--colors-fuchsia-50: #fdf4ff;
|
|
472
|
+
--colors-fuchsia-100: #fae8ff;
|
|
473
|
+
--colors-fuchsia-200: #f5d0fe;
|
|
474
|
+
--colors-fuchsia-300: #f0abfc;
|
|
475
|
+
--colors-fuchsia-400: #e879f9;
|
|
476
|
+
--colors-fuchsia-500: #d946ef;
|
|
477
|
+
--colors-fuchsia-600: #c026d3;
|
|
478
|
+
--colors-fuchsia-700: #a21caf;
|
|
479
|
+
--colors-fuchsia-800: #86198f;
|
|
480
|
+
--colors-fuchsia-900: #701a75;
|
|
481
|
+
--colors-fuchsia-950: #4a044e;
|
|
482
|
+
--colors-purple-50: #faf5ff;
|
|
483
|
+
--colors-purple-100: #f3e8ff;
|
|
484
|
+
--colors-purple-200: #e9d5ff;
|
|
485
|
+
--colors-purple-300: #d8b4fe;
|
|
486
|
+
--colors-purple-400: #c084fc;
|
|
487
|
+
--colors-purple-500: #a855f7;
|
|
488
|
+
--colors-purple-600: #9333ea;
|
|
489
|
+
--colors-purple-700: #7e22ce;
|
|
490
|
+
--colors-purple-800: #6b21a8;
|
|
491
|
+
--colors-purple-900: #581c87;
|
|
492
|
+
--colors-purple-950: #3b0764;
|
|
493
|
+
--colors-violet-50: #f5f3ff;
|
|
494
|
+
--colors-violet-100: #ede9fe;
|
|
495
|
+
--colors-violet-200: #ddd6fe;
|
|
496
|
+
--colors-violet-300: #c4b5fd;
|
|
497
|
+
--colors-violet-400: #a78bfa;
|
|
498
|
+
--colors-violet-500: #8b5cf6;
|
|
499
|
+
--colors-violet-600: #7c3aed;
|
|
500
|
+
--colors-violet-700: #6d28d9;
|
|
501
|
+
--colors-violet-800: #5b21b6;
|
|
502
|
+
--colors-violet-900: #4c1d95;
|
|
503
|
+
--colors-violet-950: #2e1065;
|
|
504
|
+
--colors-indigo-50: #eef2ff;
|
|
505
|
+
--colors-indigo-100: #e0e7ff;
|
|
506
|
+
--colors-indigo-200: #c7d2fe;
|
|
507
|
+
--colors-indigo-300: #a5b4fc;
|
|
508
|
+
--colors-indigo-400: #818cf8;
|
|
509
|
+
--colors-indigo-500: #6366f1;
|
|
510
|
+
--colors-indigo-600: #4f46e5;
|
|
511
|
+
--colors-indigo-700: #4338ca;
|
|
512
|
+
--colors-indigo-800: #3730a3;
|
|
513
|
+
--colors-indigo-900: #312e81;
|
|
514
|
+
--colors-indigo-950: #1e1b4b;
|
|
515
|
+
--colors-blue-50: #eff6ff;
|
|
516
|
+
--colors-blue-100: #dbeafe;
|
|
517
|
+
--colors-blue-200: #bfdbfe;
|
|
518
|
+
--colors-blue-300: #93c5fd;
|
|
519
|
+
--colors-blue-400: #60a5fa;
|
|
520
|
+
--colors-blue-500: #3b82f6;
|
|
521
|
+
--colors-blue-600: #2563eb;
|
|
522
|
+
--colors-blue-700: #1d4ed8;
|
|
523
|
+
--colors-blue-800: #1e40af;
|
|
524
|
+
--colors-blue-900: #1e3a8a;
|
|
525
|
+
--colors-blue-950: #172554;
|
|
526
|
+
--colors-sky-50: #f0f9ff;
|
|
527
|
+
--colors-sky-100: #e0f2fe;
|
|
528
|
+
--colors-sky-200: #bae6fd;
|
|
529
|
+
--colors-sky-300: #7dd3fc;
|
|
530
|
+
--colors-sky-400: #38bdf8;
|
|
531
|
+
--colors-sky-500: #0ea5e9;
|
|
532
|
+
--colors-sky-600: #0284c7;
|
|
533
|
+
--colors-sky-700: #0369a1;
|
|
534
|
+
--colors-sky-800: #075985;
|
|
535
|
+
--colors-sky-900: #0c4a6e;
|
|
536
|
+
--colors-sky-950: #082f49;
|
|
537
|
+
--colors-cyan-50: #ecfeff;
|
|
538
|
+
--colors-cyan-100: #cffafe;
|
|
539
|
+
--colors-cyan-200: #a5f3fc;
|
|
540
|
+
--colors-cyan-300: #67e8f9;
|
|
541
|
+
--colors-cyan-400: #22d3ee;
|
|
542
|
+
--colors-cyan-500: #06b6d4;
|
|
543
|
+
--colors-cyan-600: #0891b2;
|
|
544
|
+
--colors-cyan-700: #0e7490;
|
|
545
|
+
--colors-cyan-800: #155e75;
|
|
546
|
+
--colors-cyan-900: #164e63;
|
|
547
|
+
--colors-cyan-950: #083344;
|
|
548
|
+
--colors-teal-50: #f0fdfa;
|
|
549
|
+
--colors-teal-100: #ccfbf1;
|
|
550
|
+
--colors-teal-200: #99f6e4;
|
|
551
|
+
--colors-teal-300: #5eead4;
|
|
552
|
+
--colors-teal-400: #2dd4bf;
|
|
553
|
+
--colors-teal-500: #14b8a6;
|
|
554
|
+
--colors-teal-600: #0d9488;
|
|
555
|
+
--colors-teal-700: #0f766e;
|
|
556
|
+
--colors-teal-800: #115e59;
|
|
557
|
+
--colors-teal-900: #134e4a;
|
|
558
|
+
--colors-teal-950: #042f2e;
|
|
559
|
+
--colors-emerald-50: #ecfdf5;
|
|
560
|
+
--colors-emerald-100: #d1fae5;
|
|
561
|
+
--colors-emerald-200: #a7f3d0;
|
|
562
|
+
--colors-emerald-300: #6ee7b7;
|
|
563
|
+
--colors-emerald-400: #34d399;
|
|
564
|
+
--colors-emerald-500: #10b981;
|
|
565
|
+
--colors-emerald-600: #059669;
|
|
566
|
+
--colors-emerald-700: #047857;
|
|
567
|
+
--colors-emerald-800: #065f46;
|
|
568
|
+
--colors-emerald-900: #064e3b;
|
|
569
|
+
--colors-emerald-950: #022c22;
|
|
570
|
+
--colors-green-50: #f0fdf4;
|
|
571
|
+
--colors-green-100: #dcfce7;
|
|
572
|
+
--colors-green-200: #bbf7d0;
|
|
573
|
+
--colors-green-300: #86efac;
|
|
574
|
+
--colors-green-400: #4ade80;
|
|
575
|
+
--colors-green-500: #22c55e;
|
|
576
|
+
--colors-green-600: #16a34a;
|
|
577
|
+
--colors-green-700: #15803d;
|
|
578
|
+
--colors-green-800: #166534;
|
|
579
|
+
--colors-green-900: #14532d;
|
|
580
|
+
--colors-green-950: #052e16;
|
|
581
|
+
--colors-lime-50: #f7fee7;
|
|
582
|
+
--colors-lime-100: #ecfccb;
|
|
583
|
+
--colors-lime-200: #d9f99d;
|
|
584
|
+
--colors-lime-300: #bef264;
|
|
585
|
+
--colors-lime-400: #a3e635;
|
|
586
|
+
--colors-lime-500: #84cc16;
|
|
587
|
+
--colors-lime-600: #65a30d;
|
|
588
|
+
--colors-lime-700: #4d7c0f;
|
|
589
|
+
--colors-lime-800: #3f6212;
|
|
590
|
+
--colors-lime-900: #365314;
|
|
591
|
+
--colors-lime-950: #1a2e05;
|
|
592
|
+
--colors-yellow-50: #fefce8;
|
|
593
|
+
--colors-yellow-100: #fef9c3;
|
|
594
|
+
--colors-yellow-200: #fef08a;
|
|
595
|
+
--colors-yellow-300: #fde047;
|
|
596
|
+
--colors-yellow-400: #facc15;
|
|
597
|
+
--colors-yellow-500: #eab308;
|
|
598
|
+
--colors-yellow-600: #ca8a04;
|
|
599
|
+
--colors-yellow-700: #a16207;
|
|
600
|
+
--colors-yellow-800: #854d0e;
|
|
601
|
+
--colors-yellow-900: #713f12;
|
|
602
|
+
--colors-yellow-950: #422006;
|
|
603
|
+
--colors-amber-50: #fffbeb;
|
|
604
|
+
--colors-amber-100: #fef3c7;
|
|
605
|
+
--colors-amber-200: #fde68a;
|
|
606
|
+
--colors-amber-300: #fcd34d;
|
|
607
|
+
--colors-amber-400: #fbbf24;
|
|
608
|
+
--colors-amber-500: #f59e0b;
|
|
609
|
+
--colors-amber-600: #d97706;
|
|
610
|
+
--colors-amber-700: #b45309;
|
|
611
|
+
--colors-amber-800: #92400e;
|
|
612
|
+
--colors-amber-900: #78350f;
|
|
613
|
+
--colors-amber-950: #451a03;
|
|
614
|
+
--colors-orange-50: #fff7ed;
|
|
615
|
+
--colors-orange-100: #ffedd5;
|
|
616
|
+
--colors-orange-200: #fed7aa;
|
|
617
|
+
--colors-orange-300: #fdba74;
|
|
618
|
+
--colors-orange-400: #fb923c;
|
|
619
|
+
--colors-orange-500: #f97316;
|
|
620
|
+
--colors-orange-600: #ea580c;
|
|
621
|
+
--colors-orange-700: #c2410c;
|
|
622
|
+
--colors-orange-800: #9a3412;
|
|
623
|
+
--colors-orange-900: #7c2d12;
|
|
624
|
+
--colors-orange-950: #431407;
|
|
625
|
+
--colors-red-50: #fef2f2;
|
|
626
|
+
--colors-red-100: #fee2e2;
|
|
627
|
+
--colors-red-200: #fecaca;
|
|
628
|
+
--colors-red-300: #fca5a5;
|
|
629
|
+
--colors-red-400: #f87171;
|
|
630
|
+
--colors-red-500: #ef4444;
|
|
631
|
+
--colors-red-600: #dc2626;
|
|
632
|
+
--colors-red-700: #b91c1c;
|
|
633
|
+
--colors-red-800: #991b1b;
|
|
634
|
+
--colors-red-900: #7f1d1d;
|
|
635
|
+
--colors-red-950: #450a0a;
|
|
636
|
+
--colors-stone-50: #fafaf9;
|
|
637
|
+
--colors-stone-100: #f5f5f4;
|
|
638
|
+
--colors-stone-200: #e7e5e4;
|
|
639
|
+
--colors-stone-300: #d6d3d1;
|
|
640
|
+
--colors-stone-400: #a8a29e;
|
|
641
|
+
--colors-stone-500: #78716c;
|
|
642
|
+
--colors-stone-600: #57534e;
|
|
643
|
+
--colors-stone-700: #44403c;
|
|
644
|
+
--colors-stone-800: #292524;
|
|
645
|
+
--colors-stone-900: #1c1917;
|
|
646
|
+
--colors-stone-950: #0c0a09;
|
|
647
|
+
--colors-zinc-50: #fafafa;
|
|
648
|
+
--colors-zinc-100: #f4f4f5;
|
|
649
|
+
--colors-zinc-200: #e4e4e7;
|
|
650
|
+
--colors-zinc-300: #d4d4d8;
|
|
651
|
+
--colors-zinc-400: #a1a1aa;
|
|
652
|
+
--colors-zinc-500: #71717a;
|
|
653
|
+
--colors-zinc-600: #52525b;
|
|
654
|
+
--colors-zinc-700: #3f3f46;
|
|
655
|
+
--colors-zinc-800: #27272a;
|
|
656
|
+
--colors-zinc-900: #18181b;
|
|
657
|
+
--colors-zinc-950: #09090b;
|
|
658
|
+
--colors-gray-50: #f9fafb;
|
|
659
|
+
--colors-gray-100: #f3f4f6;
|
|
660
|
+
--colors-gray-200: #e5e7eb;
|
|
661
|
+
--colors-gray-300: #d1d5db;
|
|
662
|
+
--colors-gray-400: #9ca3af;
|
|
663
|
+
--colors-gray-500: #6b7280;
|
|
664
|
+
--colors-gray-600: #4b5563;
|
|
665
|
+
--colors-gray-700: #374151;
|
|
666
|
+
--colors-gray-800: #1f2937;
|
|
667
|
+
--colors-gray-900: #111827;
|
|
668
|
+
--colors-gray-950: #030712;
|
|
669
|
+
--colors-slate-50: #f8fafc;
|
|
670
|
+
--colors-slate-100: #f1f5f9;
|
|
671
|
+
--colors-slate-200: #e2e8f0;
|
|
672
|
+
--colors-slate-300: #cbd5e1;
|
|
673
|
+
--colors-slate-400: #94a3b8;
|
|
674
|
+
--colors-slate-500: #64748b;
|
|
675
|
+
--colors-slate-600: #475569;
|
|
676
|
+
--colors-slate-700: #334155;
|
|
677
|
+
--colors-slate-800: #1e293b;
|
|
678
|
+
--colors-slate-900: #0f172a;
|
|
679
|
+
--colors-slate-950: #020617;
|
|
680
|
+
--colors-neutral-50: #fafafa;
|
|
681
|
+
--colors-neutral-100: #f5f5f5;
|
|
682
|
+
--colors-neutral-200: #e5e5e5;
|
|
683
|
+
--colors-neutral-300: #d4d4d4;
|
|
684
|
+
--colors-neutral-400: #a3a3a3;
|
|
685
|
+
--colors-neutral-500: #737373;
|
|
686
|
+
--colors-neutral-600: #525252;
|
|
687
|
+
--colors-neutral-700: #404040;
|
|
688
|
+
--colors-neutral-800: #262626;
|
|
689
|
+
--colors-neutral-900: #171717;
|
|
690
|
+
--colors-neutral-950: #0a0a0a;
|
|
691
|
+
--assets-check: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200H3V3H0V0Z%22%20fill%3D%22%23E1E1E1%22/%3E%3Cpath%20d%3D%22M3%200H6V3H3V0Z%22%20fill%3D%22white%22/%3E%3Cpath%20d%3D%22M3%203H6V6H3V3Z%22%20fill%3D%22%23E1E1E1%22/%3E%3Cpath%20d%3D%22M0%203H3V6H0V3Z%22%20fill%3D%22white%22/%3E%3C/svg%3E%0A');
|
|
692
|
+
--breakpoints-sm: 640px;
|
|
693
|
+
--breakpoints-md: 768px;
|
|
694
|
+
--breakpoints-lg: 1024px;
|
|
695
|
+
--breakpoints-xl: 1280px;
|
|
696
|
+
--breakpoints-2xl: 1536px;
|
|
697
|
+
--shadows-inset: inset 0 0 0 1px rgba(0,0,0,0.1);
|
|
698
|
+
--colors-text: var(--colors-black);
|
|
699
|
+
--colors-bg: var(--colors-white);
|
|
700
|
+
--colors-card: var(--colors-neutral-200);
|
|
701
|
+
--colors-border: var(--colors-neutral-300)
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.dark {
|
|
705
|
+
--shadows-inset: inset 0 0 0 1px rgba(255,255,255,0.2);
|
|
706
|
+
--colors-text: var(--colors-neutral-200);
|
|
707
|
+
--colors-bg: var(--colors-neutral-900);
|
|
708
|
+
--colors-card: var(--colors-neutral-800);
|
|
709
|
+
--colors-border: var(--colors-neutral-700)
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
@keyframes spin{
|
|
713
|
+
to{
|
|
714
|
+
transform: rotate(360deg);
|
|
715
|
+
}
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
@keyframes ping{
|
|
719
|
+
75%, 100%{
|
|
720
|
+
transform: scale(2);
|
|
721
|
+
opacity: 0;
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
@keyframes pulse{
|
|
726
|
+
50%{
|
|
727
|
+
opacity: .5;
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
@keyframes bounce{
|
|
732
|
+
0%, 100%{
|
|
733
|
+
transform: translateY(-25%);
|
|
734
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
50%{
|
|
738
|
+
transform: none;
|
|
739
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
740
|
+
}
|
|
741
|
+
}
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
@layer utilities{
|
|
745
|
+
.text_red\.400{
|
|
746
|
+
color: var(--colors-red-400);
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.bg_\#646cff{
|
|
750
|
+
background: #646cff;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
.px_6{
|
|
754
|
+
padding-inline: var(--spacing-6);
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.mt_6{
|
|
758
|
+
margin-top: var(--spacing-6);
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.\[\&\.active\]\:text_yellow\.300.active{
|
|
762
|
+
color: var(--colors-yellow-300);
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.sr_true{
|
|
766
|
+
position: absolute;
|
|
767
|
+
width: 1px;
|
|
768
|
+
height: 1px;
|
|
769
|
+
padding: 0;
|
|
770
|
+
margin: -1px;
|
|
771
|
+
overflow: hidden;
|
|
772
|
+
clip: rect(0, 0, 0, 0);
|
|
773
|
+
white-space: nowrap;
|
|
774
|
+
border-width: 0;
|
|
775
|
+
}
|
|
4
776
|
|
|
5
|
-
|
|
777
|
+
.bg_transparent{
|
|
778
|
+
background: var(--colors-transparent);
|
|
779
|
+
}
|
|
6
780
|
|
|
7
|
-
|
|
781
|
+
.text_neutral\.600{
|
|
782
|
+
color: var(--colors-neutral-600);
|
|
783
|
+
}
|
|
8
784
|
|
|
9
|
-
|
|
785
|
+
.dark\:text_neutral\.300.dark, .dark .dark\:text_neutral\.300{
|
|
786
|
+
color: var(--colors-neutral-300);
|
|
787
|
+
}
|
|
10
788
|
|
|
11
|
-
|
|
789
|
+
.shadow_sm{
|
|
790
|
+
box-shadow: var(--shadows-sm);
|
|
791
|
+
}
|
|
12
792
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
793
|
+
.border_border{
|
|
794
|
+
border-color: var(--colors-border);
|
|
795
|
+
}
|
|
17
796
|
|
|
18
|
-
.
|
|
19
|
-
|
|
20
|
-
|
|
797
|
+
.pt_16{
|
|
798
|
+
padding-top: var(--spacing-16);
|
|
799
|
+
}
|
|
21
800
|
|
|
22
|
-
.
|
|
23
|
-
|
|
24
|
-
|
|
801
|
+
.mt_10{
|
|
802
|
+
margin-top: var(--spacing-10);
|
|
803
|
+
}
|
|
25
804
|
|
|
26
|
-
.
|
|
27
|
-
|
|
28
|
-
|
|
805
|
+
.opacity_0\.5{
|
|
806
|
+
opacity: 0.5;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
.h_10{
|
|
810
|
+
height: var(--sizes-10);
|
|
811
|
+
}
|
|
29
812
|
|
|
30
|
-
.
|
|
31
|
-
|
|
813
|
+
.overflow_hidden{
|
|
814
|
+
overflow: hidden;
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
.shadow_inset{
|
|
818
|
+
box-shadow: var(--shadows-inset);
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
.before\:content_\'\'::before{
|
|
822
|
+
content: '';
|
|
32
823
|
}
|
|
33
824
|
|
|
34
|
-
.
|
|
35
|
-
|
|
825
|
+
.before\:pos_absolute::before{
|
|
826
|
+
position: absolute;
|
|
36
827
|
}
|
|
37
828
|
|
|
38
|
-
.
|
|
39
|
-
|
|
829
|
+
.before\:rounded_sm::before{
|
|
830
|
+
border-radius: var(--radii-sm);
|
|
40
831
|
}
|
|
41
832
|
|
|
42
|
-
.
|
|
43
|
-
|
|
833
|
+
.before\:w_100\%::before{
|
|
834
|
+
width: 100%;
|
|
44
835
|
}
|
|
45
836
|
|
|
46
|
-
.
|
|
47
|
-
|
|
837
|
+
.before\:h_100\%::before{
|
|
838
|
+
height: 100%;
|
|
48
839
|
}
|
|
49
840
|
|
|
50
|
-
.
|
|
51
|
-
|
|
841
|
+
.before\:bg_24px::before{
|
|
842
|
+
background-size: 24px;
|
|
52
843
|
}
|
|
53
844
|
|
|
54
|
-
.
|
|
55
|
-
|
|
845
|
+
.before\:z_-1::before{
|
|
846
|
+
z-index: -1;
|
|
56
847
|
}
|
|
57
848
|
|
|
58
|
-
.
|
|
59
|
-
|
|
849
|
+
.before\:bg-img_check::before{
|
|
850
|
+
background-image: var(--assets-check);
|
|
60
851
|
}
|
|
61
852
|
|
|
62
|
-
.
|
|
63
|
-
|
|
64
|
-
|
|
853
|
+
.fs_xl{
|
|
854
|
+
font-size: var(--font-sizes-xl);
|
|
855
|
+
}
|
|
65
856
|
|
|
66
|
-
.
|
|
67
|
-
|
|
68
|
-
|
|
857
|
+
.fs_5xl{
|
|
858
|
+
font-size: var(--font-sizes-5xl);
|
|
859
|
+
}
|
|
69
860
|
|
|
70
|
-
.
|
|
71
|
-
|
|
72
|
-
|
|
861
|
+
.fs_100px{
|
|
862
|
+
font-size: 100px;
|
|
863
|
+
}
|
|
73
864
|
|
|
74
|
-
.
|
|
75
|
-
|
|
76
|
-
|
|
865
|
+
.leading_1{
|
|
866
|
+
line-height: 1;
|
|
867
|
+
}
|
|
77
868
|
|
|
78
|
-
.
|
|
79
|
-
|
|
80
|
-
|
|
869
|
+
.mb_3\.5{
|
|
870
|
+
margin-bottom: var(--spacing-3\.5);
|
|
871
|
+
}
|
|
81
872
|
|
|
82
|
-
.
|
|
83
|
-
|
|
84
|
-
|
|
873
|
+
.pos_sticky{
|
|
874
|
+
position: sticky;
|
|
875
|
+
}
|
|
85
876
|
|
|
86
|
-
.
|
|
87
|
-
|
|
88
|
-
|
|
877
|
+
.top_0{
|
|
878
|
+
top: var(--spacing-0);
|
|
879
|
+
}
|
|
89
880
|
|
|
90
|
-
.
|
|
91
|
-
|
|
92
|
-
|
|
881
|
+
.z_1{
|
|
882
|
+
z-index: 1;
|
|
883
|
+
}
|
|
93
884
|
|
|
94
|
-
.
|
|
95
|
-
|
|
96
|
-
|
|
885
|
+
.resize_vertical{
|
|
886
|
+
resize: vertical;
|
|
887
|
+
}
|
|
97
888
|
|
|
98
|
-
.
|
|
99
|
-
|
|
100
|
-
|
|
889
|
+
.opacity_0\.4{
|
|
890
|
+
opacity: 0.4;
|
|
891
|
+
}
|
|
101
892
|
|
|
102
|
-
.
|
|
103
|
-
|
|
104
|
-
|
|
893
|
+
.fs_4xl{
|
|
894
|
+
font-size: var(--font-sizes-4xl);
|
|
895
|
+
}
|
|
105
896
|
|
|
106
|
-
.
|
|
107
|
-
|
|
108
|
-
|
|
897
|
+
.leading_normal{
|
|
898
|
+
line-height: var(--line-heights-normal);
|
|
899
|
+
}
|
|
109
900
|
|
|
110
|
-
.
|
|
111
|
-
|
|
901
|
+
.divide-y_1px > :not([hidden]) ~ :not([hidden]){
|
|
902
|
+
border-top-width: 1px;
|
|
903
|
+
border-bottom-width: 0px;
|
|
112
904
|
}
|
|
113
905
|
|
|
114
|
-
.
|
|
115
|
-
|
|
906
|
+
.divide_card > :not([hidden]) ~ :not([hidden]){
|
|
907
|
+
border-color: var(--colors-card);
|
|
116
908
|
}
|
|
117
909
|
|
|
118
|
-
.
|
|
119
|
-
|
|
120
|
-
|
|
910
|
+
.mt_1\.5{
|
|
911
|
+
margin-top: var(--spacing-1\.5);
|
|
912
|
+
}
|
|
121
913
|
|
|
122
|
-
.
|
|
123
|
-
|
|
124
|
-
|
|
914
|
+
.h_20{
|
|
915
|
+
height: var(--sizes-20);
|
|
916
|
+
}
|
|
125
917
|
|
|
126
|
-
.
|
|
127
|
-
|
|
128
|
-
|
|
918
|
+
.w_60{
|
|
919
|
+
width: var(--sizes-60);
|
|
920
|
+
}
|
|
129
921
|
|
|
130
|
-
.
|
|
131
|
-
|
|
132
|
-
|
|
922
|
+
.rounded_sm{
|
|
923
|
+
border-radius: var(--radii-sm);
|
|
924
|
+
}
|
|
133
925
|
|
|
134
|
-
.
|
|
135
|
-
|
|
136
|
-
|
|
926
|
+
.p_4{
|
|
927
|
+
padding: var(--spacing-4);
|
|
928
|
+
}
|
|
137
929
|
|
|
138
|
-
.
|
|
139
|
-
|
|
140
|
-
|
|
930
|
+
.transition_all_0\.2s_ease{
|
|
931
|
+
transition: all 0.2s ease;
|
|
932
|
+
}
|
|
141
933
|
|
|
142
|
-
|
|
143
|
-
font-
|
|
934
|
+
.\[\&_svg\]\:font_normal svg{
|
|
935
|
+
font-weight: var(--font-weights-normal);
|
|
144
936
|
}
|
|
145
937
|
|
|
146
|
-
|
|
147
|
-
|
|
938
|
+
.\[\&_svg\]\:fs_xx-large svg{
|
|
939
|
+
font-size: xx-large;
|
|
148
940
|
}
|
|
149
941
|
|
|
150
|
-
|
|
151
|
-
|
|
942
|
+
.\[\&_svg\]\:mb_6 svg{
|
|
943
|
+
margin-bottom: var(--spacing-6);
|
|
152
944
|
}
|
|
153
945
|
|
|
154
|
-
|
|
155
|
-
|
|
946
|
+
.\[\&_svg\]\:h_6 svg{
|
|
947
|
+
height: var(--sizes-6);
|
|
156
948
|
}
|
|
157
949
|
|
|
158
|
-
|
|
159
|
-
|
|
950
|
+
.\[\&_svg\]\:w_6 svg{
|
|
951
|
+
width: var(--sizes-6);
|
|
160
952
|
}
|
|
161
953
|
|
|
162
|
-
.
|
|
163
|
-
|
|
164
|
-
|
|
954
|
+
.mt_3{
|
|
955
|
+
margin-top: var(--spacing-3);
|
|
956
|
+
}
|
|
165
957
|
|
|
166
|
-
.
|
|
167
|
-
|
|
168
|
-
|
|
958
|
+
.py_24{
|
|
959
|
+
padding-block: var(--spacing-24);
|
|
960
|
+
}
|
|
169
961
|
|
|
170
|
-
.
|
|
171
|
-
|
|
172
|
-
|
|
962
|
+
.mb_10{
|
|
963
|
+
margin-bottom: var(--spacing-10);
|
|
964
|
+
}
|
|
173
965
|
|
|
174
|
-
.
|
|
175
|
-
|
|
176
|
-
|
|
966
|
+
.px_8{
|
|
967
|
+
padding-inline: var(--spacing-8);
|
|
968
|
+
}
|
|
177
969
|
|
|
178
|
-
.
|
|
179
|
-
|
|
180
|
-
|
|
970
|
+
.py_4{
|
|
971
|
+
padding-block: var(--spacing-4);
|
|
972
|
+
}
|
|
181
973
|
|
|
182
|
-
.
|
|
183
|
-
|
|
184
|
-
|
|
974
|
+
.mb_6{
|
|
975
|
+
margin-bottom: var(--spacing-6);
|
|
976
|
+
}
|
|
185
977
|
|
|
186
|
-
.
|
|
187
|
-
|
|
188
|
-
|
|
978
|
+
.w_80px{
|
|
979
|
+
width: 80px;
|
|
980
|
+
}
|
|
189
981
|
|
|
190
|
-
.
|
|
191
|
-
|
|
192
|
-
|
|
982
|
+
.h_80px{
|
|
983
|
+
height: 80px;
|
|
984
|
+
}
|
|
193
985
|
|
|
194
|
-
.
|
|
195
|
-
|
|
196
|
-
|
|
986
|
+
.h_12{
|
|
987
|
+
height: var(--sizes-12);
|
|
988
|
+
}
|
|
197
989
|
|
|
198
|
-
.
|
|
199
|
-
|
|
200
|
-
|
|
990
|
+
.min-w_5{
|
|
991
|
+
min-width: var(--sizes-5);
|
|
992
|
+
}
|
|
201
993
|
|
|
202
|
-
.
|
|
203
|
-
background: var(--colors-
|
|
204
|
-
|
|
994
|
+
.bg_neutral\.800{
|
|
995
|
+
background: var(--colors-neutral-800);
|
|
996
|
+
}
|
|
205
997
|
|
|
206
|
-
.
|
|
207
|
-
|
|
208
|
-
|
|
998
|
+
.py_1{
|
|
999
|
+
padding-block: var(--spacing-1);
|
|
1000
|
+
}
|
|
209
1001
|
|
|
210
|
-
.
|
|
211
|
-
color: var(--colors-
|
|
212
|
-
|
|
1002
|
+
.text_white{
|
|
1003
|
+
color: var(--colors-white);
|
|
1004
|
+
}
|
|
213
1005
|
|
|
214
|
-
.
|
|
215
|
-
|
|
216
|
-
|
|
1006
|
+
.rounded-br_sm{
|
|
1007
|
+
border-bottom-right-radius: var(--radii-sm);
|
|
1008
|
+
}
|
|
217
1009
|
|
|
218
|
-
.
|
|
219
|
-
border-color: var(--colors-
|
|
220
|
-
|
|
1010
|
+
.border_neutral\.700{
|
|
1011
|
+
border-color: var(--colors-neutral-700);
|
|
1012
|
+
}
|
|
221
1013
|
|
|
222
|
-
.
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
}
|
|
1014
|
+
.fs_sm{
|
|
1015
|
+
font-size: var(--font-sizes-sm);
|
|
1016
|
+
}
|
|
226
1017
|
|
|
227
|
-
.
|
|
228
|
-
|
|
229
|
-
|
|
1018
|
+
.d_block{
|
|
1019
|
+
display: block;
|
|
1020
|
+
}
|
|
230
1021
|
|
|
231
|
-
.
|
|
232
|
-
|
|
233
|
-
|
|
1022
|
+
.py_1\.5{
|
|
1023
|
+
padding-block: var(--spacing-1\.5);
|
|
1024
|
+
}
|
|
234
1025
|
|
|
235
|
-
.
|
|
236
|
-
|
|
237
|
-
|
|
1026
|
+
.cursor_pointer{
|
|
1027
|
+
cursor: pointer;
|
|
1028
|
+
}
|
|
238
1029
|
|
|
239
|
-
.
|
|
240
|
-
|
|
241
|
-
|
|
1030
|
+
.fs_md{
|
|
1031
|
+
font-size: var(--font-sizes-md);
|
|
1032
|
+
}
|
|
242
1033
|
|
|
243
|
-
.
|
|
244
|
-
|
|
1034
|
+
.currentPage\:text_yellow\.300[aria-current=page]{
|
|
1035
|
+
color: var(--colors-yellow-300);
|
|
245
1036
|
}
|
|
246
1037
|
|
|
247
|
-
|
|
248
|
-
font-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
.\[\&_svg\]\:fs_xx-large svg {
|
|
252
|
-
font-size: xx-large
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
.\[\&_svg\]\:mb_6 svg {
|
|
256
|
-
margin-bottom: var(--spacing-6)
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
.\[\&_svg\]\:h_6 svg {
|
|
260
|
-
height: var(--sizes-6)
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
.\[\&_svg\]\:w_6 svg {
|
|
264
|
-
width: var(--sizes-6)
|
|
265
|
-
}
|
|
1038
|
+
.fs_small{
|
|
1039
|
+
font-size: small;
|
|
1040
|
+
}
|
|
266
1041
|
|
|
267
|
-
.
|
|
268
|
-
|
|
269
|
-
|
|
1042
|
+
.opacity_0\.7{
|
|
1043
|
+
opacity: 0.7;
|
|
1044
|
+
}
|
|
270
1045
|
|
|
271
|
-
.
|
|
272
|
-
|
|
273
|
-
|
|
1046
|
+
.list_none{
|
|
1047
|
+
list-style-type: none;
|
|
1048
|
+
}
|
|
274
1049
|
|
|
275
|
-
.
|
|
276
|
-
|
|
277
|
-
|
|
1050
|
+
.col-span_span_3_\/_span_3{
|
|
1051
|
+
grid-column: span 3 / span 3;
|
|
1052
|
+
}
|
|
278
1053
|
|
|
279
|
-
.
|
|
280
|
-
|
|
281
|
-
|
|
1054
|
+
.h_5{
|
|
1055
|
+
height: var(--sizes-5);
|
|
1056
|
+
}
|
|
282
1057
|
|
|
283
|
-
.
|
|
284
|
-
|
|
285
|
-
|
|
1058
|
+
.bg_rgba\(255\,_192\,_203\,_0\.5\){
|
|
1059
|
+
background: rgba(255, 192, 203, 0.5);
|
|
1060
|
+
}
|
|
286
1061
|
|
|
287
|
-
.
|
|
288
|
-
|
|
289
|
-
|
|
1062
|
+
.col-span_span_2_\/_span_2{
|
|
1063
|
+
grid-column: span 2 / span 2;
|
|
1064
|
+
}
|
|
290
1065
|
|
|
291
|
-
.
|
|
292
|
-
|
|
293
|
-
|
|
1066
|
+
.col-span_span_5_\/_span_5{
|
|
1067
|
+
grid-column: span 5 / span 5;
|
|
1068
|
+
}
|
|
294
1069
|
|
|
295
|
-
.
|
|
296
|
-
|
|
297
|
-
|
|
1070
|
+
.px_1{
|
|
1071
|
+
padding-inline: var(--spacing-1);
|
|
1072
|
+
}
|
|
298
1073
|
|
|
299
|
-
.
|
|
300
|
-
padding-
|
|
301
|
-
|
|
1074
|
+
.py_2\.5{
|
|
1075
|
+
padding-block: var(--spacing-2\.5);
|
|
1076
|
+
}
|
|
302
1077
|
|
|
303
|
-
.
|
|
304
|
-
|
|
305
|
-
|
|
1078
|
+
.flex_auto{
|
|
1079
|
+
flex: 1 1 auto;
|
|
1080
|
+
}
|
|
306
1081
|
|
|
307
|
-
.
|
|
308
|
-
margin-
|
|
309
|
-
|
|
1082
|
+
.my_3{
|
|
1083
|
+
margin-block: var(--spacing-3);
|
|
1084
|
+
}
|
|
310
1085
|
|
|
311
|
-
.
|
|
312
|
-
|
|
313
|
-
|
|
1086
|
+
.truncate_true{
|
|
1087
|
+
overflow: hidden;
|
|
1088
|
+
text-overflow: ellipsis;
|
|
1089
|
+
white-space: nowrap;
|
|
1090
|
+
}
|
|
314
1091
|
|
|
315
|
-
.
|
|
316
|
-
|
|
317
|
-
|
|
1092
|
+
.gap_12{
|
|
1093
|
+
gap: var(--spacing-12);
|
|
1094
|
+
}
|
|
318
1095
|
|
|
319
|
-
.
|
|
320
|
-
|
|
321
|
-
|
|
1096
|
+
.mt_5{
|
|
1097
|
+
margin-top: var(--spacing-5);
|
|
1098
|
+
}
|
|
322
1099
|
|
|
323
|
-
.
|
|
324
|
-
|
|
325
|
-
|
|
1100
|
+
.bg_card{
|
|
1101
|
+
background: var(--colors-card);
|
|
1102
|
+
}
|
|
326
1103
|
|
|
327
|
-
.
|
|
328
|
-
|
|
329
|
-
|
|
1104
|
+
.ring_0{
|
|
1105
|
+
outline: 0;
|
|
1106
|
+
}
|
|
330
1107
|
|
|
331
|
-
.
|
|
332
|
-
|
|
333
|
-
|
|
1108
|
+
.pt_28{
|
|
1109
|
+
padding-top: var(--spacing-28);
|
|
1110
|
+
}
|
|
334
1111
|
|
|
335
|
-
.
|
|
336
|
-
|
|
337
|
-
|
|
1112
|
+
.pb_28{
|
|
1113
|
+
padding-bottom: var(--spacing-28);
|
|
1114
|
+
}
|
|
338
1115
|
|
|
339
|
-
.
|
|
340
|
-
|
|
341
|
-
|
|
1116
|
+
.w_fit-content{
|
|
1117
|
+
width: fit-content;
|
|
1118
|
+
}
|
|
342
1119
|
|
|
343
|
-
.
|
|
344
|
-
|
|
345
|
-
|
|
1120
|
+
.gap_1\.5{
|
|
1121
|
+
gap: var(--spacing-1\.5);
|
|
1122
|
+
}
|
|
346
1123
|
|
|
347
|
-
.
|
|
348
|
-
|
|
349
|
-
|
|
1124
|
+
.white-space_nowrap{
|
|
1125
|
+
white-space: nowrap;
|
|
1126
|
+
}
|
|
350
1127
|
|
|
351
|
-
.
|
|
352
|
-
|
|
353
|
-
|
|
1128
|
+
.w_48{
|
|
1129
|
+
width: var(--sizes-48);
|
|
1130
|
+
}
|
|
354
1131
|
|
|
355
|
-
.
|
|
356
|
-
|
|
357
|
-
|
|
1132
|
+
.text_capitalize{
|
|
1133
|
+
text-transform: capitalize;
|
|
1134
|
+
}
|
|
358
1135
|
|
|
359
|
-
.
|
|
360
|
-
|
|
361
|
-
|
|
1136
|
+
.mr_2{
|
|
1137
|
+
margin-right: var(--spacing-2);
|
|
1138
|
+
}
|
|
362
1139
|
|
|
363
|
-
.
|
|
364
|
-
|
|
365
|
-
|
|
1140
|
+
.h_calc\(100vh_-_env\(safe-area-inset-bottom\)\){
|
|
1141
|
+
height: calc(100vh - env(safe-area-inset-bottom));
|
|
1142
|
+
}
|
|
366
1143
|
|
|
367
|
-
.
|
|
368
|
-
|
|
369
|
-
|
|
1144
|
+
.font_bold{
|
|
1145
|
+
font-weight: var(--font-weights-bold);
|
|
1146
|
+
}
|
|
370
1147
|
|
|
371
|
-
.
|
|
372
|
-
|
|
373
|
-
|
|
1148
|
+
.w_16{
|
|
1149
|
+
width: var(--sizes-16);
|
|
1150
|
+
}
|
|
374
1151
|
|
|
375
|
-
.
|
|
376
|
-
|
|
377
|
-
|
|
1152
|
+
.mt_4{
|
|
1153
|
+
margin-top: var(--spacing-4);
|
|
1154
|
+
}
|
|
378
1155
|
|
|
379
|
-
.
|
|
380
|
-
|
|
381
|
-
|
|
1156
|
+
.pt_14{
|
|
1157
|
+
padding-top: var(--spacing-14);
|
|
1158
|
+
}
|
|
382
1159
|
|
|
383
|
-
.
|
|
384
|
-
padding-
|
|
385
|
-
|
|
1160
|
+
.pb_8{
|
|
1161
|
+
padding-bottom: var(--spacing-8);
|
|
1162
|
+
}
|
|
386
1163
|
|
|
387
|
-
.
|
|
388
|
-
font-size: var(--font-sizes-
|
|
389
|
-
|
|
1164
|
+
.fs_3xl{
|
|
1165
|
+
font-size: var(--font-sizes-3xl);
|
|
1166
|
+
}
|
|
390
1167
|
|
|
391
|
-
.
|
|
392
|
-
|
|
393
|
-
|
|
1168
|
+
.mb_8{
|
|
1169
|
+
margin-bottom: var(--spacing-8);
|
|
1170
|
+
}
|
|
394
1171
|
|
|
395
|
-
.
|
|
396
|
-
|
|
397
|
-
|
|
1172
|
+
.tracking_tight{
|
|
1173
|
+
letter-spacing: var(--letter-spacings-tight);
|
|
1174
|
+
}
|
|
398
1175
|
|
|
399
|
-
.
|
|
400
|
-
|
|
401
|
-
|
|
1176
|
+
.justify_space-between{
|
|
1177
|
+
justify-content: space-between;
|
|
1178
|
+
}
|
|
402
1179
|
|
|
403
|
-
.
|
|
404
|
-
|
|
405
|
-
|
|
1180
|
+
.font_medium{
|
|
1181
|
+
font-weight: var(--font-weights-medium);
|
|
1182
|
+
}
|
|
406
1183
|
|
|
407
|
-
.
|
|
408
|
-
|
|
409
|
-
|
|
1184
|
+
.gap_2{
|
|
1185
|
+
gap: var(--spacing-2);
|
|
1186
|
+
}
|
|
410
1187
|
|
|
411
|
-
.
|
|
412
|
-
|
|
413
|
-
|
|
1188
|
+
.font_semibold{
|
|
1189
|
+
font-weight: var(--font-weights-semibold);
|
|
1190
|
+
}
|
|
414
1191
|
|
|
415
|
-
.
|
|
416
|
-
|
|
417
|
-
|
|
1192
|
+
.fs_2xl{
|
|
1193
|
+
font-size: var(--font-sizes-2xl);
|
|
1194
|
+
}
|
|
418
1195
|
|
|
419
|
-
.
|
|
420
|
-
|
|
421
|
-
|
|
1196
|
+
.p_2{
|
|
1197
|
+
padding: var(--spacing-2);
|
|
1198
|
+
}
|
|
422
1199
|
|
|
423
|
-
.
|
|
424
|
-
|
|
425
|
-
|
|
1200
|
+
.ring_none{
|
|
1201
|
+
outline: var(--borders-none);
|
|
1202
|
+
}
|
|
426
1203
|
|
|
427
|
-
.
|
|
428
|
-
|
|
429
|
-
|
|
1204
|
+
.border_card{
|
|
1205
|
+
border-color: var(--colors-card);
|
|
1206
|
+
}
|
|
430
1207
|
|
|
431
|
-
.
|
|
432
|
-
|
|
433
|
-
|
|
1208
|
+
.gap_2\.5{
|
|
1209
|
+
gap: var(--spacing-2\.5);
|
|
1210
|
+
}
|
|
434
1211
|
|
|
435
|
-
.
|
|
436
|
-
|
|
437
|
-
|
|
1212
|
+
.text_center{
|
|
1213
|
+
text-align: center;
|
|
1214
|
+
}
|
|
438
1215
|
|
|
439
|
-
.
|
|
440
|
-
|
|
441
|
-
|
|
1216
|
+
.flex_1{
|
|
1217
|
+
flex: 1 1 0%;
|
|
1218
|
+
}
|
|
442
1219
|
|
|
443
|
-
.
|
|
444
|
-
|
|
445
|
-
|
|
1220
|
+
.gap_0\.5{
|
|
1221
|
+
gap: var(--spacing-0\.5);
|
|
1222
|
+
}
|
|
446
1223
|
|
|
447
|
-
.
|
|
448
|
-
|
|
449
|
-
|
|
1224
|
+
.mt_2{
|
|
1225
|
+
margin-top: var(--spacing-2);
|
|
1226
|
+
}
|
|
450
1227
|
|
|
451
|
-
.
|
|
452
|
-
|
|
453
|
-
|
|
1228
|
+
.gap_5{
|
|
1229
|
+
gap: var(--spacing-5);
|
|
1230
|
+
}
|
|
454
1231
|
|
|
455
|
-
.
|
|
456
|
-
|
|
457
|
-
|
|
1232
|
+
.min-h_40vh{
|
|
1233
|
+
min-height: 40vh;
|
|
1234
|
+
}
|
|
458
1235
|
|
|
459
|
-
.
|
|
460
|
-
|
|
461
|
-
|
|
1236
|
+
.opacity_0\.8{
|
|
1237
|
+
opacity: 0.8;
|
|
1238
|
+
}
|
|
462
1239
|
|
|
463
|
-
.
|
|
464
|
-
|
|
465
|
-
|
|
1240
|
+
.gap_8{
|
|
1241
|
+
gap: var(--spacing-8);
|
|
1242
|
+
}
|
|
466
1243
|
|
|
467
|
-
.
|
|
468
|
-
|
|
469
|
-
|
|
1244
|
+
.gap_3\.5{
|
|
1245
|
+
gap: var(--spacing-3\.5);
|
|
1246
|
+
}
|
|
470
1247
|
|
|
471
|
-
.
|
|
472
|
-
|
|
473
|
-
|
|
1248
|
+
.gap_1{
|
|
1249
|
+
gap: var(--spacing-1);
|
|
1250
|
+
}
|
|
474
1251
|
|
|
475
|
-
.
|
|
476
|
-
|
|
477
|
-
|
|
1252
|
+
.gap_10px{
|
|
1253
|
+
gap: 10px;
|
|
1254
|
+
}
|
|
478
1255
|
|
|
479
|
-
.
|
|
480
|
-
|
|
481
|
-
|
|
1256
|
+
.h_full{
|
|
1257
|
+
height: var(--sizes-full);
|
|
1258
|
+
}
|
|
482
1259
|
|
|
483
|
-
.
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
white-space: nowrap
|
|
487
|
-
}
|
|
1260
|
+
.min-w_60{
|
|
1261
|
+
min-width: var(--sizes-60);
|
|
1262
|
+
}
|
|
488
1263
|
|
|
489
|
-
.
|
|
490
|
-
|
|
491
|
-
|
|
1264
|
+
.px_12{
|
|
1265
|
+
padding-inline: var(--spacing-12);
|
|
1266
|
+
}
|
|
492
1267
|
|
|
493
|
-
.
|
|
494
|
-
|
|
495
|
-
|
|
1268
|
+
.py_8{
|
|
1269
|
+
padding-block: var(--spacing-8);
|
|
1270
|
+
}
|
|
496
1271
|
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
1272
|
+
.grid-cols_repeat\(auto-fit\,_minmax\(13rem\,_1fr\)\){
|
|
1273
|
+
grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
|
|
1274
|
+
}
|
|
500
1275
|
|
|
501
|
-
.
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
height: 1px;
|
|
505
|
-
padding: 0;
|
|
506
|
-
margin: -1px;
|
|
507
|
-
overflow: hidden;
|
|
508
|
-
clip: rect(0, 0, 0, 0);
|
|
509
|
-
white-space: nowrap;
|
|
510
|
-
border-width: 0
|
|
511
|
-
}
|
|
1276
|
+
.grid-cols_repeat\(auto-fit\,_minmax\(30rem\,_1fr\)\){
|
|
1277
|
+
grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
|
|
1278
|
+
}
|
|
512
1279
|
|
|
513
|
-
.
|
|
514
|
-
|
|
515
|
-
|
|
1280
|
+
.gap_4{
|
|
1281
|
+
gap: var(--spacing-4);
|
|
1282
|
+
}
|
|
516
1283
|
|
|
517
|
-
.
|
|
518
|
-
|
|
519
|
-
|
|
1284
|
+
.my_5{
|
|
1285
|
+
margin-block: var(--spacing-5);
|
|
1286
|
+
}
|
|
520
1287
|
|
|
521
|
-
.
|
|
522
|
-
|
|
523
|
-
|
|
1288
|
+
.mx_0{
|
|
1289
|
+
margin-inline: var(--spacing-0);
|
|
1290
|
+
}
|
|
524
1291
|
|
|
525
|
-
.
|
|
526
|
-
|
|
527
|
-
|
|
1292
|
+
.grid-cols_repeat\(auto-fit\,_minmax\(10rem\,_1fr\)\){
|
|
1293
|
+
grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
|
|
1294
|
+
}
|
|
528
1295
|
|
|
529
|
-
.
|
|
530
|
-
|
|
531
|
-
|
|
1296
|
+
.gap_10{
|
|
1297
|
+
gap: var(--spacing-10);
|
|
1298
|
+
}
|
|
532
1299
|
|
|
533
|
-
.
|
|
534
|
-
|
|
535
|
-
|
|
1300
|
+
.d_grid{
|
|
1301
|
+
display: grid;
|
|
1302
|
+
}
|
|
536
1303
|
|
|
537
|
-
.
|
|
538
|
-
|
|
539
|
-
|
|
1304
|
+
.grid-cols_repeat\(5\,_minmax\(0\,_1fr\)\){
|
|
1305
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
1306
|
+
}
|
|
540
1307
|
|
|
541
|
-
.
|
|
542
|
-
gap: var(--spacing-
|
|
543
|
-
|
|
1308
|
+
.gap-y_10{
|
|
1309
|
+
column-gap: var(--spacing-10);
|
|
1310
|
+
}
|
|
544
1311
|
|
|
545
|
-
.
|
|
546
|
-
gap: var(--spacing-
|
|
547
|
-
|
|
1312
|
+
.gap-x_2\.5{
|
|
1313
|
+
row-gap: var(--spacing-2\.5);
|
|
1314
|
+
}
|
|
548
1315
|
|
|
549
|
-
.
|
|
550
|
-
|
|
551
|
-
|
|
1316
|
+
.fs_24px{
|
|
1317
|
+
font-size: 24px;
|
|
1318
|
+
}
|
|
552
1319
|
|
|
553
|
-
.
|
|
554
|
-
|
|
555
|
-
|
|
1320
|
+
.mt_8{
|
|
1321
|
+
margin-top: var(--spacing-8);
|
|
1322
|
+
}
|
|
556
1323
|
|
|
557
|
-
.
|
|
558
|
-
|
|
559
|
-
|
|
1324
|
+
.flex_column{
|
|
1325
|
+
flex-direction: column;
|
|
1326
|
+
}
|
|
560
1327
|
|
|
561
|
-
.
|
|
562
|
-
|
|
563
|
-
|
|
1328
|
+
.text_uppercase{
|
|
1329
|
+
text-transform: uppercase;
|
|
1330
|
+
}
|
|
564
1331
|
|
|
565
|
-
.
|
|
566
|
-
|
|
567
|
-
|
|
1332
|
+
.justify_center{
|
|
1333
|
+
justify-content: center;
|
|
1334
|
+
}
|
|
568
1335
|
|
|
569
|
-
.
|
|
570
|
-
|
|
571
|
-
|
|
1336
|
+
.flex_0_0_auto{
|
|
1337
|
+
flex: 0 0 auto;
|
|
1338
|
+
}
|
|
572
1339
|
|
|
573
|
-
.
|
|
574
|
-
|
|
575
|
-
|
|
1340
|
+
.w_8{
|
|
1341
|
+
width: var(--sizes-8);
|
|
1342
|
+
}
|
|
576
1343
|
|
|
577
|
-
.
|
|
578
|
-
|
|
579
|
-
|
|
1344
|
+
.h_8{
|
|
1345
|
+
height: var(--sizes-8);
|
|
1346
|
+
}
|
|
580
1347
|
|
|
581
|
-
.
|
|
582
|
-
|
|
583
|
-
|
|
1348
|
+
.text_lowercase{
|
|
1349
|
+
text-transform: lowercase;
|
|
1350
|
+
}
|
|
584
1351
|
|
|
585
|
-
.
|
|
586
|
-
|
|
587
|
-
|
|
1352
|
+
.p_8{
|
|
1353
|
+
padding: var(--spacing-8);
|
|
1354
|
+
}
|
|
588
1355
|
|
|
589
|
-
.
|
|
590
|
-
|
|
591
|
-
|
|
1356
|
+
.flex-wrap_wrap{
|
|
1357
|
+
flex-wrap: wrap;
|
|
1358
|
+
}
|
|
592
1359
|
|
|
593
|
-
.
|
|
594
|
-
|
|
595
|
-
|
|
1360
|
+
.gap_6{
|
|
1361
|
+
gap: var(--spacing-6);
|
|
1362
|
+
}
|
|
596
1363
|
|
|
597
|
-
.
|
|
598
|
-
|
|
599
|
-
|
|
1364
|
+
.my_2{
|
|
1365
|
+
margin-block: var(--spacing-2);
|
|
1366
|
+
}
|
|
600
1367
|
|
|
601
|
-
.
|
|
602
|
-
|
|
603
|
-
|
|
1368
|
+
.p_0{
|
|
1369
|
+
padding: var(--spacing-0);
|
|
1370
|
+
}
|
|
604
1371
|
|
|
605
|
-
.
|
|
606
|
-
|
|
607
|
-
|
|
1372
|
+
.d_flex{
|
|
1373
|
+
display: flex;
|
|
1374
|
+
}
|
|
608
1375
|
|
|
609
|
-
.
|
|
610
|
-
|
|
611
|
-
|
|
1376
|
+
.items_center{
|
|
1377
|
+
align-items: center;
|
|
1378
|
+
}
|
|
612
1379
|
|
|
613
|
-
.
|
|
614
|
-
gap: var(--spacing-
|
|
615
|
-
|
|
1380
|
+
.gap_3{
|
|
1381
|
+
gap: var(--spacing-3);
|
|
1382
|
+
}
|
|
616
1383
|
|
|
617
|
-
.
|
|
618
|
-
|
|
619
|
-
|
|
1384
|
+
.flex_row{
|
|
1385
|
+
flex-direction: row;
|
|
1386
|
+
}
|
|
620
1387
|
|
|
621
|
-
.
|
|
622
|
-
|
|
623
|
-
|
|
1388
|
+
.rounded_md{
|
|
1389
|
+
border-radius: var(--radii-md);
|
|
1390
|
+
}
|
|
624
1391
|
|
|
625
|
-
.
|
|
626
|
-
padding-
|
|
627
|
-
|
|
1392
|
+
.px_2{
|
|
1393
|
+
padding-inline: var(--spacing-2);
|
|
1394
|
+
}
|
|
628
1395
|
|
|
629
|
-
.
|
|
630
|
-
padding-
|
|
631
|
-
|
|
1396
|
+
.py_2{
|
|
1397
|
+
padding-block: var(--spacing-2);
|
|
1398
|
+
}
|
|
632
1399
|
|
|
633
|
-
.
|
|
634
|
-
|
|
635
|
-
|
|
1400
|
+
.border-w_1px{
|
|
1401
|
+
border-width: 1px;
|
|
1402
|
+
}
|
|
636
1403
|
|
|
637
|
-
.
|
|
638
|
-
|
|
639
|
-
|
|
1404
|
+
.self_flex-start{
|
|
1405
|
+
align-self: flex-start;
|
|
1406
|
+
}
|
|
640
1407
|
|
|
641
|
-
.
|
|
642
|
-
|
|
643
|
-
|
|
1408
|
+
.text_inherit{
|
|
1409
|
+
color: inherit;
|
|
1410
|
+
}
|
|
644
1411
|
|
|
645
|
-
.
|
|
646
|
-
|
|
647
|
-
|
|
1412
|
+
.pos_relative{
|
|
1413
|
+
position: relative;
|
|
1414
|
+
}
|
|
648
1415
|
|
|
649
|
-
.
|
|
650
|
-
|
|
651
|
-
|
|
1416
|
+
.max-w_8xl{
|
|
1417
|
+
max-width: var(--sizes-8xl);
|
|
1418
|
+
}
|
|
652
1419
|
|
|
653
|
-
.
|
|
654
|
-
|
|
655
|
-
|
|
1420
|
+
.mx_auto{
|
|
1421
|
+
margin-inline: auto;
|
|
1422
|
+
}
|
|
656
1423
|
|
|
657
|
-
.
|
|
658
|
-
|
|
659
|
-
|
|
1424
|
+
.px_4{
|
|
1425
|
+
padding-inline: var(--spacing-4);
|
|
1426
|
+
}
|
|
660
1427
|
|
|
661
|
-
.
|
|
662
|
-
|
|
663
|
-
|
|
1428
|
+
.w_full{
|
|
1429
|
+
width: var(--sizes-full);
|
|
1430
|
+
}
|
|
664
1431
|
|
|
665
|
-
.
|
|
666
|
-
|
|
667
|
-
|
|
1432
|
+
.overflow_auto{
|
|
1433
|
+
overflow: auto;
|
|
1434
|
+
}
|
|
668
1435
|
|
|
669
|
-
.
|
|
670
|
-
|
|
1436
|
+
.focusWithin\:outline-style_solid:focus-within{
|
|
1437
|
+
outline-style: solid;
|
|
671
1438
|
}
|
|
672
1439
|
|
|
673
|
-
.
|
|
674
|
-
|
|
1440
|
+
.focusWithin\:ring_2px:focus-within{
|
|
1441
|
+
outline-width: 2px;
|
|
675
1442
|
}
|
|
676
1443
|
|
|
677
|
-
.
|
|
678
|
-
|
|
1444
|
+
.focusWithin\:ring_2px:focus-within{
|
|
1445
|
+
outline-offset: 2px;
|
|
679
1446
|
}
|
|
680
1447
|
|
|
681
|
-
.
|
|
682
|
-
|
|
1448
|
+
.focusWithin\:ring_neutral\.400:focus-within{
|
|
1449
|
+
outline-color: var(--colors-neutral-400);
|
|
683
1450
|
}
|
|
684
1451
|
|
|
685
|
-
.
|
|
686
|
-
|
|
1452
|
+
.hover\:shadow_lg:is(:hover, [data-hover]){
|
|
1453
|
+
box-shadow: var(--shadows-lg);
|
|
687
1454
|
}
|
|
688
1455
|
|
|
689
|
-
.
|
|
690
|
-
|
|
1456
|
+
.hover\:text_yellow\.300:is(:hover, [data-hover]){
|
|
1457
|
+
color: var(--colors-yellow-300);
|
|
691
1458
|
}
|
|
692
1459
|
|
|
693
|
-
|
|
694
|
-
|
|
1460
|
+
.\[\&\:hover\]\:bg_\#4049f0:hover{
|
|
1461
|
+
background: #4049f0;
|
|
695
1462
|
}
|
|
696
1463
|
|
|
697
|
-
|
|
698
|
-
|
|
1464
|
+
.\[\&\:hover\]\:shadow_lg:hover{
|
|
1465
|
+
box-shadow: var(--shadows-lg);
|
|
699
1466
|
}
|
|
700
1467
|
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
.focusWithin\:ring_2px:focus-within {
|
|
706
|
-
outline-width: 2px
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
.focusWithin\:ring_2px:focus-within {
|
|
710
|
-
outline-offset: 2px
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
.focusWithin\:ring_neutral\.400:focus-within {
|
|
714
|
-
outline-color: var(--colors-neutral-400)
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
.hover\:shadow_lg:is(:hover, [data-hover]) {
|
|
718
|
-
box-shadow: var(--shadows-lg)
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
.\[\&\:hover\]\:bg_\#4049f0:hover {
|
|
722
|
-
background: #4049f0
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
.\[\&\:hover\]\:shadow_lg:hover {
|
|
726
|
-
box-shadow: var(--shadows-lg)
|
|
727
|
-
}
|
|
728
|
-
|
|
729
|
-
.hover\:text_yellow\.300:is(:hover, [data-hover]) {
|
|
730
|
-
color: var(--colors-yellow-300)
|
|
731
|
-
}
|
|
732
|
-
|
|
733
|
-
@media screen and (min-width: 48em) {
|
|
734
|
-
.md\:px_6 {
|
|
1468
|
+
@media screen and (min-width: 48em){
|
|
1469
|
+
.md\:px_6{
|
|
735
1470
|
padding-inline: var(--spacing-6)
|
|
1471
|
+
}
|
|
736
1472
|
}
|
|
737
|
-
}
|
|
738
1473
|
|
|
739
|
-
@media screen and (min-width: 64em)
|
|
740
|
-
.lg\:px_8
|
|
1474
|
+
@media screen and (min-width: 64em){
|
|
1475
|
+
.lg\:px_8{
|
|
741
1476
|
padding-inline: var(--spacing-8)
|
|
1477
|
+
}
|
|
742
1478
|
}
|
|
743
|
-
}
|
|
744
1479
|
}
|