qstd 0.2.17 → 0.2.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/block/fns.d.ts +1 -0
- package/dist/block/fns.d.ts.map +1 -1
- package/dist/block/index.d.ts +6 -2
- package/dist/block/index.d.ts.map +1 -1
- package/dist/react/index.cjs +25 -13
- package/dist/react/index.js +25 -13
- package/package.json +2 -1
- package/styled-system/css/conditions.mjs +36 -0
- package/styled-system/css/css.d.ts +22 -0
- package/styled-system/css/css.mjs +45 -0
- package/styled-system/css/cva.d.ts +6 -0
- package/styled-system/css/cva.mjs +87 -0
- package/styled-system/css/cx.d.ts +5 -0
- package/styled-system/css/cx.mjs +15 -0
- package/styled-system/css/index.d.ts +5 -0
- package/styled-system/css/index.mjs +4 -0
- package/styled-system/css/sva.d.ts +4 -0
- package/styled-system/css/sva.mjs +46 -0
- package/styled-system/helpers.mjs +328 -0
- package/styled-system/jsx/aspect-ratio.d.ts +10 -0
- package/styled-system/jsx/aspect-ratio.mjs +14 -0
- package/styled-system/jsx/bleed.d.ts +10 -0
- package/styled-system/jsx/bleed.mjs +14 -0
- package/styled-system/jsx/box.d.ts +10 -0
- package/styled-system/jsx/box.mjs +14 -0
- package/styled-system/jsx/center.d.ts +10 -0
- package/styled-system/jsx/center.mjs +14 -0
- package/styled-system/jsx/circle.d.ts +10 -0
- package/styled-system/jsx/circle.mjs +14 -0
- package/styled-system/jsx/container.d.ts +10 -0
- package/styled-system/jsx/container.mjs +14 -0
- package/styled-system/jsx/cq.d.ts +10 -0
- package/styled-system/jsx/cq.mjs +14 -0
- package/styled-system/jsx/create-style-context.d.ts +54 -0
- package/styled-system/jsx/create-style-context.mjs +98 -0
- package/styled-system/jsx/divider.d.ts +10 -0
- package/styled-system/jsx/divider.mjs +14 -0
- package/styled-system/jsx/factory-helper.mjs +22 -0
- package/styled-system/jsx/factory.d.ts +3 -0
- package/styled-system/jsx/factory.mjs +89 -0
- package/styled-system/jsx/flex.d.ts +10 -0
- package/styled-system/jsx/flex.mjs +14 -0
- package/styled-system/jsx/float.d.ts +10 -0
- package/styled-system/jsx/float.mjs +14 -0
- package/styled-system/jsx/grid-item.d.ts +10 -0
- package/styled-system/jsx/grid-item.mjs +14 -0
- package/styled-system/jsx/grid.d.ts +10 -0
- package/styled-system/jsx/grid.mjs +14 -0
- package/styled-system/jsx/hstack.d.ts +10 -0
- package/styled-system/jsx/hstack.mjs +14 -0
- package/styled-system/jsx/index.d.ts +25 -0
- package/styled-system/jsx/index.mjs +23 -0
- package/styled-system/jsx/is-valid-prop.d.ts +11 -0
- package/styled-system/jsx/is-valid-prop.mjs +17 -0
- package/styled-system/jsx/link-overlay.d.ts +10 -0
- package/styled-system/jsx/link-overlay.mjs +14 -0
- package/styled-system/jsx/spacer.d.ts +10 -0
- package/styled-system/jsx/spacer.mjs +14 -0
- package/styled-system/jsx/square.d.ts +10 -0
- package/styled-system/jsx/square.mjs +14 -0
- package/styled-system/jsx/stack.d.ts +10 -0
- package/styled-system/jsx/stack.mjs +14 -0
- package/styled-system/jsx/visually-hidden.d.ts +10 -0
- package/styled-system/jsx/visually-hidden.mjs +14 -0
- package/styled-system/jsx/vstack.d.ts +10 -0
- package/styled-system/jsx/vstack.mjs +14 -0
- package/styled-system/jsx/wrap.d.ts +10 -0
- package/styled-system/jsx/wrap.mjs +14 -0
- package/styled-system/patterns/aspect-ratio.d.ts +20 -0
- package/styled-system/patterns/aspect-ratio.mjs +38 -0
- package/styled-system/patterns/bleed.d.ts +21 -0
- package/styled-system/patterns/bleed.mjs +24 -0
- package/styled-system/patterns/box.d.ts +20 -0
- package/styled-system/patterns/box.mjs +15 -0
- package/styled-system/patterns/center.d.ts +20 -0
- package/styled-system/patterns/center.mjs +21 -0
- package/styled-system/patterns/circle.d.ts +20 -0
- package/styled-system/patterns/circle.mjs +25 -0
- package/styled-system/patterns/container.d.ts +20 -0
- package/styled-system/patterns/container.mjs +21 -0
- package/styled-system/patterns/cq.d.ts +21 -0
- package/styled-system/patterns/cq.mjs +21 -0
- package/styled-system/patterns/divider.d.ts +22 -0
- package/styled-system/patterns/divider.mjs +25 -0
- package/styled-system/patterns/flex.d.ts +26 -0
- package/styled-system/patterns/flex.mjs +26 -0
- package/styled-system/patterns/float.d.ts +23 -0
- package/styled-system/patterns/float.mjs +52 -0
- package/styled-system/patterns/grid-item.d.ts +25 -0
- package/styled-system/patterns/grid-item.mjs +25 -0
- package/styled-system/patterns/grid.d.ts +24 -0
- package/styled-system/patterns/grid.mjs +27 -0
- package/styled-system/patterns/hstack.d.ts +21 -0
- package/styled-system/patterns/hstack.mjs +24 -0
- package/styled-system/patterns/index.d.ts +21 -0
- package/styled-system/patterns/index.mjs +20 -0
- package/styled-system/patterns/link-overlay.d.ts +20 -0
- package/styled-system/patterns/link-overlay.mjs +24 -0
- package/styled-system/patterns/spacer.d.ts +20 -0
- package/styled-system/patterns/spacer.mjs +21 -0
- package/styled-system/patterns/square.d.ts +20 -0
- package/styled-system/patterns/square.mjs +24 -0
- package/styled-system/patterns/stack.d.ts +23 -0
- package/styled-system/patterns/stack.mjs +24 -0
- package/styled-system/patterns/visually-hidden.d.ts +20 -0
- package/styled-system/patterns/visually-hidden.mjs +18 -0
- package/styled-system/patterns/vstack.d.ts +21 -0
- package/styled-system/patterns/vstack.mjs +24 -0
- package/styled-system/patterns/wrap.d.ts +24 -0
- package/styled-system/patterns/wrap.mjs +25 -0
- package/styled-system/styles.css +1733 -0
- package/styled-system/tokens/index.d.ts +9 -0
- package/styled-system/tokens/index.mjs +1976 -0
- package/styled-system/tokens/tokens.d.ts +60 -0
- package/styled-system/types/composition.d.ts +224 -0
- package/styled-system/types/conditions.d.ts +348 -0
- package/styled-system/types/csstype.d.ts +21298 -0
- package/styled-system/types/global.d.ts +20 -0
- package/styled-system/types/index.d.ts +8 -0
- package/styled-system/types/jsx.d.ts +67 -0
- package/styled-system/types/parts.d.ts +8 -0
- package/styled-system/types/pattern.d.ts +78 -0
- package/styled-system/types/prop-type.d.ts +277 -0
- package/styled-system/types/recipe.d.ts +181 -0
- package/styled-system/types/selectors.d.ts +59 -0
- package/styled-system/types/static-css.d.ts +56 -0
- package/styled-system/types/style-props.d.ts +7639 -0
- package/styled-system/types/system-types.d.ts +269 -0
|
@@ -0,0 +1,1733 @@
|
|
|
1
|
+
@layer reset, base, tokens, recipes, utilities;
|
|
2
|
+
|
|
3
|
+
@layer reset{
|
|
4
|
+
html,:host {
|
|
5
|
+
--font-fallback: 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';
|
|
6
|
+
line-height: 1.5;
|
|
7
|
+
-webkit-text-size-adjust: 100%;
|
|
8
|
+
-webkit-font-smoothing: antialiased;
|
|
9
|
+
-moz-osx-font-smoothing: grayscale;
|
|
10
|
+
-moz-tab-size: 4;
|
|
11
|
+
tab-size: 4;
|
|
12
|
+
font-family: var(--global-font-body, var(--font-fallback));
|
|
13
|
+
-webkit-tap-highlight-color: transparent;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
*,::before,::after,::backdrop,::file-selector-button {
|
|
17
|
+
margin: 0px;
|
|
18
|
+
padding: 0px;
|
|
19
|
+
border-width: 0px;
|
|
20
|
+
border-style: solid;
|
|
21
|
+
border-color: var(--global-color-border, currentcolor);
|
|
22
|
+
box-sizing: border-box;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
hr {
|
|
26
|
+
color: inherit;
|
|
27
|
+
height: 0px;
|
|
28
|
+
border-top-width: 1px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
body {
|
|
32
|
+
line-height: inherit;
|
|
33
|
+
height: 100%;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
img {
|
|
37
|
+
border-style: none;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
img,svg,video,canvas,audio,iframe,embed,object {
|
|
41
|
+
display: block;
|
|
42
|
+
vertical-align: middle;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
img,video {
|
|
46
|
+
max-width: 100%;
|
|
47
|
+
height: auto;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
h1,h2,h3,h4,h5,h6 {
|
|
51
|
+
text-wrap: balance;
|
|
52
|
+
font-size: inherit;
|
|
53
|
+
font-weight: inherit;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
p,h1,h2,h3,h4,h5,h6 {
|
|
57
|
+
overflow-wrap: break-word;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
ol,ul,menu {
|
|
61
|
+
list-style: none;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
button,input:where([type='button'], [type='reset'], [type='submit']),::file-selector-button {
|
|
65
|
+
appearance: button;
|
|
66
|
+
-webkit-appearance: button;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
button,input,optgroup,select,textarea,::file-selector-button {
|
|
70
|
+
font: inherit;
|
|
71
|
+
background: var(--colors-transparent);
|
|
72
|
+
font-feature-settings: inherit;
|
|
73
|
+
font-variation-settings: inherit;
|
|
74
|
+
letter-spacing: inherit;
|
|
75
|
+
color: inherit;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
::placeholder {
|
|
79
|
+
--placeholder-fallback: rgba(0, 0, 0, 0.5);
|
|
80
|
+
opacity: 1;
|
|
81
|
+
color: var(--global-color-placeholder, var(--placeholder-fallback));
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
85
|
+
::placeholder {
|
|
86
|
+
--placeholder-fallback: color-mix(in oklab, currentcolor 50%, transparent);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
::selection {
|
|
91
|
+
background-color: var(--global-color-selection, rgba(0, 115, 255, 0.3));
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
textarea {
|
|
95
|
+
resize: vertical;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
table {
|
|
99
|
+
border-color: inherit;
|
|
100
|
+
text-indent: 0px;
|
|
101
|
+
border-collapse: collapse;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
summary {
|
|
105
|
+
display: list-item;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
small {
|
|
109
|
+
font-size: 80%;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
sub,sup {
|
|
113
|
+
font-size: 75%;
|
|
114
|
+
line-height: 0;
|
|
115
|
+
position: relative;
|
|
116
|
+
vertical-align: baseline;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
sub {
|
|
120
|
+
bottom: -0.25em;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
sup {
|
|
124
|
+
top: -0.5em;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
dialog {
|
|
128
|
+
padding: 0px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
a {
|
|
132
|
+
text-decoration: inherit;
|
|
133
|
+
color: inherit;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
abbr:where([title]) {
|
|
137
|
+
text-decoration: underline dotted;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
b,strong {
|
|
141
|
+
font-weight: bolder;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
code,kbd,samp,pre {
|
|
145
|
+
--font-mono-fallback: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New';
|
|
146
|
+
font-family: var(--global-font-mono, var(--font-mono-fallback));
|
|
147
|
+
font-size: 1em;
|
|
148
|
+
font-feature-settings: normal;
|
|
149
|
+
font-variation-settings: normal;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
progress {
|
|
153
|
+
vertical-align: baseline;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
::-webkit-search-decoration,::-webkit-search-cancel-button {
|
|
157
|
+
-webkit-appearance: none;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
::-webkit-inner-spin-button,::-webkit-outer-spin-button {
|
|
161
|
+
height: auto;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
:-moz-ui-invalid {
|
|
165
|
+
box-shadow: none;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
:-moz-focusring {
|
|
169
|
+
outline: auto;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
[hidden]:where(:not([hidden='until-found'])) {
|
|
173
|
+
display: none !important;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
@layer base{
|
|
178
|
+
:root {
|
|
179
|
+
--made-with-panda: '🐼';
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
:root,html[data-theme=light] {
|
|
183
|
+
color-scheme: light;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
html[data-theme=dark] {
|
|
187
|
+
color-scheme: dark;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
html {
|
|
191
|
+
font-size: 16px;
|
|
192
|
+
line-height: 1.5;
|
|
193
|
+
font-family: geologica, sans-serif;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
*,::before,::after,::backdrop {
|
|
197
|
+
--blur: /*-*/ /*-*/;
|
|
198
|
+
--brightness: /*-*/ /*-*/;
|
|
199
|
+
--contrast: /*-*/ /*-*/;
|
|
200
|
+
--grayscale: /*-*/ /*-*/;
|
|
201
|
+
--hue-rotate: /*-*/ /*-*/;
|
|
202
|
+
--invert: /*-*/ /*-*/;
|
|
203
|
+
--saturate: /*-*/ /*-*/;
|
|
204
|
+
--sepia: /*-*/ /*-*/;
|
|
205
|
+
--drop-shadow: /*-*/ /*-*/;
|
|
206
|
+
--backdrop-blur: /*-*/ /*-*/;
|
|
207
|
+
--backdrop-brightness: /*-*/ /*-*/;
|
|
208
|
+
--backdrop-contrast: /*-*/ /*-*/;
|
|
209
|
+
--backdrop-grayscale: /*-*/ /*-*/;
|
|
210
|
+
--backdrop-hue-rotate: /*-*/ /*-*/;
|
|
211
|
+
--backdrop-invert: /*-*/ /*-*/;
|
|
212
|
+
--backdrop-opacity: /*-*/ /*-*/;
|
|
213
|
+
--backdrop-saturate: /*-*/ /*-*/;
|
|
214
|
+
--backdrop-sepia: /*-*/ /*-*/;
|
|
215
|
+
--gradient-from-position: /*-*/ /*-*/;
|
|
216
|
+
--gradient-to-position: /*-*/ /*-*/;
|
|
217
|
+
--gradient-via-position: /*-*/ /*-*/;
|
|
218
|
+
--scroll-snap-strictness: proximity;
|
|
219
|
+
--border-spacing-x: 0;
|
|
220
|
+
--border-spacing-y: 0;
|
|
221
|
+
--translate-x: 0;
|
|
222
|
+
--translate-y: 0;
|
|
223
|
+
--rotate: 0;
|
|
224
|
+
--rotate-x: 0;
|
|
225
|
+
--rotate-y: 0;
|
|
226
|
+
--skew-x: 0;
|
|
227
|
+
--skew-y: 0;
|
|
228
|
+
--scale-x: 1;
|
|
229
|
+
--scale-y: 1;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
@layer tokens{
|
|
234
|
+
:where(:root, :host) {
|
|
235
|
+
--aspect-ratios-square: 1 / 1;
|
|
236
|
+
--aspect-ratios-landscape: 4 / 3;
|
|
237
|
+
--aspect-ratios-portrait: 3 / 4;
|
|
238
|
+
--aspect-ratios-wide: 16 / 9;
|
|
239
|
+
--aspect-ratios-ultrawide: 18 / 5;
|
|
240
|
+
--aspect-ratios-golden: 1.618 / 1;
|
|
241
|
+
--borders-none: none;
|
|
242
|
+
--easings-default: cubic-bezier(0.4, 0, 0.2, 1);
|
|
243
|
+
--easings-linear: linear;
|
|
244
|
+
--easings-in: cubic-bezier(0.4, 0, 1, 1);
|
|
245
|
+
--easings-out: cubic-bezier(0, 0, 0.2, 1);
|
|
246
|
+
--easings-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
247
|
+
--durations-fastest: 50ms;
|
|
248
|
+
--durations-faster: 100ms;
|
|
249
|
+
--durations-fast: 150ms;
|
|
250
|
+
--durations-normal: 200ms;
|
|
251
|
+
--durations-slow: 300ms;
|
|
252
|
+
--durations-slower: 400ms;
|
|
253
|
+
--durations-slowest: 500ms;
|
|
254
|
+
--radii-xs: 0.125rem;
|
|
255
|
+
--radii-sm: 0.25rem;
|
|
256
|
+
--radii-md: 0.375rem;
|
|
257
|
+
--radii-lg: 0.5rem;
|
|
258
|
+
--radii-xl: 0.75rem;
|
|
259
|
+
--radii-2xl: 1rem;
|
|
260
|
+
--radii-3xl: 1.5rem;
|
|
261
|
+
--radii-4xl: 2rem;
|
|
262
|
+
--radii-full: 9999px;
|
|
263
|
+
--font-weights-thin: 100;
|
|
264
|
+
--font-weights-extralight: 200;
|
|
265
|
+
--font-weights-light: 300;
|
|
266
|
+
--font-weights-normal: 400;
|
|
267
|
+
--font-weights-medium: 500;
|
|
268
|
+
--font-weights-semibold: 600;
|
|
269
|
+
--font-weights-bold: 700;
|
|
270
|
+
--font-weights-extrabold: 800;
|
|
271
|
+
--font-weights-black: 900;
|
|
272
|
+
--line-heights-none: 1;
|
|
273
|
+
--line-heights-tight: 1.25;
|
|
274
|
+
--line-heights-snug: 1.375;
|
|
275
|
+
--line-heights-normal: 1.5;
|
|
276
|
+
--line-heights-relaxed: 1.625;
|
|
277
|
+
--line-heights-loose: 2;
|
|
278
|
+
--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";
|
|
279
|
+
--fonts-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
|
|
280
|
+
--fonts-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
281
|
+
--letter-spacings-tighter: -0.05em;
|
|
282
|
+
--letter-spacings-tight: -0.025em;
|
|
283
|
+
--letter-spacings-normal: 0em;
|
|
284
|
+
--letter-spacings-wide: 0.025em;
|
|
285
|
+
--letter-spacings-wider: 0.05em;
|
|
286
|
+
--letter-spacings-widest: 0.1em;
|
|
287
|
+
--font-sizes-2xs: 0.5rem;
|
|
288
|
+
--font-sizes-xs: 0.75rem;
|
|
289
|
+
--font-sizes-sm: 0.875rem;
|
|
290
|
+
--font-sizes-md: 1rem;
|
|
291
|
+
--font-sizes-lg: 1.125rem;
|
|
292
|
+
--font-sizes-xl: 1.25rem;
|
|
293
|
+
--font-sizes-2xl: 1.5rem;
|
|
294
|
+
--font-sizes-3xl: 1.875rem;
|
|
295
|
+
--font-sizes-4xl: 2.25rem;
|
|
296
|
+
--font-sizes-5xl: 3rem;
|
|
297
|
+
--font-sizes-6xl: 3.75rem;
|
|
298
|
+
--font-sizes-7xl: 4.5rem;
|
|
299
|
+
--font-sizes-8xl: 6rem;
|
|
300
|
+
--font-sizes-9xl: 8rem;
|
|
301
|
+
--shadows-2xs: 0 1px rgb(0 0 0 / 0.05);
|
|
302
|
+
--shadows-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
303
|
+
--shadows-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
304
|
+
--shadows-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
305
|
+
--shadows-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
306
|
+
--shadows-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
307
|
+
--shadows-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
308
|
+
--shadows-inset-2xs: inset 0 1px rgb(0 0 0 / 0.05);
|
|
309
|
+
--shadows-inset-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);
|
|
310
|
+
--shadows-inset-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);
|
|
311
|
+
--colors-current: currentColor;
|
|
312
|
+
--colors-black: #000;
|
|
313
|
+
--colors-white: #fff;
|
|
314
|
+
--colors-transparent: rgb(0 0 0 / 0);
|
|
315
|
+
--colors-rose-50: #fff1f2;
|
|
316
|
+
--colors-rose-100: #ffe4e6;
|
|
317
|
+
--colors-rose-200: #fecdd3;
|
|
318
|
+
--colors-rose-300: #fda4af;
|
|
319
|
+
--colors-rose-400: #fb7185;
|
|
320
|
+
--colors-rose-500: #f43f5e;
|
|
321
|
+
--colors-rose-600: #e11d48;
|
|
322
|
+
--colors-rose-700: #be123c;
|
|
323
|
+
--colors-rose-800: #9f1239;
|
|
324
|
+
--colors-rose-900: #881337;
|
|
325
|
+
--colors-rose-950: #4c0519;
|
|
326
|
+
--colors-pink-50: #fdf2f8;
|
|
327
|
+
--colors-pink-100: #fce7f3;
|
|
328
|
+
--colors-pink-200: #fbcfe8;
|
|
329
|
+
--colors-pink-300: #f9a8d4;
|
|
330
|
+
--colors-pink-400: #f472b6;
|
|
331
|
+
--colors-pink-500: #ec4899;
|
|
332
|
+
--colors-pink-600: #db2777;
|
|
333
|
+
--colors-pink-700: #be185d;
|
|
334
|
+
--colors-pink-800: #9d174d;
|
|
335
|
+
--colors-pink-900: #831843;
|
|
336
|
+
--colors-pink-950: #500724;
|
|
337
|
+
--colors-fuchsia-50: #fdf4ff;
|
|
338
|
+
--colors-fuchsia-100: #fae8ff;
|
|
339
|
+
--colors-fuchsia-200: #f5d0fe;
|
|
340
|
+
--colors-fuchsia-300: #f0abfc;
|
|
341
|
+
--colors-fuchsia-400: #e879f9;
|
|
342
|
+
--colors-fuchsia-500: #d946ef;
|
|
343
|
+
--colors-fuchsia-600: #c026d3;
|
|
344
|
+
--colors-fuchsia-700: #a21caf;
|
|
345
|
+
--colors-fuchsia-800: #86198f;
|
|
346
|
+
--colors-fuchsia-900: #701a75;
|
|
347
|
+
--colors-fuchsia-950: #4a044e;
|
|
348
|
+
--colors-purple-50: #faf5ff;
|
|
349
|
+
--colors-purple-100: #f3e8ff;
|
|
350
|
+
--colors-purple-200: #e9d5ff;
|
|
351
|
+
--colors-purple-300: #d8b4fe;
|
|
352
|
+
--colors-purple-400: #c084fc;
|
|
353
|
+
--colors-purple-500: #a855f7;
|
|
354
|
+
--colors-purple-600: #9333ea;
|
|
355
|
+
--colors-purple-700: #7e22ce;
|
|
356
|
+
--colors-purple-800: #6b21a8;
|
|
357
|
+
--colors-purple-900: #581c87;
|
|
358
|
+
--colors-purple-950: #3b0764;
|
|
359
|
+
--colors-violet-50: #f5f3ff;
|
|
360
|
+
--colors-violet-100: #ede9fe;
|
|
361
|
+
--colors-violet-200: #ddd6fe;
|
|
362
|
+
--colors-violet-300: #c4b5fd;
|
|
363
|
+
--colors-violet-400: #a78bfa;
|
|
364
|
+
--colors-violet-500: #8b5cf6;
|
|
365
|
+
--colors-violet-600: #7c3aed;
|
|
366
|
+
--colors-violet-700: #6d28d9;
|
|
367
|
+
--colors-violet-800: #5b21b6;
|
|
368
|
+
--colors-violet-900: #4c1d95;
|
|
369
|
+
--colors-violet-950: #2e1065;
|
|
370
|
+
--colors-indigo-50: #eef2ff;
|
|
371
|
+
--colors-indigo-100: #e0e7ff;
|
|
372
|
+
--colors-indigo-200: #c7d2fe;
|
|
373
|
+
--colors-indigo-300: #a5b4fc;
|
|
374
|
+
--colors-indigo-400: #818cf8;
|
|
375
|
+
--colors-indigo-500: #6366f1;
|
|
376
|
+
--colors-indigo-600: #4f46e5;
|
|
377
|
+
--colors-indigo-700: #4338ca;
|
|
378
|
+
--colors-indigo-800: #3730a3;
|
|
379
|
+
--colors-indigo-900: #312e81;
|
|
380
|
+
--colors-indigo-950: #1e1b4b;
|
|
381
|
+
--colors-blue-50: #eff6ff;
|
|
382
|
+
--colors-blue-100: #dbeafe;
|
|
383
|
+
--colors-blue-200: #bfdbfe;
|
|
384
|
+
--colors-blue-300: #93c5fd;
|
|
385
|
+
--colors-blue-400: #60a5fa;
|
|
386
|
+
--colors-blue-500: #3b82f6;
|
|
387
|
+
--colors-blue-600: #2563eb;
|
|
388
|
+
--colors-blue-700: #1d4ed8;
|
|
389
|
+
--colors-blue-800: #1e40af;
|
|
390
|
+
--colors-blue-900: #1e3a8a;
|
|
391
|
+
--colors-blue-950: #172554;
|
|
392
|
+
--colors-sky-50: #f0f9ff;
|
|
393
|
+
--colors-sky-100: #e0f2fe;
|
|
394
|
+
--colors-sky-200: #bae6fd;
|
|
395
|
+
--colors-sky-300: #7dd3fc;
|
|
396
|
+
--colors-sky-400: #38bdf8;
|
|
397
|
+
--colors-sky-500: #0ea5e9;
|
|
398
|
+
--colors-sky-600: #0284c7;
|
|
399
|
+
--colors-sky-700: #0369a1;
|
|
400
|
+
--colors-sky-800: #075985;
|
|
401
|
+
--colors-sky-900: #0c4a6e;
|
|
402
|
+
--colors-sky-950: #082f49;
|
|
403
|
+
--colors-cyan-50: #ecfeff;
|
|
404
|
+
--colors-cyan-100: #cffafe;
|
|
405
|
+
--colors-cyan-200: #a5f3fc;
|
|
406
|
+
--colors-cyan-300: #67e8f9;
|
|
407
|
+
--colors-cyan-400: #22d3ee;
|
|
408
|
+
--colors-cyan-500: #06b6d4;
|
|
409
|
+
--colors-cyan-600: #0891b2;
|
|
410
|
+
--colors-cyan-700: #0e7490;
|
|
411
|
+
--colors-cyan-800: #155e75;
|
|
412
|
+
--colors-cyan-900: #164e63;
|
|
413
|
+
--colors-cyan-950: #083344;
|
|
414
|
+
--colors-teal-50: #f0fdfa;
|
|
415
|
+
--colors-teal-100: #ccfbf1;
|
|
416
|
+
--colors-teal-200: #99f6e4;
|
|
417
|
+
--colors-teal-300: #5eead4;
|
|
418
|
+
--colors-teal-400: #2dd4bf;
|
|
419
|
+
--colors-teal-500: #14b8a6;
|
|
420
|
+
--colors-teal-600: #0d9488;
|
|
421
|
+
--colors-teal-700: #0f766e;
|
|
422
|
+
--colors-teal-800: #115e59;
|
|
423
|
+
--colors-teal-900: #134e4a;
|
|
424
|
+
--colors-teal-950: #042f2e;
|
|
425
|
+
--colors-emerald-50: #ecfdf5;
|
|
426
|
+
--colors-emerald-100: #d1fae5;
|
|
427
|
+
--colors-emerald-200: #a7f3d0;
|
|
428
|
+
--colors-emerald-300: #6ee7b7;
|
|
429
|
+
--colors-emerald-400: #34d399;
|
|
430
|
+
--colors-emerald-500: #10b981;
|
|
431
|
+
--colors-emerald-600: #059669;
|
|
432
|
+
--colors-emerald-700: #047857;
|
|
433
|
+
--colors-emerald-800: #065f46;
|
|
434
|
+
--colors-emerald-900: #064e3b;
|
|
435
|
+
--colors-emerald-950: #022c22;
|
|
436
|
+
--colors-green-50: #f0fdf4;
|
|
437
|
+
--colors-green-100: #dcfce7;
|
|
438
|
+
--colors-green-200: #bbf7d0;
|
|
439
|
+
--colors-green-300: #86efac;
|
|
440
|
+
--colors-green-400: #4ade80;
|
|
441
|
+
--colors-green-500: #22c55e;
|
|
442
|
+
--colors-green-600: #16a34a;
|
|
443
|
+
--colors-green-700: #15803d;
|
|
444
|
+
--colors-green-800: #166534;
|
|
445
|
+
--colors-green-900: #14532d;
|
|
446
|
+
--colors-green-950: #052e16;
|
|
447
|
+
--colors-lime-50: #f7fee7;
|
|
448
|
+
--colors-lime-100: #ecfccb;
|
|
449
|
+
--colors-lime-200: #d9f99d;
|
|
450
|
+
--colors-lime-300: #bef264;
|
|
451
|
+
--colors-lime-400: #a3e635;
|
|
452
|
+
--colors-lime-500: #84cc16;
|
|
453
|
+
--colors-lime-600: #65a30d;
|
|
454
|
+
--colors-lime-700: #4d7c0f;
|
|
455
|
+
--colors-lime-800: #3f6212;
|
|
456
|
+
--colors-lime-900: #365314;
|
|
457
|
+
--colors-lime-950: #1a2e05;
|
|
458
|
+
--colors-yellow-50: #fefce8;
|
|
459
|
+
--colors-yellow-100: #fef9c3;
|
|
460
|
+
--colors-yellow-200: #fef08a;
|
|
461
|
+
--colors-yellow-300: #fde047;
|
|
462
|
+
--colors-yellow-400: #facc15;
|
|
463
|
+
--colors-yellow-500: #eab308;
|
|
464
|
+
--colors-yellow-600: #ca8a04;
|
|
465
|
+
--colors-yellow-700: #a16207;
|
|
466
|
+
--colors-yellow-800: #854d0e;
|
|
467
|
+
--colors-yellow-900: #713f12;
|
|
468
|
+
--colors-yellow-950: #422006;
|
|
469
|
+
--colors-amber-50: #fffbeb;
|
|
470
|
+
--colors-amber-100: #fef3c7;
|
|
471
|
+
--colors-amber-200: #fde68a;
|
|
472
|
+
--colors-amber-300: #fcd34d;
|
|
473
|
+
--colors-amber-400: #fbbf24;
|
|
474
|
+
--colors-amber-500: #f59e0b;
|
|
475
|
+
--colors-amber-600: #d97706;
|
|
476
|
+
--colors-amber-700: #b45309;
|
|
477
|
+
--colors-amber-800: #92400e;
|
|
478
|
+
--colors-amber-900: #78350f;
|
|
479
|
+
--colors-amber-950: #451a03;
|
|
480
|
+
--colors-orange-50: #fff7ed;
|
|
481
|
+
--colors-orange-100: #ffedd5;
|
|
482
|
+
--colors-orange-200: #fed7aa;
|
|
483
|
+
--colors-orange-300: #fdba74;
|
|
484
|
+
--colors-orange-400: #fb923c;
|
|
485
|
+
--colors-orange-500: #f97316;
|
|
486
|
+
--colors-orange-600: #ea580c;
|
|
487
|
+
--colors-orange-700: #c2410c;
|
|
488
|
+
--colors-orange-800: #9a3412;
|
|
489
|
+
--colors-orange-900: #7c2d12;
|
|
490
|
+
--colors-orange-950: #431407;
|
|
491
|
+
--colors-red-50: #fef2f2;
|
|
492
|
+
--colors-red-100: #fee2e2;
|
|
493
|
+
--colors-red-200: #fecaca;
|
|
494
|
+
--colors-red-300: #fca5a5;
|
|
495
|
+
--colors-red-400: #f87171;
|
|
496
|
+
--colors-red-500: #ef4444;
|
|
497
|
+
--colors-red-600: #dc2626;
|
|
498
|
+
--colors-red-700: #b91c1c;
|
|
499
|
+
--colors-red-800: #991b1b;
|
|
500
|
+
--colors-red-900: #7f1d1d;
|
|
501
|
+
--colors-red-950: #450a0a;
|
|
502
|
+
--colors-neutral-50: #fafafa;
|
|
503
|
+
--colors-neutral-100: #f5f5f5;
|
|
504
|
+
--colors-neutral-200: #e5e5e5;
|
|
505
|
+
--colors-neutral-300: #d4d4d4;
|
|
506
|
+
--colors-neutral-400: #a3a3a3;
|
|
507
|
+
--colors-neutral-500: #737373;
|
|
508
|
+
--colors-neutral-600: #525252;
|
|
509
|
+
--colors-neutral-700: #404040;
|
|
510
|
+
--colors-neutral-800: #262626;
|
|
511
|
+
--colors-neutral-900: #171717;
|
|
512
|
+
--colors-neutral-950: #0a0a0a;
|
|
513
|
+
--colors-stone-50: #fafaf9;
|
|
514
|
+
--colors-stone-100: #f5f5f4;
|
|
515
|
+
--colors-stone-200: #e7e5e4;
|
|
516
|
+
--colors-stone-300: #d6d3d1;
|
|
517
|
+
--colors-stone-400: #a8a29e;
|
|
518
|
+
--colors-stone-500: #78716c;
|
|
519
|
+
--colors-stone-600: #57534e;
|
|
520
|
+
--colors-stone-700: #44403c;
|
|
521
|
+
--colors-stone-800: #292524;
|
|
522
|
+
--colors-stone-900: #1c1917;
|
|
523
|
+
--colors-stone-950: #0c0a09;
|
|
524
|
+
--colors-zinc-50: #fafafa;
|
|
525
|
+
--colors-zinc-100: #f4f4f5;
|
|
526
|
+
--colors-zinc-200: #e4e4e7;
|
|
527
|
+
--colors-zinc-300: #d4d4d8;
|
|
528
|
+
--colors-zinc-400: #a1a1aa;
|
|
529
|
+
--colors-zinc-500: #71717a;
|
|
530
|
+
--colors-zinc-600: #52525b;
|
|
531
|
+
--colors-zinc-700: #3f3f46;
|
|
532
|
+
--colors-zinc-800: #27272a;
|
|
533
|
+
--colors-zinc-900: #18181b;
|
|
534
|
+
--colors-zinc-950: #09090b;
|
|
535
|
+
--colors-gray-50: #f9fafb;
|
|
536
|
+
--colors-gray-100: #f3f4f6;
|
|
537
|
+
--colors-gray-200: #e5e7eb;
|
|
538
|
+
--colors-gray-300: #d1d5db;
|
|
539
|
+
--colors-gray-400: #9ca3af;
|
|
540
|
+
--colors-gray-500: #6b7280;
|
|
541
|
+
--colors-gray-600: #4b5563;
|
|
542
|
+
--colors-gray-700: #374151;
|
|
543
|
+
--colors-gray-800: #1f2937;
|
|
544
|
+
--colors-gray-900: #111827;
|
|
545
|
+
--colors-gray-950: #030712;
|
|
546
|
+
--colors-slate-50: #f8fafc;
|
|
547
|
+
--colors-slate-100: #f1f5f9;
|
|
548
|
+
--colors-slate-200: #e2e8f0;
|
|
549
|
+
--colors-slate-300: #cbd5e1;
|
|
550
|
+
--colors-slate-400: #94a3b8;
|
|
551
|
+
--colors-slate-500: #64748b;
|
|
552
|
+
--colors-slate-600: #475569;
|
|
553
|
+
--colors-slate-700: #334155;
|
|
554
|
+
--colors-slate-800: #1e293b;
|
|
555
|
+
--colors-slate-900: #0f172a;
|
|
556
|
+
--colors-slate-950: #020617;
|
|
557
|
+
--blurs-xs: 4px;
|
|
558
|
+
--blurs-sm: 8px;
|
|
559
|
+
--blurs-md: 12px;
|
|
560
|
+
--blurs-lg: 16px;
|
|
561
|
+
--blurs-xl: 24px;
|
|
562
|
+
--blurs-2xl: 40px;
|
|
563
|
+
--blurs-3xl: 64px;
|
|
564
|
+
--spacing-0: 0rem;
|
|
565
|
+
--spacing-1: 0.25rem;
|
|
566
|
+
--spacing-2: 0.5rem;
|
|
567
|
+
--spacing-3: 0.75rem;
|
|
568
|
+
--spacing-4: 1rem;
|
|
569
|
+
--spacing-5: 1.25rem;
|
|
570
|
+
--spacing-6: 1.5rem;
|
|
571
|
+
--spacing-7: 1.75rem;
|
|
572
|
+
--spacing-8: 2rem;
|
|
573
|
+
--spacing-9: 2.25rem;
|
|
574
|
+
--spacing-10: 2.5rem;
|
|
575
|
+
--spacing-11: 2.75rem;
|
|
576
|
+
--spacing-12: 3rem;
|
|
577
|
+
--spacing-14: 3.5rem;
|
|
578
|
+
--spacing-16: 4rem;
|
|
579
|
+
--spacing-20: 5rem;
|
|
580
|
+
--spacing-24: 6rem;
|
|
581
|
+
--spacing-28: 7rem;
|
|
582
|
+
--spacing-32: 8rem;
|
|
583
|
+
--spacing-36: 9rem;
|
|
584
|
+
--spacing-40: 10rem;
|
|
585
|
+
--spacing-44: 11rem;
|
|
586
|
+
--spacing-48: 12rem;
|
|
587
|
+
--spacing-52: 13rem;
|
|
588
|
+
--spacing-56: 14rem;
|
|
589
|
+
--spacing-60: 15rem;
|
|
590
|
+
--spacing-64: 16rem;
|
|
591
|
+
--spacing-72: 18rem;
|
|
592
|
+
--spacing-80: 20rem;
|
|
593
|
+
--spacing-96: 24rem;
|
|
594
|
+
--spacing-0\.5: 0.125rem;
|
|
595
|
+
--spacing-1\.5: 0.375rem;
|
|
596
|
+
--spacing-2\.5: 0.625rem;
|
|
597
|
+
--spacing-3\.5: 0.875rem;
|
|
598
|
+
--spacing-4\.5: 1.125rem;
|
|
599
|
+
--spacing-5\.5: 1.375rem;
|
|
600
|
+
--sizes-0: 0rem;
|
|
601
|
+
--sizes-1: 0.25rem;
|
|
602
|
+
--sizes-2: 0.5rem;
|
|
603
|
+
--sizes-3: 0.75rem;
|
|
604
|
+
--sizes-4: 1rem;
|
|
605
|
+
--sizes-5: 1.25rem;
|
|
606
|
+
--sizes-6: 1.5rem;
|
|
607
|
+
--sizes-7: 1.75rem;
|
|
608
|
+
--sizes-8: 2rem;
|
|
609
|
+
--sizes-9: 2.25rem;
|
|
610
|
+
--sizes-10: 2.5rem;
|
|
611
|
+
--sizes-11: 2.75rem;
|
|
612
|
+
--sizes-12: 3rem;
|
|
613
|
+
--sizes-14: 3.5rem;
|
|
614
|
+
--sizes-16: 4rem;
|
|
615
|
+
--sizes-20: 5rem;
|
|
616
|
+
--sizes-24: 6rem;
|
|
617
|
+
--sizes-28: 7rem;
|
|
618
|
+
--sizes-32: 8rem;
|
|
619
|
+
--sizes-36: 9rem;
|
|
620
|
+
--sizes-40: 10rem;
|
|
621
|
+
--sizes-44: 11rem;
|
|
622
|
+
--sizes-48: 12rem;
|
|
623
|
+
--sizes-52: 13rem;
|
|
624
|
+
--sizes-56: 14rem;
|
|
625
|
+
--sizes-60: 15rem;
|
|
626
|
+
--sizes-64: 16rem;
|
|
627
|
+
--sizes-72: 18rem;
|
|
628
|
+
--sizes-80: 20rem;
|
|
629
|
+
--sizes-96: 24rem;
|
|
630
|
+
--sizes-0\.5: 0.125rem;
|
|
631
|
+
--sizes-1\.5: 0.375rem;
|
|
632
|
+
--sizes-2\.5: 0.625rem;
|
|
633
|
+
--sizes-3\.5: 0.875rem;
|
|
634
|
+
--sizes-4\.5: 1.125rem;
|
|
635
|
+
--sizes-5\.5: 1.375rem;
|
|
636
|
+
--sizes-xs: 20rem;
|
|
637
|
+
--sizes-sm: 24rem;
|
|
638
|
+
--sizes-md: 28rem;
|
|
639
|
+
--sizes-lg: 32rem;
|
|
640
|
+
--sizes-xl: 36rem;
|
|
641
|
+
--sizes-2xl: 42rem;
|
|
642
|
+
--sizes-3xl: 48rem;
|
|
643
|
+
--sizes-4xl: 56rem;
|
|
644
|
+
--sizes-5xl: 64rem;
|
|
645
|
+
--sizes-6xl: 72rem;
|
|
646
|
+
--sizes-7xl: 80rem;
|
|
647
|
+
--sizes-8xl: 90rem;
|
|
648
|
+
--sizes-prose: 65ch;
|
|
649
|
+
--sizes-full: 100%;
|
|
650
|
+
--sizes-min: min-content;
|
|
651
|
+
--sizes-max: max-content;
|
|
652
|
+
--sizes-fit: fit-content;
|
|
653
|
+
--sizes-breakpoint-sm: 640px;
|
|
654
|
+
--sizes-breakpoint-md: 768px;
|
|
655
|
+
--sizes-breakpoint-lg: 1024px;
|
|
656
|
+
--sizes-breakpoint-xl: 1280px;
|
|
657
|
+
--sizes-breakpoint-2xl: 1536px;
|
|
658
|
+
--sizes-breakpoint-xs: 600px;
|
|
659
|
+
--animations-spin: spin 1s linear infinite;
|
|
660
|
+
--animations-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
661
|
+
--animations-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
662
|
+
--animations-bounce: bounce 1s infinite;
|
|
663
|
+
--breakpoints-sm: 640px;
|
|
664
|
+
--breakpoints-md: 768px;
|
|
665
|
+
--breakpoints-lg: 1024px;
|
|
666
|
+
--breakpoints-xl: 1280px;
|
|
667
|
+
--breakpoints-2xl: 1536px;
|
|
668
|
+
--breakpoints-xs: 600px;
|
|
669
|
+
--colors-text-primary: var(--colors-neutral-900);
|
|
670
|
+
--colors-text-secondary: var(--colors-neutral-400);
|
|
671
|
+
--colors-text-inverted: var(--colors-neutral-100);
|
|
672
|
+
--colors-text-alert: var(--colors-red-600);
|
|
673
|
+
--colors-input-border-color: var(--colors-neutral-300);
|
|
674
|
+
--colors-input-border-color-error: var(--colors-red-400);
|
|
675
|
+
--colors-input-outline-color-error: var(--colors-red-500);
|
|
676
|
+
--colors-input-label-color: var(--colors-neutral-400);
|
|
677
|
+
--colors-input-label-color-lifted: var(--colors-blue-500);
|
|
678
|
+
--colors-input-label-bg: var(--colors-neutral-100);
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
[data-theme=dark] {
|
|
682
|
+
--colors-text-primary: var(--colors-neutral-100);
|
|
683
|
+
--colors-text-secondary: var(--colors-neutral-400);
|
|
684
|
+
--colors-text-inverted: var(--colors-neutral-900);
|
|
685
|
+
--colors-text-alert: var(--colors-red-400);
|
|
686
|
+
--colors-input-border-color: var(--colors-neutral-600);
|
|
687
|
+
--colors-input-border-color-error: var(--colors-red-400);
|
|
688
|
+
--colors-input-outline-color-error: var(--colors-red-500);
|
|
689
|
+
--colors-input-label-color: var(--colors-neutral-400);
|
|
690
|
+
--colors-input-label-color-lifted: var(--colors-blue-500);
|
|
691
|
+
--colors-input-label-bg: var(--colors-neutral-800)
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
@keyframes ping {
|
|
695
|
+
75%,100% {
|
|
696
|
+
transform: scale(2);
|
|
697
|
+
opacity: 0;
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
@keyframes bounce {
|
|
702
|
+
0%,100% {
|
|
703
|
+
transform: translateY(-25%);
|
|
704
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
50% {
|
|
708
|
+
transform: none;
|
|
709
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
@keyframes spin {
|
|
714
|
+
from {
|
|
715
|
+
transform: rotate(0deg);
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
to {
|
|
719
|
+
transform: rotate(360deg);
|
|
720
|
+
}
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
@keyframes sheen {
|
|
724
|
+
from {
|
|
725
|
+
background-position-x: 200%;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
to {
|
|
729
|
+
background-position-x: -200%;
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
@keyframes pulse {
|
|
734
|
+
0% {
|
|
735
|
+
transform: scale(1, 1);
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
50% {
|
|
739
|
+
opacity: 0.3;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
100% {
|
|
743
|
+
transform: scale(1.3);
|
|
744
|
+
opacity: 0;
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
@layer utilities{
|
|
750
|
+
|
|
751
|
+
.grid_true {
|
|
752
|
+
display: grid;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.p_1 {
|
|
756
|
+
padding: var(--spacing-1);
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
.bg_neutral\.200 {
|
|
760
|
+
background: var(--colors-neutral-200);
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.bg_neutral\.100 {
|
|
764
|
+
background: var(--colors-neutral-100);
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.m_auto {
|
|
768
|
+
margin: auto;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.bg_neutral\.400 {
|
|
772
|
+
background: var(--colors-neutral-400);
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.bg_hsl\(0_0\%_0\%_\/_0\.3\) {
|
|
776
|
+
background: hsl(0 0% 0% / 0.3);
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.anim_sheen_1\.4s_infinite_linear {
|
|
780
|
+
animation: sheen 1.4s infinite linear;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.bd_1\.5px_solid {
|
|
784
|
+
border: 1.5px solid;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.m_0 {
|
|
788
|
+
margin: var(--spacing-0);
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.grid-area_1_\/_1 {
|
|
792
|
+
grid-area: 1 / 1;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.bg_blue\.500 {
|
|
796
|
+
background: var(--colors-blue-500);
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.bg_none {
|
|
800
|
+
background: none;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
.bg_\#60a5fa\! {
|
|
804
|
+
background: #60a5fa !important;
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
.bg_\#d1d5db\! {
|
|
808
|
+
background: #d1d5db !important;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
.bg_white {
|
|
812
|
+
background: var(--colors-white);
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
.bg_rgba\(20\,20\,20\,0\.95\) {
|
|
816
|
+
background: rgba(20,20,20,0.95);
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.ov_auto {
|
|
820
|
+
overflow: auto;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.flex_true {
|
|
824
|
+
display: flex;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.py_2 {
|
|
828
|
+
padding-block: var(--spacing-2);
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
.rounded_0 {
|
|
832
|
+
border-radius: 0;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.trs_\.2s_all_ease-in-out {
|
|
836
|
+
transition: .2s all ease-in-out;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
.gap_2 {
|
|
840
|
+
gap: var(--spacing-2);
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
.rounded_6 {
|
|
844
|
+
border-radius: 6px;
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
.ring_none\! {
|
|
848
|
+
outline: var(--borders-none) !important;
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
.trs_\.14s_background_ease-out_\.1s {
|
|
852
|
+
transition: .14s background ease-out .1s;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.rounded_12 {
|
|
856
|
+
border-radius: 12px;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
.ov_hidden {
|
|
860
|
+
overflow: hidden;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
.rounded_20 {
|
|
864
|
+
border-radius: 20px;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
.gap_4 {
|
|
868
|
+
gap: var(--spacing-4);
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
.trs_\.14s_all_ease-out {
|
|
872
|
+
transition: .14s all ease-out;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
.rounded_32 {
|
|
876
|
+
border-radius: 32px;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.rounded_50\% {
|
|
880
|
+
border-radius: 50%;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
.trs_200ms_cubic-bezier\(0\,_0\,_0\.2\,_1\)_0ms\,_\.2s_color_ease-in-out\,_\.2s_background_ease-in-out {
|
|
884
|
+
transition: 200ms cubic-bezier(0, 0, 0.2, 1) 0ms, .2s color ease-in-out, .2s background ease-in-out;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.px_2 {
|
|
888
|
+
padding-inline: var(--spacing-2);
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.py_0\.5 {
|
|
892
|
+
padding-block: var(--spacing-0\.5);
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
.rounded_8 {
|
|
896
|
+
border-radius: 8px;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.bd-c_input-border-color-error {
|
|
900
|
+
border-color: var(--colors-input-border-color-error);
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
.bd-c_input-border-color {
|
|
904
|
+
border-color: var(--colors-input-border-color);
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
.ring_1px_solid_rgba\(208\,_58\,_58\,_0\.05\) {
|
|
908
|
+
outline: 1px solid rgba(208, 58, 58, 0.05);
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
.rounded_md {
|
|
912
|
+
border-radius: md;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
.ring_none {
|
|
916
|
+
outline: var(--borders-none);
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
.rounded_9999 {
|
|
920
|
+
border-radius: 9999px;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
.gap_8px {
|
|
924
|
+
gap: 8px;
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
.bd-w_2 {
|
|
928
|
+
border-width: 2px;
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
.border-style_solid {
|
|
932
|
+
border-style: solid;
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
.bd-c_neutral\.400 {
|
|
936
|
+
border-color: var(--colors-neutral-400);
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.px_1 {
|
|
940
|
+
padding-inline: var(--spacing-1);
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
.py_1 {
|
|
944
|
+
padding-block: var(--spacing-1);
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.trs_background-color_0\.2s_ease-in-out {
|
|
948
|
+
transition: background-color 0.2s ease-in-out;
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
.px_10px {
|
|
952
|
+
padding-inline: 10px;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.py_8px {
|
|
956
|
+
padding-block: 8px;
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.align-c_start {
|
|
960
|
+
align-content: start;
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
.c_neutral\.500 {
|
|
964
|
+
color: var(--colors-neutral-500);
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
.rows_between {
|
|
968
|
+
justify-content: space-between;
|
|
969
|
+
justify-items: space-between;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.bx-s_border-box {
|
|
973
|
+
box-sizing: border-box;
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.cursor_pointer {
|
|
977
|
+
cursor: pointer;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.z_1 {
|
|
981
|
+
z-index: 1;
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.fs_\.8rem {
|
|
985
|
+
font-size: .8rem;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
.cols_1_1_1 {
|
|
989
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.rows_auto {
|
|
993
|
+
grid-template-rows: auto;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.align-i_true {
|
|
997
|
+
align-items: center;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.us_none {
|
|
1001
|
+
-webkit-user-select: none;
|
|
1002
|
+
user-select: none;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.c_neutral\.100 {
|
|
1006
|
+
color: var(--colors-neutral-100);
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
.fill_none {
|
|
1010
|
+
fill: none;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
.stk_currentColor {
|
|
1014
|
+
stroke: currentColor;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
.stk-w_4,.stk-w_4 path {
|
|
1018
|
+
stroke-width: 4;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
.pos_fixed {
|
|
1022
|
+
position: fixed;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
.bx-sh_hsl\(0deg_0\%_0\%_\/_60\%\)_0px_-4px_20px {
|
|
1026
|
+
box-shadow: hsl(0deg 0% 0% / 60%) 0px -4px 20px;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
.c_text-primary {
|
|
1030
|
+
color: var(--colors-text-primary);
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
.pos_relative {
|
|
1034
|
+
position: relative;
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
.rows_max-content_1fr {
|
|
1038
|
+
grid-template-rows: max-content 1fr;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
.cursor_row-resize {
|
|
1042
|
+
cursor: row-resize;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
.cursor_default {
|
|
1046
|
+
cursor: default;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.justify-self_center {
|
|
1050
|
+
justify-self: center;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.rg_14 {
|
|
1054
|
+
row-gap: 14px;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
.place-i_true {
|
|
1058
|
+
place-items: center;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
.pos_absolute {
|
|
1062
|
+
position: absolute;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.center_true {
|
|
1066
|
+
place-content: center;
|
|
1067
|
+
place-items: center;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
.fs_16 {
|
|
1071
|
+
font-size: 16px;
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
.lh_1 {
|
|
1075
|
+
line-height: 1;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
.c_currentColor {
|
|
1079
|
+
color: currentColor;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
.cursor_not-allowed {
|
|
1083
|
+
cursor: not-allowed;
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
.d_flex {
|
|
1087
|
+
display: flex;
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
.align-i_center {
|
|
1091
|
+
align-items: center;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
.c_blue\.500 {
|
|
1095
|
+
color: var(--colors-blue-500);
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
.stroke-color_string,.stroke-color_string path {
|
|
1099
|
+
stroke: string;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
.c_neutral\.300 {
|
|
1103
|
+
color: var(--colors-neutral-300);
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1106
|
+
.bg-c_neutral\.300 {
|
|
1107
|
+
background-color: var(--colors-neutral-300);
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
.bg-i_linear-gradient\(_90deg\,_hsla\(220\,_8\.94\%\,_66\.08\%\,_0\)_0\%\,_\{colors\.neutral\.100\/80\}_50\%\,_hsla\(220\,_8\.94\%\,_66\.08\%\,_0\)_100\%_\) {
|
|
1111
|
+
background-image: linear-gradient( 90deg, hsla(220, 8.94%, 66.08%, 0) 0%, color-mix(in srgb, var(--colors-neutral-100) 80%, transparent) 50%, hsla(220, 8.94%, 66.08%, 0) 100% );
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
.bg-r_no-repeat {
|
|
1115
|
+
background-repeat: no-repeat;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
.bg-s_200\%_100\% {
|
|
1119
|
+
background-size: 200% 100%;
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
.size_40 {
|
|
1123
|
+
width: 40px;
|
|
1124
|
+
height: 40px;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
.rows_\/_4 {
|
|
1128
|
+
row-gap: 4px;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
.relative_true {
|
|
1132
|
+
position: relative;
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
.fs_sm {
|
|
1136
|
+
font-size: var(--font-sizes-sm);
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
.c_text-alert {
|
|
1140
|
+
color: var(--colors-text-alert);
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
.trf_translateY\(-50\%\) {
|
|
1144
|
+
transform: translateY(-50%);
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
.grid-af_column {
|
|
1148
|
+
grid-auto-flow: column;
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
.pointer-events_none {
|
|
1152
|
+
pointer-events: none;
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
.trf-o_top_left {
|
|
1156
|
+
transform-origin: top left;
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
.trf_translate\(0\,_-50\%\)_scale\(1\) {
|
|
1160
|
+
transform: translate(0, -50%) scale(1);
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
.c_input-label-color {
|
|
1164
|
+
color: var(--colors-input-label-color);
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
.lh_1\.1 {
|
|
1168
|
+
line-height: 1.1;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
.ring-c_input-outline-color-error {
|
|
1172
|
+
outline-color: var(--colors-input-outline-color-error);
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
.bx-sh_lg {
|
|
1176
|
+
box-shadow: var(--shadows-lg);
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
.grid-ac_1fr {
|
|
1180
|
+
grid-auto-flow: column;
|
|
1181
|
+
grid-auto-columns: 1fr;
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.cg_8 {
|
|
1185
|
+
column-gap: 8px;
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
.rounded_true {
|
|
1189
|
+
border-radius: 9999px;
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
.bdr-r_9999 {
|
|
1193
|
+
border-top-right-radius: 9999px;
|
|
1194
|
+
border-bottom-right-radius: 9999px;
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
.bdr-l_9999 {
|
|
1198
|
+
border-top-left-radius: 9999px;
|
|
1199
|
+
border-bottom-left-radius: 9999px;
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
.white-space_nowrap {
|
|
1203
|
+
white-space: nowrap;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
.absolute_true {
|
|
1207
|
+
position: absolute;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
.bx-sh_0_0_0_6px_rgba\(0\,0\,0\,\.08\) {
|
|
1211
|
+
box-shadow: 0 0 0 6px rgba(0,0,0,.08);
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
.type_spring {
|
|
1215
|
+
type: spring;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
.stiffness_700 {
|
|
1219
|
+
stiffness: 700px;
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
.damping_30 {
|
|
1223
|
+
damping: 30px;
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
.ai_center {
|
|
1227
|
+
align-items: center;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
.jc_center {
|
|
1231
|
+
justify-content: center;
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
.ring-o_1 {
|
|
1235
|
+
outline-offset: var(--spacing-1);
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
.flex-d_column {
|
|
1239
|
+
flex-direction: column;
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
.jc_flex-start {
|
|
1243
|
+
justify-content: flex-start;
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
.bx-s_content-box {
|
|
1247
|
+
box-sizing: content-box;
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
.trf_translate\(0\,_0\)_scale\(1\) {
|
|
1251
|
+
transform: translate(0, 0) scale(1);
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
.resize_none {
|
|
1255
|
+
resize: none;
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
.scr-bar-w_thin {
|
|
1259
|
+
scrollbar-width: thin;
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
.scr-bar-c_neutral\.300_neutral\.300 {
|
|
1263
|
+
scrollbar-color: neutral.300 neutral.300;
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
.c_white {
|
|
1267
|
+
color: var(--colors-white);
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
.bx-sh_0_6px_18px_rgba\(0\,0\,0\,0\.18\) {
|
|
1271
|
+
box-shadow: 0 6px 18px rgba(0,0,0,0.18);
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
.fs_13 {
|
|
1275
|
+
font-size: 13px;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
.pr_\.5rem {
|
|
1279
|
+
padding-right: .5rem;
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
.ov-y_auto {
|
|
1283
|
+
overflow-y: auto;
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.max-h_100\% {
|
|
1287
|
+
max-height: 100%;
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
.ov-y_hidden {
|
|
1291
|
+
overflow-y: hidden;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
.w_24px {
|
|
1295
|
+
width: 24px;
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
.w_100\% {
|
|
1299
|
+
width: 100%;
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
.h_max-content\! {
|
|
1303
|
+
height: max-content !important;
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
.w_clamp\(50\%\,_700px\,_90\%\) {
|
|
1307
|
+
width: clamp(50%, 700px, 90%);
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
.pt_6 {
|
|
1311
|
+
padding-top: var(--spacing-6);
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
.w_100vw {
|
|
1315
|
+
width: 100vw;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
.left_0 {
|
|
1319
|
+
left: var(--spacing-0);
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
.right_0 {
|
|
1323
|
+
right: var(--spacing-0);
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
.bottom_0 {
|
|
1327
|
+
bottom: var(--spacing-0);
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
.bdr-tl_12 {
|
|
1331
|
+
border-top-left-radius: 12px;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
.bdr-tr_12 {
|
|
1335
|
+
border-top-right-radius: 12px;
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
.h_6 {
|
|
1339
|
+
height: 6px;
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
.w_34 {
|
|
1343
|
+
width: 34px;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
.mt_16px {
|
|
1347
|
+
margin-top: 16px;
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
.mb_4 {
|
|
1351
|
+
margin-bottom: var(--spacing-4);
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
.top_0 {
|
|
1355
|
+
top: var(--spacing-0);
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
.h_100\% {
|
|
1359
|
+
height: 100%;
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
.h_32 {
|
|
1363
|
+
height: 32px;
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
.w_32 {
|
|
1367
|
+
width: 32px;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
.top_-2 {
|
|
1371
|
+
top: calc(var(--spacing-2) * -1);
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
.right_3 {
|
|
1375
|
+
right: var(--spacing-3);
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
.w_12px {
|
|
1379
|
+
width: 12px;
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
.w_true {
|
|
1383
|
+
width: 100%;
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
.h_20 {
|
|
1387
|
+
height: 20px;
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
.pl_3 {
|
|
1391
|
+
padding-left: var(--spacing-3);
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
.top_50\% {
|
|
1395
|
+
top: 50%;
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
.left_11px {
|
|
1399
|
+
left: 11px;
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
.right_11px {
|
|
1403
|
+
right: 11px;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.ml_6 {
|
|
1407
|
+
margin-left: var(--spacing-6);
|
|
1408
|
+
}
|
|
1409
|
+
|
|
1410
|
+
.ml_1 {
|
|
1411
|
+
margin-left: var(--spacing-1);
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
.mr_1 {
|
|
1415
|
+
margin-right: var(--spacing-1);
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
.pl_7 {
|
|
1419
|
+
padding-left: var(--spacing-7);
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
.pl_2 {
|
|
1423
|
+
padding-left: var(--spacing-2);
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
.pr_6 {
|
|
1427
|
+
padding-right: var(--spacing-6);
|
|
1428
|
+
}
|
|
1429
|
+
|
|
1430
|
+
.pr_2 {
|
|
1431
|
+
padding-right: var(--spacing-2);
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1434
|
+
.h_max-content {
|
|
1435
|
+
height: max-content;
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1438
|
+
.h_8 {
|
|
1439
|
+
height: 8px;
|
|
1440
|
+
}
|
|
1441
|
+
|
|
1442
|
+
.w_24 {
|
|
1443
|
+
width: 24px;
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
.h_24 {
|
|
1447
|
+
height: 24px;
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
.mr_8 {
|
|
1451
|
+
margin-right: var(--spacing-8);
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
.mr_8px {
|
|
1455
|
+
margin-right: 8px;
|
|
1456
|
+
}
|
|
1457
|
+
|
|
1458
|
+
.h_24px {
|
|
1459
|
+
height: 24px;
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1462
|
+
.h_12px {
|
|
1463
|
+
height: 12px;
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
.h_fit-content {
|
|
1467
|
+
height: fit-content;
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
.top_1 {
|
|
1471
|
+
top: var(--spacing-1);
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
[data-theme=dark] .dark\:bg_neutral\.700 {
|
|
1475
|
+
background: var(--colors-neutral-700);
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1478
|
+
.checked\:bg_blue\.500:is(:checked, [data-checked], [aria-checked=true], [data-state="checked"]) {
|
|
1479
|
+
background: var(--colors-blue-500);
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
[data-theme=dark] .dark\:bg_neutral\.900 {
|
|
1483
|
+
background: var(--colors-neutral-900);
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
[data-theme=dark] .dark\:bg_neutral\.600 {
|
|
1487
|
+
background: var(--colors-neutral-600);
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1490
|
+
.after\:inset_0::after {
|
|
1491
|
+
inset: var(--spacing-0);
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
[data-theme=dark] .dark\:bg_blue\.400 {
|
|
1495
|
+
background: var(--colors-blue-400);
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
.disabled\:bg_neutral\.400:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
1499
|
+
background: var(--colors-neutral-400);
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
.\[\&\:\:-webkit-scrollbar-track\]\:bg_transparent\!::-webkit-scrollbar-track {
|
|
1503
|
+
background: var(--colors-transparent) !important;
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
.checked\:trs_\.14s_background_ease-out:is(:checked, [data-checked], [aria-checked=true], [data-state="checked"]) {
|
|
1507
|
+
transition: .14s background ease-out;
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
.after\:trs_\.14s_all_ease-out::after {
|
|
1511
|
+
transition: .14s all ease-out;
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
[data-theme=dark] .dark\:bd-c_neutral\.400 {
|
|
1515
|
+
border-color: var(--colors-neutral-400);
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
.selected\:bd-c_blue\.500:is([aria-selected=true], [data-selected]) {
|
|
1519
|
+
border-color: var(--colors-blue-500);
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1522
|
+
.disabled\:bd-c_neutral\.400:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
1523
|
+
border-color: var(--colors-neutral-400);
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1526
|
+
.\[\&\:\:-webkit-scrollbar-thumb\]\:rounded_20::-webkit-scrollbar-thumb {
|
|
1527
|
+
border-radius: 20px;
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
.after\:content_\"\"::after {
|
|
1531
|
+
content: "";
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
.after\:pos_absolute::after {
|
|
1535
|
+
position: absolute;
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
.after\:scale_0::after {
|
|
1539
|
+
scale: 0;
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1542
|
+
.after\:rounded_true::after {
|
|
1543
|
+
border-radius: 9999px;
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
.after\:z_-1::after {
|
|
1547
|
+
z-index: -1;
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
[data-theme=dark] .dark\:c_blue\.400 {
|
|
1551
|
+
color: var(--colors-blue-400);
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
[data-theme=dark] .dark\:bg-c_neutral\.700 {
|
|
1555
|
+
background-color: var(--colors-neutral-700);
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
[data-theme=dark] .dark\:bg-i_linear-gradient\(_90deg\,_hsla\(220\,_8\.94\%\,_66\.08\%\,_0\)_0\%\,_\{colors\.neutral\.500\/80\}_50\%\,_hsla\(220\,_8\.94\%\,_66\.08\%\,_0\)_100\%_\) {
|
|
1559
|
+
background-image: linear-gradient( 90deg, hsla(220, 8.94%, 66.08%, 0) 0%, color-mix(in srgb, var(--colors-neutral-500) 80%, transparent) 50%, hsla(220, 8.94%, 66.08%, 0) 100% );
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
.placeholder\:op_0::placeholder,.placeholder\:op_0[data-placeholder] {
|
|
1563
|
+
opacity: 0;
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
.placeholder\:op_1::placeholder,.placeholder\:op_1[data-placeholder] {
|
|
1567
|
+
opacity: 1;
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1570
|
+
.placeholder\:c_input-label-color::placeholder,.placeholder\:c_input-label-color[data-placeholder] {
|
|
1571
|
+
color: var(--colors-input-label-color);
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
[data-theme=dark] .dark\:bx-sh_0_0_0_6px_rgba\(255\,255\,255\,\.08\) {
|
|
1575
|
+
box-shadow: 0 0 0 6px rgba(255,255,255,.08);
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
.\[\&\:\:-webkit-scrollbar-thumb\]\:bg-c_neutral\.300::-webkit-scrollbar-thumb {
|
|
1579
|
+
background-color: var(--colors-neutral-300);
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1582
|
+
.\[\&\:\:-webkit-scrollbar\]\:h_6::-webkit-scrollbar {
|
|
1583
|
+
height: 6px;
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
.\[\&\:\:-webkit-scrollbar\]\:w_6::-webkit-scrollbar {
|
|
1587
|
+
width: 6px;
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1590
|
+
.active\:bg_neutral\.200:active:not(:disabled),.active\:bg_neutral\.200:active:not(:focus-visible):not(:disabled),.active\:bg_neutral\.200:active:focus-visible:not(:disabled) {
|
|
1591
|
+
background: var(--colors-neutral-200);
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:bg_input-label-bg:has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1595
|
+
background: var(--colors-input-label-bg);
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1598
|
+
.active\:bg_none:active:not(:disabled),.active\:bg_none:active:not(:focus-visible):not(:disabled),.active\:bg_none:active:focus-visible:not(:disabled) {
|
|
1599
|
+
background: none;
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
.\[\&\:has\(\+_textarea\:focus\,_\+_textarea\:not\(\:placeholder-shown\)\)\]\:bg_input-label-bg:has(+ textarea:focus, + textarea:not(:placeholder-shown)) {
|
|
1603
|
+
background: var(--colors-input-label-bg);
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
.active\:scale_0\.98:active:not(:disabled),.active\:scale_0\.98:active:not(:focus-visible):not(:disabled),.active\:scale_0\.98:active:focus-visible:not(:disabled) {
|
|
1607
|
+
scale: 0.98;
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
.active\:scale_0\.9:active:not(:disabled),.active\:scale_0\.9:active:not(:focus-visible):not(:disabled),.active\:scale_0\.9:active:focus-visible:not(:disabled) {
|
|
1611
|
+
scale: 0.9;
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
.focus\:bx-sh_0_0_0_6px_hsl\(0_0\%_100\%_\/_0\.05\):is(:focus, [data-focus]) {
|
|
1615
|
+
box-shadow: 0 0 0 6px hsl(0 0% 100% / 0.05);
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:c_input-label-color-lifted:has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1619
|
+
color: var(--colors-input-label-color-lifted);
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:c_input-label-color:has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1623
|
+
color: var(--colors-input-label-color);
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:trf-o_top_left:has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1627
|
+
transform-origin: top left;
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:trf_scale\(0\.8\):has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1631
|
+
transform: scale(0.8);
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
.active\:trf_none\!:active:not(:disabled),.active\:trf_none\!:active:not(:focus-visible):not(:disabled),.active\:trf_none\!:active:focus-visible:not(:disabled) {
|
|
1635
|
+
transform: none !important;
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
.active\:scale_none\!:active:not(:disabled),.active\:scale_none\!:active:not(:focus-visible):not(:disabled),.active\:scale_none\!:active:focus-visible:not(:disabled) {
|
|
1639
|
+
scale: none !important;
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
.\[\&\:has\(\+_textarea\:focus\,_\+_textarea\:not\(\:placeholder-shown\)\)\]\:c_input-label-color-lifted:has(+ textarea:focus, + textarea:not(:placeholder-shown)) {
|
|
1643
|
+
color: var(--colors-input-label-color-lifted);
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
.\[\&\:has\(\+_textarea\:focus\,_\+_textarea\:not\(\:placeholder-shown\)\)\]\:c_input-label-color:has(+ textarea:focus, + textarea:not(:placeholder-shown)) {
|
|
1647
|
+
color: var(--colors-input-label-color);
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
.\[\&\:has\(\+_textarea\:focus\,_\+_textarea\:not\(\:placeholder-shown\)\)\]\:trf-o_top_left:has(+ textarea:focus, + textarea:not(:placeholder-shown)) {
|
|
1651
|
+
transform-origin: top left;
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
.\[\&\:has\(\+_textarea\:focus\,_\+_textarea\:not\(\:placeholder-shown\)\)\]\:trf_scale\(0\.8\):has(+ textarea:focus, + textarea:not(:placeholder-shown)) {
|
|
1655
|
+
transform: scale(0.8);
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:ml_6:has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1659
|
+
margin-left: var(--spacing-6);
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:ml_1:has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1663
|
+
margin-left: var(--spacing-1);
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
.\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:top_-10px:has(+ input:focus, + input:not(:placeholder-shown)) {
|
|
1667
|
+
top: -10px;
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
.\[\&\:has\(\+_textarea\:focus\,_\+_textarea\:not\(\:placeholder-shown\)\)\]\:top_-14px:has(+ textarea:focus, + textarea:not(:placeholder-shown)) {
|
|
1671
|
+
top: -14px;
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
.hover\:bg_neutral\.100:hover:not(:disabled) {
|
|
1675
|
+
background: var(--colors-neutral-100);
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1678
|
+
.hover\:bg_none\!:hover:not(:disabled) {
|
|
1679
|
+
background: none !important;
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
.hover\:td_underline:hover:not(:disabled) {
|
|
1683
|
+
text-decoration: underline;
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
[data-theme=dark] .disabled\:dark\:bg_neutral\.600:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
1687
|
+
background: var(--colors-neutral-600);
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1690
|
+
[data-theme=dark] .selected\:dark\:bd-c_blue\.400:is([aria-selected=true], [data-selected]) {
|
|
1691
|
+
border-color: var(--colors-blue-400);
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
[data-theme=dark] .disabled\:dark\:bd-c_neutral\.600:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
1695
|
+
border-color: var(--colors-neutral-600);
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
.disabled\:radioLabel\:c_neutral\.400:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) [data-radio-label] {
|
|
1699
|
+
color: var(--colors-neutral-400);
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
.focusWithin\:placeholder\:op_1:focus-within::placeholder,.focusWithin\:placeholder\:op_1:focus-within[data-placeholder] {
|
|
1703
|
+
opacity: 1;
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
[data-theme=dark] .active\:dark\:bg_neutral\.800:active:not(:disabled),[data-theme=dark] .active\:dark\:bg_neutral\.800:active:not(:focus-visible):not(:disabled),[data-theme=dark] .active\:dark\:bg_neutral\.800:active:focus-visible:not(:disabled) {
|
|
1707
|
+
background: var(--colors-neutral-800);
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
.active\:after\:scale_0\.94:active:not(:disabled)::after,.active\:after\:scale_0\.94:active:not(:focus-visible):not(:disabled)::after,.active\:after\:scale_0\.94:active:focus-visible:not(:disabled)::after {
|
|
1711
|
+
scale: 0.94;
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
[data-theme=dark] .hover\:dark\:bg_neutral\.700:hover:not(:disabled) {
|
|
1715
|
+
background: var(--colors-neutral-700);
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
.hover\:after\:bg_neutral\.200:hover:not(:disabled)::after {
|
|
1719
|
+
background: var(--colors-neutral-200);
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
.hover\:after\:scale_1:hover:not(:disabled)::after {
|
|
1723
|
+
scale: 1;
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
[data-theme=dark] .disabled\:radioLabel\:dark\:c_neutral\.600:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) [data-radio-label] {
|
|
1727
|
+
color: var(--colors-neutral-600);
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
[data-theme=dark] .hover\:after\:dark\:bg_neutral\.800:hover:not(:disabled)::after {
|
|
1731
|
+
background: var(--colors-neutral-800);
|
|
1732
|
+
}
|
|
1733
|
+
}
|