flowcore-fn 2.8.2 → 2.8.3
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/pkg-index.css +591 -572
- package/package.json +2 -1
package/dist/pkg-index.css
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer theme {
|
|
5
5
|
:root,
|
|
6
|
-
:host {
|
|
6
|
+
.flowcore-root :host {
|
|
7
7
|
--font-sans:
|
|
8
8
|
ui-sans-serif,
|
|
9
9
|
system-ui,
|
|
@@ -108,119 +108,121 @@
|
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
110
|
@layer base {
|
|
111
|
-
*,
|
|
112
|
-
::after,
|
|
113
|
-
::before,
|
|
114
|
-
::backdrop,
|
|
115
|
-
::file-selector-button {
|
|
111
|
+
.flowcore-root *,
|
|
112
|
+
.flowcore-root ::after,
|
|
113
|
+
.flowcore-root ::before,
|
|
114
|
+
.flowcore-root ::backdrop,
|
|
115
|
+
.flowcore-root ::file-selector-button {
|
|
116
116
|
box-sizing: border-box;
|
|
117
117
|
margin: 0;
|
|
118
118
|
padding: 0;
|
|
119
119
|
border: 0 solid;
|
|
120
120
|
}
|
|
121
121
|
html,
|
|
122
|
-
:host {
|
|
122
|
+
.flowcore-root :host {
|
|
123
123
|
line-height: 1.5;
|
|
124
124
|
-webkit-text-size-adjust: 100%;
|
|
125
|
+
-moz-tab-size: 4;
|
|
126
|
+
-o-tab-size: 4;
|
|
125
127
|
tab-size: 4;
|
|
126
128
|
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
127
129
|
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
128
130
|
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
129
131
|
-webkit-tap-highlight-color: transparent;
|
|
130
132
|
}
|
|
131
|
-
hr {
|
|
133
|
+
.flowcore-root hr {
|
|
132
134
|
height: 0;
|
|
133
135
|
color: inherit;
|
|
134
136
|
border-top-width: 1px;
|
|
135
137
|
}
|
|
136
|
-
abbr:where([title]) {
|
|
138
|
+
.flowcore-root abbr:where([title]) {
|
|
137
139
|
-webkit-text-decoration: underline dotted;
|
|
138
140
|
text-decoration: underline dotted;
|
|
139
141
|
}
|
|
140
|
-
h1,
|
|
141
|
-
h2,
|
|
142
|
-
h3,
|
|
143
|
-
h4,
|
|
144
|
-
h5,
|
|
145
|
-
h6 {
|
|
142
|
+
.flowcore-root h1,
|
|
143
|
+
.flowcore-root h2,
|
|
144
|
+
.flowcore-root h3,
|
|
145
|
+
.flowcore-root h4,
|
|
146
|
+
.flowcore-root h5,
|
|
147
|
+
.flowcore-root h6 {
|
|
146
148
|
font-size: inherit;
|
|
147
149
|
font-weight: inherit;
|
|
148
150
|
}
|
|
149
|
-
a {
|
|
151
|
+
.flowcore-root a {
|
|
150
152
|
color: inherit;
|
|
151
153
|
-webkit-text-decoration: inherit;
|
|
152
154
|
text-decoration: inherit;
|
|
153
155
|
}
|
|
154
|
-
b,
|
|
155
|
-
strong {
|
|
156
|
+
.flowcore-root b,
|
|
157
|
+
.flowcore-root strong {
|
|
156
158
|
font-weight: bolder;
|
|
157
159
|
}
|
|
158
|
-
code,
|
|
159
|
-
kbd,
|
|
160
|
-
samp,
|
|
161
|
-
pre {
|
|
160
|
+
.flowcore-root code,
|
|
161
|
+
.flowcore-root kbd,
|
|
162
|
+
.flowcore-root samp,
|
|
163
|
+
.flowcore-root pre {
|
|
162
164
|
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
163
165
|
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
164
166
|
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
165
167
|
font-size: 1em;
|
|
166
168
|
}
|
|
167
|
-
small {
|
|
169
|
+
.flowcore-root small {
|
|
168
170
|
font-size: 80%;
|
|
169
171
|
}
|
|
170
|
-
sub,
|
|
171
|
-
sup {
|
|
172
|
+
.flowcore-root sub,
|
|
173
|
+
.flowcore-root sup {
|
|
172
174
|
font-size: 75%;
|
|
173
175
|
line-height: 0;
|
|
174
176
|
position: relative;
|
|
175
177
|
vertical-align: baseline;
|
|
176
178
|
}
|
|
177
|
-
sub {
|
|
179
|
+
.flowcore-root sub {
|
|
178
180
|
bottom: -0.25em;
|
|
179
181
|
}
|
|
180
|
-
sup {
|
|
182
|
+
.flowcore-root sup {
|
|
181
183
|
top: -0.5em;
|
|
182
184
|
}
|
|
183
|
-
table {
|
|
185
|
+
.flowcore-root table {
|
|
184
186
|
text-indent: 0;
|
|
185
187
|
border-color: inherit;
|
|
186
188
|
border-collapse: collapse;
|
|
187
189
|
}
|
|
188
|
-
:-moz-focusring {
|
|
190
|
+
.flowcore-root :-moz-focusring {
|
|
189
191
|
outline: auto;
|
|
190
192
|
}
|
|
191
|
-
progress {
|
|
193
|
+
.flowcore-root progress {
|
|
192
194
|
vertical-align: baseline;
|
|
193
195
|
}
|
|
194
|
-
summary {
|
|
196
|
+
.flowcore-root summary {
|
|
195
197
|
display: list-item;
|
|
196
198
|
}
|
|
197
|
-
ol,
|
|
198
|
-
ul,
|
|
199
|
-
menu {
|
|
199
|
+
.flowcore-root ol,
|
|
200
|
+
.flowcore-root ul,
|
|
201
|
+
.flowcore-root menu {
|
|
200
202
|
list-style: none;
|
|
201
203
|
}
|
|
202
|
-
img,
|
|
203
|
-
svg,
|
|
204
|
-
video,
|
|
205
|
-
canvas,
|
|
206
|
-
audio,
|
|
207
|
-
iframe,
|
|
208
|
-
embed,
|
|
209
|
-
object {
|
|
204
|
+
.flowcore-root img,
|
|
205
|
+
.flowcore-root svg,
|
|
206
|
+
.flowcore-root video,
|
|
207
|
+
.flowcore-root canvas,
|
|
208
|
+
.flowcore-root audio,
|
|
209
|
+
.flowcore-root iframe,
|
|
210
|
+
.flowcore-root embed,
|
|
211
|
+
.flowcore-root object {
|
|
210
212
|
display: block;
|
|
211
213
|
vertical-align: middle;
|
|
212
214
|
}
|
|
213
|
-
img,
|
|
214
|
-
video {
|
|
215
|
+
.flowcore-root img,
|
|
216
|
+
.flowcore-root video {
|
|
215
217
|
max-width: 100%;
|
|
216
218
|
height: auto;
|
|
217
219
|
}
|
|
218
|
-
button,
|
|
219
|
-
input,
|
|
220
|
-
select,
|
|
221
|
-
optgroup,
|
|
222
|
-
textarea,
|
|
223
|
-
::file-selector-button {
|
|
220
|
+
.flowcore-root button,
|
|
221
|
+
.flowcore-root input,
|
|
222
|
+
.flowcore-root select,
|
|
223
|
+
.flowcore-root optgroup,
|
|
224
|
+
.flowcore-root textarea,
|
|
225
|
+
.flowcore-root ::file-selector-button {
|
|
224
226
|
font: inherit;
|
|
225
227
|
font-feature-settings: inherit;
|
|
226
228
|
font-variation-settings: inherit;
|
|
@@ -230,77 +232,88 @@
|
|
|
230
232
|
background-color: transparent;
|
|
231
233
|
opacity: 1;
|
|
232
234
|
}
|
|
233
|
-
:where(select:is([multiple], [size])) optgroup {
|
|
235
|
+
.flowcore-root :where(select:is([multiple], [size])) optgroup {
|
|
234
236
|
font-weight: bolder;
|
|
235
237
|
}
|
|
236
|
-
:where(select:is([multiple], [size])) optgroup option {
|
|
238
|
+
.flowcore-root :where(select:is([multiple], [size])) optgroup option {
|
|
237
239
|
padding-inline-start: 20px;
|
|
238
240
|
}
|
|
239
|
-
::file-selector-button {
|
|
241
|
+
.flowcore-root ::file-selector-button {
|
|
240
242
|
margin-inline-end: 4px;
|
|
241
243
|
}
|
|
242
|
-
|
|
244
|
+
.flowcore-root ::-moz-placeholder {
|
|
245
|
+
opacity: 1;
|
|
246
|
+
}
|
|
247
|
+
.flowcore-root ::placeholder {
|
|
243
248
|
opacity: 1;
|
|
244
249
|
}
|
|
245
250
|
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
246
|
-
|
|
251
|
+
.flowcore-root ::-moz-placeholder {
|
|
252
|
+
color: currentcolor;
|
|
253
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
254
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
.flowcore-root ::placeholder {
|
|
247
258
|
color: currentcolor;
|
|
248
259
|
@supports (color: color-mix(in lab, red, red)) {
|
|
249
260
|
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
250
261
|
}
|
|
251
262
|
}
|
|
252
263
|
}
|
|
253
|
-
textarea {
|
|
264
|
+
.flowcore-root textarea {
|
|
254
265
|
resize: vertical;
|
|
255
266
|
}
|
|
256
|
-
::-webkit-search-decoration {
|
|
267
|
+
.flowcore-root ::-webkit-search-decoration {
|
|
257
268
|
-webkit-appearance: none;
|
|
258
269
|
}
|
|
259
|
-
::-webkit-date-and-time-value {
|
|
270
|
+
.flowcore-root ::-webkit-date-and-time-value {
|
|
260
271
|
min-height: 1lh;
|
|
261
272
|
text-align: inherit;
|
|
262
273
|
}
|
|
263
|
-
::-webkit-datetime-edit {
|
|
274
|
+
.flowcore-root ::-webkit-datetime-edit {
|
|
264
275
|
display: inline-flex;
|
|
265
276
|
}
|
|
266
|
-
::-webkit-datetime-edit-fields-wrapper {
|
|
277
|
+
.flowcore-root ::-webkit-datetime-edit-fields-wrapper {
|
|
267
278
|
padding: 0;
|
|
268
279
|
}
|
|
269
|
-
::-webkit-datetime-edit,
|
|
270
|
-
::-webkit-datetime-edit-year-field,
|
|
271
|
-
::-webkit-datetime-edit-month-field,
|
|
272
|
-
::-webkit-datetime-edit-day-field,
|
|
273
|
-
::-webkit-datetime-edit-hour-field,
|
|
274
|
-
::-webkit-datetime-edit-minute-field,
|
|
275
|
-
::-webkit-datetime-edit-second-field,
|
|
276
|
-
::-webkit-datetime-edit-millisecond-field,
|
|
277
|
-
::-webkit-datetime-edit-meridiem-field {
|
|
280
|
+
.flowcore-root ::-webkit-datetime-edit,
|
|
281
|
+
.flowcore-root ::-webkit-datetime-edit-year-field,
|
|
282
|
+
.flowcore-root ::-webkit-datetime-edit-month-field,
|
|
283
|
+
.flowcore-root ::-webkit-datetime-edit-day-field,
|
|
284
|
+
.flowcore-root ::-webkit-datetime-edit-hour-field,
|
|
285
|
+
.flowcore-root ::-webkit-datetime-edit-minute-field,
|
|
286
|
+
.flowcore-root ::-webkit-datetime-edit-second-field,
|
|
287
|
+
.flowcore-root ::-webkit-datetime-edit-millisecond-field,
|
|
288
|
+
.flowcore-root ::-webkit-datetime-edit-meridiem-field {
|
|
278
289
|
padding-block: 0;
|
|
279
290
|
}
|
|
280
|
-
::-webkit-calendar-picker-indicator {
|
|
291
|
+
.flowcore-root ::-webkit-calendar-picker-indicator {
|
|
281
292
|
line-height: 1;
|
|
282
293
|
}
|
|
283
|
-
:-moz-ui-invalid {
|
|
294
|
+
.flowcore-root :-moz-ui-invalid {
|
|
284
295
|
box-shadow: none;
|
|
285
296
|
}
|
|
286
|
-
button,
|
|
287
|
-
input:where([type=button], [type=reset], [type=submit]),
|
|
288
|
-
::file-selector-button {
|
|
297
|
+
.flowcore-root button,
|
|
298
|
+
.flowcore-root input:where([type=button], [type=reset], [type=submit]),
|
|
299
|
+
.flowcore-root ::file-selector-button {
|
|
300
|
+
-webkit-appearance: button;
|
|
301
|
+
-moz-appearance: button;
|
|
289
302
|
appearance: button;
|
|
290
303
|
}
|
|
291
|
-
::-webkit-inner-spin-button,
|
|
292
|
-
::-webkit-outer-spin-button {
|
|
304
|
+
.flowcore-root ::-webkit-inner-spin-button,
|
|
305
|
+
.flowcore-root ::-webkit-outer-spin-button {
|
|
293
306
|
height: auto;
|
|
294
307
|
}
|
|
295
|
-
[hidden]:where(:not([hidden=until-found])) {
|
|
308
|
+
.flowcore-root [hidden]:where(:not([hidden=until-found])) {
|
|
296
309
|
display: none !important;
|
|
297
310
|
}
|
|
298
311
|
}
|
|
299
312
|
@layer utilities {
|
|
300
|
-
.pointer-events-none {
|
|
313
|
+
.flowcore-root .pointer-events-none {
|
|
301
314
|
pointer-events: none;
|
|
302
315
|
}
|
|
303
|
-
.sr-only {
|
|
316
|
+
.flowcore-root .sr-only {
|
|
304
317
|
position: absolute;
|
|
305
318
|
width: 1px;
|
|
306
319
|
height: 1px;
|
|
@@ -311,443 +324,444 @@
|
|
|
311
324
|
white-space: nowrap;
|
|
312
325
|
border-width: 0;
|
|
313
326
|
}
|
|
314
|
-
.absolute {
|
|
327
|
+
.flowcore-root .absolute {
|
|
315
328
|
position: absolute;
|
|
316
329
|
}
|
|
317
|
-
.fixed {
|
|
330
|
+
.flowcore-root .fixed {
|
|
318
331
|
position: fixed;
|
|
319
332
|
}
|
|
320
|
-
.relative {
|
|
333
|
+
.flowcore-root .relative {
|
|
321
334
|
position: relative;
|
|
322
335
|
}
|
|
323
|
-
.inset-0 {
|
|
336
|
+
.flowcore-root .inset-0 {
|
|
324
337
|
inset: 0;
|
|
325
338
|
}
|
|
326
|
-
.inset-y-0 {
|
|
339
|
+
.flowcore-root .inset-y-0 {
|
|
327
340
|
inset-block: 0;
|
|
328
341
|
}
|
|
329
|
-
.top-3\.5 {
|
|
342
|
+
.flowcore-root .top-3\.5 {
|
|
330
343
|
top: calc(var(--spacing) * 3.5);
|
|
331
344
|
}
|
|
332
|
-
.top-\[2px\] {
|
|
345
|
+
.flowcore-root .top-\[2px\] {
|
|
333
346
|
top: 2px;
|
|
334
347
|
}
|
|
335
|
-
.top-\[30px\] {
|
|
348
|
+
.flowcore-root .top-\[30px\] {
|
|
336
349
|
top: 30px;
|
|
337
350
|
}
|
|
338
|
-
.left-0 {
|
|
351
|
+
.flowcore-root .left-0 {
|
|
339
352
|
left: 0;
|
|
340
353
|
}
|
|
341
|
-
.left-4 {
|
|
354
|
+
.flowcore-root .left-4 {
|
|
342
355
|
left: calc(var(--spacing) * 4);
|
|
343
356
|
}
|
|
344
|
-
.left-\[2px\] {
|
|
357
|
+
.flowcore-root .left-\[2px\] {
|
|
345
358
|
left: 2px;
|
|
346
359
|
}
|
|
347
|
-
.left-\[14px\] {
|
|
360
|
+
.flowcore-root .left-\[14px\] {
|
|
348
361
|
left: 14px;
|
|
349
362
|
}
|
|
350
|
-
.left-\[20px\] {
|
|
363
|
+
.flowcore-root .left-\[20px\] {
|
|
351
364
|
left: 20px;
|
|
352
365
|
}
|
|
353
|
-
.z-10 {
|
|
366
|
+
.flowcore-root .z-10 {
|
|
354
367
|
z-index: 10;
|
|
355
368
|
}
|
|
356
|
-
.z-50 {
|
|
369
|
+
.flowcore-root .z-50 {
|
|
357
370
|
z-index: 50;
|
|
358
371
|
}
|
|
359
|
-
.z-\[100\] {
|
|
372
|
+
.flowcore-root .z-\[100\] {
|
|
360
373
|
z-index: 100;
|
|
361
374
|
}
|
|
362
|
-
.col-span-1 {
|
|
375
|
+
.flowcore-root .col-span-1 {
|
|
363
376
|
grid-column: span 1 / span 1;
|
|
364
377
|
}
|
|
365
|
-
.col-span-2 {
|
|
378
|
+
.flowcore-root .col-span-2 {
|
|
366
379
|
grid-column: span 2 / span 2;
|
|
367
380
|
}
|
|
368
|
-
.m-0 {
|
|
381
|
+
.flowcore-root .m-0 {
|
|
369
382
|
margin: 0;
|
|
370
383
|
}
|
|
371
|
-
.mx-2 {
|
|
384
|
+
.flowcore-root .mx-2 {
|
|
372
385
|
margin-inline: calc(var(--spacing) * 2);
|
|
373
386
|
}
|
|
374
|
-
.mt-0\.5 {
|
|
387
|
+
.flowcore-root .mt-0\.5 {
|
|
375
388
|
margin-top: calc(var(--spacing) * 0.5);
|
|
376
389
|
}
|
|
377
|
-
.mt-1 {
|
|
390
|
+
.flowcore-root .mt-1 {
|
|
378
391
|
margin-top: var(--spacing);
|
|
379
392
|
}
|
|
380
|
-
.mt-2 {
|
|
393
|
+
.flowcore-root .mt-2 {
|
|
381
394
|
margin-top: calc(var(--spacing) * 2);
|
|
382
395
|
}
|
|
383
|
-
.mt-4 {
|
|
396
|
+
.flowcore-root .mt-4 {
|
|
384
397
|
margin-top: calc(var(--spacing) * 4);
|
|
385
398
|
}
|
|
386
|
-
.mt-6 {
|
|
399
|
+
.flowcore-root .mt-6 {
|
|
387
400
|
margin-top: calc(var(--spacing) * 6);
|
|
388
401
|
}
|
|
389
|
-
.mt-8 {
|
|
402
|
+
.flowcore-root .mt-8 {
|
|
390
403
|
margin-top: calc(var(--spacing) * 8);
|
|
391
404
|
}
|
|
392
|
-
.mt-\[39px\] {
|
|
405
|
+
.flowcore-root .mt-\[39px\] {
|
|
393
406
|
margin-top: 39px;
|
|
394
407
|
}
|
|
395
|
-
.mr-2 {
|
|
408
|
+
.flowcore-root .mr-2 {
|
|
396
409
|
margin-right: calc(var(--spacing) * 2);
|
|
397
410
|
}
|
|
398
|
-
.mb-1\.5 {
|
|
411
|
+
.flowcore-root .mb-1\.5 {
|
|
399
412
|
margin-bottom: calc(var(--spacing) * 1.5);
|
|
400
413
|
}
|
|
401
|
-
.mb-2 {
|
|
414
|
+
.flowcore-root .mb-2 {
|
|
402
415
|
margin-bottom: calc(var(--spacing) * 2);
|
|
403
416
|
}
|
|
404
|
-
.mb-6 {
|
|
417
|
+
.flowcore-root .mb-6 {
|
|
405
418
|
margin-bottom: calc(var(--spacing) * 6);
|
|
406
419
|
}
|
|
407
|
-
.mb-8 {
|
|
420
|
+
.flowcore-root .mb-8 {
|
|
408
421
|
margin-bottom: calc(var(--spacing) * 8);
|
|
409
422
|
}
|
|
410
|
-
.mb-\[19px\] {
|
|
423
|
+
.flowcore-root .mb-\[19px\] {
|
|
411
424
|
margin-bottom: 19px;
|
|
412
425
|
}
|
|
413
|
-
.ml-1 {
|
|
426
|
+
.flowcore-root .ml-1 {
|
|
414
427
|
margin-left: var(--spacing);
|
|
415
428
|
}
|
|
416
|
-
.ml-2 {
|
|
429
|
+
.flowcore-root .ml-2 {
|
|
417
430
|
margin-left: calc(var(--spacing) * 2);
|
|
418
431
|
}
|
|
419
|
-
.ml-\[8px\] {
|
|
432
|
+
.flowcore-root .ml-\[8px\] {
|
|
420
433
|
margin-left: 8px;
|
|
421
434
|
}
|
|
422
|
-
.ml-\[15px\] {
|
|
435
|
+
.flowcore-root .ml-\[15px\] {
|
|
423
436
|
margin-left: 15px;
|
|
424
437
|
}
|
|
425
|
-
.block {
|
|
438
|
+
.flowcore-root .block {
|
|
426
439
|
display: block;
|
|
427
440
|
}
|
|
428
|
-
.flex {
|
|
441
|
+
.flowcore-root .flex {
|
|
429
442
|
display: flex;
|
|
430
443
|
}
|
|
431
|
-
.grid {
|
|
444
|
+
.flowcore-root .grid {
|
|
432
445
|
display: grid;
|
|
433
446
|
}
|
|
434
|
-
.inline-block {
|
|
447
|
+
.flowcore-root .inline-block {
|
|
435
448
|
display: inline-block;
|
|
436
449
|
}
|
|
437
|
-
.inline-flex {
|
|
450
|
+
.flowcore-root .inline-flex {
|
|
438
451
|
display: inline-flex;
|
|
439
452
|
}
|
|
440
|
-
.table {
|
|
453
|
+
.flowcore-root .table {
|
|
441
454
|
display: table;
|
|
442
455
|
}
|
|
443
|
-
.h-3\.5 {
|
|
456
|
+
.flowcore-root .h-3\.5 {
|
|
444
457
|
height: calc(var(--spacing) * 3.5);
|
|
445
458
|
}
|
|
446
|
-
.h-4 {
|
|
459
|
+
.flowcore-root .h-4 {
|
|
447
460
|
height: calc(var(--spacing) * 4);
|
|
448
461
|
}
|
|
449
|
-
.h-4\.5 {
|
|
462
|
+
.flowcore-root .h-4\.5 {
|
|
450
463
|
height: calc(var(--spacing) * 4.5);
|
|
451
464
|
}
|
|
452
|
-
.h-5 {
|
|
465
|
+
.flowcore-root .h-5 {
|
|
453
466
|
height: calc(var(--spacing) * 5);
|
|
454
467
|
}
|
|
455
|
-
.h-6 {
|
|
468
|
+
.flowcore-root .h-6 {
|
|
456
469
|
height: calc(var(--spacing) * 6);
|
|
457
470
|
}
|
|
458
|
-
.h-7 {
|
|
471
|
+
.flowcore-root .h-7 {
|
|
459
472
|
height: calc(var(--spacing) * 7);
|
|
460
473
|
}
|
|
461
|
-
.h-8 {
|
|
474
|
+
.flowcore-root .h-8 {
|
|
462
475
|
height: calc(var(--spacing) * 8);
|
|
463
476
|
}
|
|
464
|
-
.h-11 {
|
|
477
|
+
.flowcore-root .h-11 {
|
|
465
478
|
height: calc(var(--spacing) * 11);
|
|
466
479
|
}
|
|
467
|
-
.h-12 {
|
|
480
|
+
.flowcore-root .h-12 {
|
|
468
481
|
height: calc(var(--spacing) * 12);
|
|
469
482
|
}
|
|
470
|
-
.h-\[1px\] {
|
|
483
|
+
.flowcore-root .h-\[1px\] {
|
|
471
484
|
height: 1px;
|
|
472
485
|
}
|
|
473
|
-
.h-\[20px\] {
|
|
486
|
+
.flowcore-root .h-\[20px\] {
|
|
474
487
|
height: 20px;
|
|
475
488
|
}
|
|
476
|
-
.h-\[46px\] {
|
|
489
|
+
.flowcore-root .h-\[46px\] {
|
|
477
490
|
height: 46px;
|
|
478
491
|
}
|
|
479
|
-
.h-\[50px\] {
|
|
492
|
+
.flowcore-root .h-\[50px\] {
|
|
480
493
|
height: 50px;
|
|
481
494
|
}
|
|
482
|
-
.h-\[56px\] {
|
|
495
|
+
.flowcore-root .h-\[56px\] {
|
|
483
496
|
height: 56px;
|
|
484
497
|
}
|
|
485
|
-
.h-\[66px\] {
|
|
498
|
+
.flowcore-root .h-\[66px\] {
|
|
486
499
|
height: 66px;
|
|
487
500
|
}
|
|
488
|
-
.h-\[84px\] {
|
|
501
|
+
.flowcore-root .h-\[84px\] {
|
|
489
502
|
height: 84px;
|
|
490
503
|
}
|
|
491
|
-
.h-full {
|
|
504
|
+
.flowcore-root .h-full {
|
|
492
505
|
height: 100%;
|
|
493
506
|
}
|
|
494
|
-
.h-screen {
|
|
507
|
+
.flowcore-root .h-screen {
|
|
495
508
|
height: 100vh;
|
|
496
509
|
}
|
|
497
|
-
.max-h-\[70vh\] {
|
|
510
|
+
.flowcore-root .max-h-\[70vh\] {
|
|
498
511
|
max-height: 70vh;
|
|
499
512
|
}
|
|
500
|
-
.max-h-\[92vh\] {
|
|
513
|
+
.flowcore-root .max-h-\[92vh\] {
|
|
501
514
|
max-height: 92vh;
|
|
502
515
|
}
|
|
503
|
-
.max-h-\[calc\(92vh-170px\)\] {
|
|
516
|
+
.flowcore-root .max-h-\[calc\(92vh-170px\)\] {
|
|
504
517
|
max-height: calc(92vh - 170px);
|
|
505
518
|
}
|
|
506
|
-
.min-h-0 {
|
|
519
|
+
.flowcore-root .min-h-0 {
|
|
507
520
|
min-height: 0;
|
|
508
521
|
}
|
|
509
|
-
.min-h-full {
|
|
522
|
+
.flowcore-root .min-h-full {
|
|
510
523
|
min-height: 100%;
|
|
511
524
|
}
|
|
512
|
-
.min-h-screen {
|
|
525
|
+
.flowcore-root .min-h-screen {
|
|
513
526
|
min-height: 100vh;
|
|
514
527
|
}
|
|
515
|
-
.w-0 {
|
|
528
|
+
.flowcore-root .w-0 {
|
|
516
529
|
width: 0;
|
|
517
530
|
}
|
|
518
|
-
.w-3\.5 {
|
|
531
|
+
.flowcore-root .w-3\.5 {
|
|
519
532
|
width: calc(var(--spacing) * 3.5);
|
|
520
533
|
}
|
|
521
|
-
.w-4 {
|
|
534
|
+
.flowcore-root .w-4 {
|
|
522
535
|
width: calc(var(--spacing) * 4);
|
|
523
536
|
}
|
|
524
|
-
.w-4\.5 {
|
|
537
|
+
.flowcore-root .w-4\.5 {
|
|
525
538
|
width: calc(var(--spacing) * 4.5);
|
|
526
539
|
}
|
|
527
|
-
.w-5 {
|
|
540
|
+
.flowcore-root .w-5 {
|
|
528
541
|
width: calc(var(--spacing) * 5);
|
|
529
542
|
}
|
|
530
|
-
.w-6 {
|
|
543
|
+
.flowcore-root .w-6 {
|
|
531
544
|
width: calc(var(--spacing) * 6);
|
|
532
545
|
}
|
|
533
|
-
.w-7 {
|
|
546
|
+
.flowcore-root .w-7 {
|
|
534
547
|
width: calc(var(--spacing) * 7);
|
|
535
548
|
}
|
|
536
|
-
.w-8 {
|
|
549
|
+
.flowcore-root .w-8 {
|
|
537
550
|
width: calc(var(--spacing) * 8);
|
|
538
551
|
}
|
|
539
|
-
.w-11 {
|
|
552
|
+
.flowcore-root .w-11 {
|
|
540
553
|
width: calc(var(--spacing) * 11);
|
|
541
554
|
}
|
|
542
|
-
.w-12 {
|
|
555
|
+
.flowcore-root .w-12 {
|
|
543
556
|
width: calc(var(--spacing) * 12);
|
|
544
557
|
}
|
|
545
|
-
.w-16 {
|
|
558
|
+
.flowcore-root .w-16 {
|
|
546
559
|
width: calc(var(--spacing) * 16);
|
|
547
560
|
}
|
|
548
|
-
.w-20 {
|
|
561
|
+
.flowcore-root .w-20 {
|
|
549
562
|
width: calc(var(--spacing) * 20);
|
|
550
563
|
}
|
|
551
|
-
.w-28 {
|
|
564
|
+
.flowcore-root .w-28 {
|
|
552
565
|
width: calc(var(--spacing) * 28);
|
|
553
566
|
}
|
|
554
|
-
.w-96 {
|
|
567
|
+
.flowcore-root .w-96 {
|
|
555
568
|
width: calc(var(--spacing) * 96);
|
|
556
569
|
}
|
|
557
|
-
.w-\[20px\] {
|
|
570
|
+
.flowcore-root .w-\[20px\] {
|
|
558
571
|
width: 20px;
|
|
559
572
|
}
|
|
560
|
-
.w-\[46px\] {
|
|
573
|
+
.flowcore-root .w-\[46px\] {
|
|
561
574
|
width: 46px;
|
|
562
575
|
}
|
|
563
|
-
.w-\[245px\] {
|
|
576
|
+
.flowcore-root .w-\[245px\] {
|
|
564
577
|
width: 245px;
|
|
565
578
|
}
|
|
566
|
-
.w-\[300px\] {
|
|
579
|
+
.flowcore-root .w-\[300px\] {
|
|
567
580
|
width: 300px;
|
|
568
581
|
}
|
|
569
|
-
.w-\[850px\] {
|
|
582
|
+
.flowcore-root .w-\[850px\] {
|
|
570
583
|
width: 850px;
|
|
571
584
|
}
|
|
572
|
-
.w-full {
|
|
585
|
+
.flowcore-root .w-full {
|
|
573
586
|
width: 100%;
|
|
574
587
|
}
|
|
575
|
-
.max-w-3xl {
|
|
588
|
+
.flowcore-root .max-w-3xl {
|
|
576
589
|
max-width: var(--container-3xl);
|
|
577
590
|
}
|
|
578
|
-
.max-w-4xl {
|
|
591
|
+
.flowcore-root .max-w-4xl {
|
|
579
592
|
max-width: var(--container-4xl);
|
|
580
593
|
}
|
|
581
|
-
.max-w-md {
|
|
594
|
+
.flowcore-root .max-w-md {
|
|
582
595
|
max-width: var(--container-md);
|
|
583
596
|
}
|
|
584
|
-
.max-w-sm {
|
|
597
|
+
.flowcore-root .max-w-sm {
|
|
585
598
|
max-width: var(--container-sm);
|
|
586
599
|
}
|
|
587
|
-
.max-w-xs {
|
|
600
|
+
.flowcore-root .max-w-xs {
|
|
588
601
|
max-width: var(--container-xs);
|
|
589
602
|
}
|
|
590
|
-
.min-w-0 {
|
|
603
|
+
.flowcore-root .min-w-0 {
|
|
591
604
|
min-width: 0;
|
|
592
605
|
}
|
|
593
|
-
.min-w-\[28px\] {
|
|
606
|
+
.flowcore-root .min-w-\[28px\] {
|
|
594
607
|
min-width: 28px;
|
|
595
608
|
}
|
|
596
|
-
.min-w-\[245px\] {
|
|
609
|
+
.flowcore-root .min-w-\[245px\] {
|
|
597
610
|
min-width: 245px;
|
|
598
611
|
}
|
|
599
|
-
.flex-1 {
|
|
612
|
+
.flowcore-root .flex-1 {
|
|
600
613
|
flex: 1;
|
|
601
614
|
}
|
|
602
|
-
.flex-shrink-0 {
|
|
615
|
+
.flowcore-root .flex-shrink-0 {
|
|
603
616
|
flex-shrink: 0;
|
|
604
617
|
}
|
|
605
|
-
.shrink-0 {
|
|
618
|
+
.flowcore-root .shrink-0 {
|
|
606
619
|
flex-shrink: 0;
|
|
607
620
|
}
|
|
608
|
-
.table-auto {
|
|
621
|
+
.flowcore-root .table-auto {
|
|
609
622
|
table-layout: auto;
|
|
610
623
|
}
|
|
611
|
-
.border-collapse {
|
|
624
|
+
.flowcore-root .border-collapse {
|
|
612
625
|
border-collapse: collapse;
|
|
613
626
|
}
|
|
614
|
-
.-translate-x-full {
|
|
627
|
+
.flowcore-root .-translate-x-full {
|
|
615
628
|
--tw-translate-x: -100%;
|
|
616
629
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
617
630
|
}
|
|
618
|
-
.translate-x-0 {
|
|
631
|
+
.flowcore-root .translate-x-0 {
|
|
619
632
|
--tw-translate-x: 0;
|
|
620
633
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
621
634
|
}
|
|
622
|
-
.translate-x-5 {
|
|
635
|
+
.flowcore-root .translate-x-5 {
|
|
623
636
|
--tw-translate-x: calc(var(--spacing) * 5);
|
|
624
637
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
625
638
|
}
|
|
626
|
-
.scale-90 {
|
|
639
|
+
.flowcore-root .scale-90 {
|
|
627
640
|
--tw-scale-x: 90%;
|
|
628
641
|
--tw-scale-y: 90%;
|
|
629
642
|
--tw-scale-z: 90%;
|
|
630
643
|
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
631
644
|
}
|
|
632
|
-
.transform {
|
|
645
|
+
.flowcore-root .transform {
|
|
633
646
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
634
647
|
}
|
|
635
|
-
.cursor-not-allowed {
|
|
648
|
+
.flowcore-root .cursor-not-allowed {
|
|
636
649
|
cursor: not-allowed;
|
|
637
650
|
}
|
|
638
|
-
.cursor-pointer {
|
|
651
|
+
.flowcore-root .cursor-pointer {
|
|
639
652
|
cursor: pointer;
|
|
640
653
|
}
|
|
641
|
-
.resize-none {
|
|
654
|
+
.flowcore-root .resize-none {
|
|
642
655
|
resize: none;
|
|
643
656
|
}
|
|
644
|
-
.grid-cols-1 {
|
|
657
|
+
.flowcore-root .grid-cols-1 {
|
|
645
658
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
646
659
|
}
|
|
647
|
-
.grid-cols-2 {
|
|
660
|
+
.flowcore-root .grid-cols-2 {
|
|
648
661
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
649
662
|
}
|
|
650
|
-
.flex-col {
|
|
663
|
+
.flowcore-root .flex-col {
|
|
651
664
|
flex-direction: column;
|
|
652
665
|
}
|
|
653
|
-
.flex-wrap {
|
|
666
|
+
.flowcore-root .flex-wrap {
|
|
654
667
|
flex-wrap: wrap;
|
|
655
668
|
}
|
|
656
|
-
.items-center {
|
|
669
|
+
.flowcore-root .items-center {
|
|
657
670
|
align-items: center;
|
|
658
671
|
}
|
|
659
|
-
.justify-between {
|
|
672
|
+
.flowcore-root .justify-between {
|
|
660
673
|
justify-content: space-between;
|
|
661
674
|
}
|
|
662
|
-
.justify-center {
|
|
675
|
+
.flowcore-root .justify-center {
|
|
663
676
|
justify-content: center;
|
|
664
677
|
}
|
|
665
|
-
.justify-end {
|
|
678
|
+
.flowcore-root .justify-end {
|
|
666
679
|
justify-content: flex-end;
|
|
667
680
|
}
|
|
668
|
-
.gap-1 {
|
|
681
|
+
.flowcore-root .gap-1 {
|
|
669
682
|
gap: var(--spacing);
|
|
670
683
|
}
|
|
671
|
-
.gap-1\.5 {
|
|
684
|
+
.flowcore-root .gap-1\.5 {
|
|
672
685
|
gap: calc(var(--spacing) * 1.5);
|
|
673
686
|
}
|
|
674
|
-
.gap-2 {
|
|
687
|
+
.flowcore-root .gap-2 {
|
|
675
688
|
gap: calc(var(--spacing) * 2);
|
|
676
689
|
}
|
|
677
|
-
.gap-2\.5 {
|
|
690
|
+
.flowcore-root .gap-2\.5 {
|
|
678
691
|
gap: calc(var(--spacing) * 2.5);
|
|
679
692
|
}
|
|
680
|
-
.gap-3 {
|
|
693
|
+
.flowcore-root .gap-3 {
|
|
681
694
|
gap: calc(var(--spacing) * 3);
|
|
682
695
|
}
|
|
683
|
-
.gap-4 {
|
|
696
|
+
.flowcore-root .gap-4 {
|
|
684
697
|
gap: calc(var(--spacing) * 4);
|
|
685
698
|
}
|
|
686
|
-
.gap-5 {
|
|
699
|
+
.flowcore-root .gap-5 {
|
|
687
700
|
gap: calc(var(--spacing) * 5);
|
|
688
701
|
}
|
|
689
|
-
.gap-6 {
|
|
702
|
+
.flowcore-root .gap-6 {
|
|
690
703
|
gap: calc(var(--spacing) * 6);
|
|
691
704
|
}
|
|
692
|
-
.gap-\[3px\] {
|
|
705
|
+
.flowcore-root .gap-\[3px\] {
|
|
693
706
|
gap: 3px;
|
|
694
707
|
}
|
|
695
|
-
.gap-\[17px\] {
|
|
708
|
+
.flowcore-root .gap-\[17px\] {
|
|
696
709
|
gap: 17px;
|
|
697
710
|
}
|
|
698
|
-
.gap-\[18px\] {
|
|
711
|
+
.flowcore-root .gap-\[18px\] {
|
|
699
712
|
gap: 18px;
|
|
700
713
|
}
|
|
701
|
-
.space-y-1 {
|
|
702
|
-
:where(& > :not(:last-child)) {
|
|
714
|
+
.flowcore-root .space-y-1 {
|
|
715
|
+
.flowcore-root :where(& > :not(:last-child)) {
|
|
703
716
|
--tw-space-y-reverse: 0;
|
|
704
717
|
margin-block-start: calc(var(--spacing) * var(--tw-space-y-reverse));
|
|
705
718
|
margin-block-end: calc(var(--spacing) * calc(1 - var(--tw-space-y-reverse)));
|
|
706
719
|
}
|
|
707
720
|
}
|
|
708
|
-
.space-y-3 {
|
|
709
|
-
:where(& > :not(:last-child)) {
|
|
721
|
+
.flowcore-root .space-y-3 {
|
|
722
|
+
.flowcore-root :where(& > :not(:last-child)) {
|
|
710
723
|
--tw-space-y-reverse: 0;
|
|
711
724
|
margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
|
|
712
725
|
margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
|
|
713
726
|
}
|
|
714
727
|
}
|
|
715
|
-
.space-y-4 {
|
|
716
|
-
:where(& > :not(:last-child)) {
|
|
728
|
+
.flowcore-root .space-y-4 {
|
|
729
|
+
.flowcore-root :where(& > :not(:last-child)) {
|
|
717
730
|
--tw-space-y-reverse: 0;
|
|
718
731
|
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
719
732
|
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
720
733
|
}
|
|
721
734
|
}
|
|
722
|
-
.space-y-5 {
|
|
723
|
-
:where(& > :not(:last-child)) {
|
|
735
|
+
.flowcore-root .space-y-5 {
|
|
736
|
+
.flowcore-root :where(& > :not(:last-child)) {
|
|
724
737
|
--tw-space-y-reverse: 0;
|
|
725
738
|
margin-block-start: calc(calc(var(--spacing) * 5) * var(--tw-space-y-reverse));
|
|
726
739
|
margin-block-end: calc(calc(var(--spacing) * 5) * calc(1 - var(--tw-space-y-reverse)));
|
|
727
740
|
}
|
|
728
741
|
}
|
|
729
|
-
.space-y-8 {
|
|
730
|
-
:where(& > :not(:last-child)) {
|
|
742
|
+
.flowcore-root .space-y-8 {
|
|
743
|
+
.flowcore-root :where(& > :not(:last-child)) {
|
|
731
744
|
--tw-space-y-reverse: 0;
|
|
732
745
|
margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));
|
|
733
746
|
margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
|
|
734
747
|
}
|
|
735
748
|
}
|
|
736
|
-
.gap-x-6 {
|
|
749
|
+
.flowcore-root .gap-x-6 {
|
|
750
|
+
-moz-column-gap: calc(var(--spacing) * 6);
|
|
737
751
|
column-gap: calc(var(--spacing) * 6);
|
|
738
752
|
}
|
|
739
|
-
.space-x-1\.5 {
|
|
740
|
-
:where(& > :not(:last-child)) {
|
|
753
|
+
.flowcore-root .space-x-1\.5 {
|
|
754
|
+
.flowcore-root :where(& > :not(:last-child)) {
|
|
741
755
|
--tw-space-x-reverse: 0;
|
|
742
756
|
margin-inline-start: calc(calc(var(--spacing) * 1.5) * var(--tw-space-x-reverse));
|
|
743
757
|
margin-inline-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-x-reverse)));
|
|
744
758
|
}
|
|
745
759
|
}
|
|
746
|
-
.gap-y-5 {
|
|
760
|
+
.flowcore-root .gap-y-5 {
|
|
747
761
|
row-gap: calc(var(--spacing) * 5);
|
|
748
762
|
}
|
|
749
|
-
.divide-y {
|
|
750
|
-
:where(& > :not(:last-child)) {
|
|
763
|
+
.flowcore-root .divide-y {
|
|
764
|
+
.flowcore-root :where(& > :not(:last-child)) {
|
|
751
765
|
--tw-divide-y-reverse: 0;
|
|
752
766
|
border-bottom-style: var(--tw-border-style);
|
|
753
767
|
border-top-style: var(--tw-border-style);
|
|
@@ -755,647 +769,650 @@
|
|
|
755
769
|
border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
756
770
|
}
|
|
757
771
|
}
|
|
758
|
-
.divide-slate-100 {
|
|
759
|
-
:where(& > :not(:last-child)) {
|
|
772
|
+
.flowcore-root .divide-slate-100 {
|
|
773
|
+
.flowcore-root :where(& > :not(:last-child)) {
|
|
760
774
|
border-color: var(--color-slate-100);
|
|
761
775
|
}
|
|
762
776
|
}
|
|
763
|
-
.overflow-hidden {
|
|
777
|
+
.flowcore-root .overflow-hidden {
|
|
764
778
|
overflow: hidden;
|
|
765
779
|
}
|
|
766
|
-
.overflow-x-auto {
|
|
780
|
+
.flowcore-root .overflow-x-auto {
|
|
767
781
|
overflow-x: auto;
|
|
768
782
|
}
|
|
769
|
-
.overflow-x-hidden {
|
|
783
|
+
.flowcore-root .overflow-x-hidden {
|
|
770
784
|
overflow-x: hidden;
|
|
771
785
|
}
|
|
772
|
-
.overflow-y-auto {
|
|
786
|
+
.flowcore-root .overflow-y-auto {
|
|
773
787
|
overflow-y: auto;
|
|
774
788
|
}
|
|
775
|
-
.rounded {
|
|
789
|
+
.flowcore-root .rounded {
|
|
776
790
|
border-radius: 0.25rem;
|
|
777
791
|
}
|
|
778
|
-
.rounded-2xl {
|
|
792
|
+
.flowcore-root .rounded-2xl {
|
|
779
793
|
border-radius: var(--radius-2xl);
|
|
780
794
|
}
|
|
781
|
-
.rounded-3xl {
|
|
795
|
+
.flowcore-root .rounded-3xl {
|
|
782
796
|
border-radius: var(--radius-3xl);
|
|
783
797
|
}
|
|
784
|
-
.rounded-\[6px\] {
|
|
798
|
+
.flowcore-root .rounded-\[6px\] {
|
|
785
799
|
border-radius: 6px;
|
|
786
800
|
}
|
|
787
|
-
.rounded-\[9px\] {
|
|
801
|
+
.flowcore-root .rounded-\[9px\] {
|
|
788
802
|
border-radius: 9px;
|
|
789
803
|
}
|
|
790
|
-
.rounded-\[10px\] {
|
|
804
|
+
.flowcore-root .rounded-\[10px\] {
|
|
791
805
|
border-radius: 10px;
|
|
792
806
|
}
|
|
793
|
-
.rounded-full {
|
|
807
|
+
.flowcore-root .rounded-full {
|
|
794
808
|
border-radius: calc(infinity * 1px);
|
|
795
809
|
}
|
|
796
|
-
.rounded-lg {
|
|
810
|
+
.flowcore-root .rounded-lg {
|
|
797
811
|
border-radius: var(--radius-lg);
|
|
798
812
|
}
|
|
799
|
-
.rounded-md {
|
|
813
|
+
.flowcore-root .rounded-md {
|
|
800
814
|
border-radius: var(--radius-md);
|
|
801
815
|
}
|
|
802
|
-
.rounded-xl {
|
|
816
|
+
.flowcore-root .rounded-xl {
|
|
803
817
|
border-radius: var(--radius-xl);
|
|
804
818
|
}
|
|
805
|
-
.rounded-b-xl {
|
|
819
|
+
.flowcore-root .rounded-b-xl {
|
|
806
820
|
border-bottom-right-radius: var(--radius-xl);
|
|
807
821
|
border-bottom-left-radius: var(--radius-xl);
|
|
808
822
|
}
|
|
809
|
-
.border {
|
|
823
|
+
.flowcore-root .border {
|
|
810
824
|
border-style: var(--tw-border-style);
|
|
811
825
|
border-width: 1px;
|
|
812
826
|
}
|
|
813
|
-
.border-2 {
|
|
827
|
+
.flowcore-root .border-2 {
|
|
814
828
|
border-style: var(--tw-border-style);
|
|
815
829
|
border-width: 2px;
|
|
816
830
|
}
|
|
817
|
-
.border-t {
|
|
831
|
+
.flowcore-root .border-t {
|
|
818
832
|
border-top-style: var(--tw-border-style);
|
|
819
833
|
border-top-width: 1px;
|
|
820
834
|
}
|
|
821
|
-
.border-r {
|
|
835
|
+
.flowcore-root .border-r {
|
|
822
836
|
border-right-style: var(--tw-border-style);
|
|
823
837
|
border-right-width: 1px;
|
|
824
838
|
}
|
|
825
|
-
.border-b {
|
|
839
|
+
.flowcore-root .border-b {
|
|
826
840
|
border-bottom-style: var(--tw-border-style);
|
|
827
841
|
border-bottom-width: 1px;
|
|
828
842
|
}
|
|
829
|
-
.border-l {
|
|
843
|
+
.flowcore-root .border-l {
|
|
830
844
|
border-left-style: var(--tw-border-style);
|
|
831
845
|
border-left-width: 1px;
|
|
832
846
|
}
|
|
833
|
-
.border-solid {
|
|
847
|
+
.flowcore-root .border-solid {
|
|
834
848
|
--tw-border-style: solid;
|
|
835
849
|
border-style: solid;
|
|
836
850
|
}
|
|
837
|
-
.border-\[\#E1E5ED\] {
|
|
851
|
+
.flowcore-root .border-\[\#E1E5ED\] {
|
|
838
852
|
border-color: #E1E5ED;
|
|
839
853
|
}
|
|
840
|
-
.border-\[\#E5E9F1\] {
|
|
854
|
+
.flowcore-root .border-\[\#E5E9F1\] {
|
|
841
855
|
border-color: #E5E9F1;
|
|
842
856
|
}
|
|
843
|
-
.border-\[\#EDF0F5\] {
|
|
857
|
+
.flowcore-root .border-\[\#EDF0F5\] {
|
|
844
858
|
border-color: #EDF0F5;
|
|
845
859
|
}
|
|
846
|
-
.border-\[\#e2e8f0\] {
|
|
860
|
+
.flowcore-root .border-\[\#e2e8f0\] {
|
|
847
861
|
border-color: #e2e8f0;
|
|
848
862
|
}
|
|
849
|
-
.border-\[\#eef2f6\] {
|
|
863
|
+
.flowcore-root .border-\[\#eef2f6\] {
|
|
850
864
|
border-color: #eef2f6;
|
|
851
865
|
}
|
|
852
|
-
.border-black\/\[\.08\] {
|
|
866
|
+
.flowcore-root .border-black\/\[\.08\] {
|
|
853
867
|
border-color: color-mix(in srgb, #000 8%, transparent);
|
|
854
868
|
@supports (color: color-mix(in lab, red, red)) {
|
|
855
869
|
border-color: color-mix(in oklab, var(--color-black) 8%, transparent);
|
|
856
870
|
}
|
|
857
871
|
}
|
|
858
|
-
.border-gray-200 {
|
|
872
|
+
.flowcore-root .border-gray-200 {
|
|
859
873
|
border-color: var(--color-gray-200);
|
|
860
874
|
}
|
|
861
|
-
.border-gray-300 {
|
|
875
|
+
.flowcore-root .border-gray-300 {
|
|
862
876
|
border-color: var(--color-gray-300);
|
|
863
877
|
}
|
|
864
|
-
.border-green-200 {
|
|
878
|
+
.flowcore-root .border-green-200 {
|
|
865
879
|
border-color: var(--color-green-200);
|
|
866
880
|
}
|
|
867
|
-
.border-green-200\/60 {
|
|
881
|
+
.flowcore-root .border-green-200\/60 {
|
|
868
882
|
border-color: color-mix(in srgb, oklch(92.5% 0.084 155.995) 60%, transparent);
|
|
869
883
|
@supports (color: color-mix(in lab, red, red)) {
|
|
870
884
|
border-color: color-mix(in oklab, var(--color-green-200) 60%, transparent);
|
|
871
885
|
}
|
|
872
886
|
}
|
|
873
|
-
.border-red-200 {
|
|
887
|
+
.flowcore-root .border-red-200 {
|
|
874
888
|
border-color: var(--color-red-200);
|
|
875
889
|
}
|
|
876
|
-
.border-red-200\/60 {
|
|
890
|
+
.flowcore-root .border-red-200\/60 {
|
|
877
891
|
border-color: color-mix(in srgb, oklch(88.5% 0.062 18.334) 60%, transparent);
|
|
878
892
|
@supports (color: color-mix(in lab, red, red)) {
|
|
879
893
|
border-color: color-mix(in oklab, var(--color-red-200) 60%, transparent);
|
|
880
894
|
}
|
|
881
895
|
}
|
|
882
|
-
.border-slate-50 {
|
|
896
|
+
.flowcore-root .border-slate-50 {
|
|
883
897
|
border-color: var(--color-slate-50);
|
|
884
898
|
}
|
|
885
|
-
.border-slate-100 {
|
|
899
|
+
.flowcore-root .border-slate-100 {
|
|
886
900
|
border-color: var(--color-slate-100);
|
|
887
901
|
}
|
|
888
|
-
.border-slate-100\/80 {
|
|
902
|
+
.flowcore-root .border-slate-100\/80 {
|
|
889
903
|
border-color: color-mix(in srgb, oklch(96.8% 0.007 247.896) 80%, transparent);
|
|
890
904
|
@supports (color: color-mix(in lab, red, red)) {
|
|
891
905
|
border-color: color-mix(in oklab, var(--color-slate-100) 80%, transparent);
|
|
892
906
|
}
|
|
893
907
|
}
|
|
894
|
-
.border-slate-200 {
|
|
908
|
+
.flowcore-root .border-slate-200 {
|
|
895
909
|
border-color: var(--color-slate-200);
|
|
896
910
|
}
|
|
897
|
-
.border-slate-200\/70 {
|
|
911
|
+
.flowcore-root .border-slate-200\/70 {
|
|
898
912
|
border-color: color-mix(in srgb, oklch(92.9% 0.013 255.508) 70%, transparent);
|
|
899
913
|
@supports (color: color-mix(in lab, red, red)) {
|
|
900
914
|
border-color: color-mix(in oklab, var(--color-slate-200) 70%, transparent);
|
|
901
915
|
}
|
|
902
916
|
}
|
|
903
|
-
.border-slate-200\/80 {
|
|
917
|
+
.flowcore-root .border-slate-200\/80 {
|
|
904
918
|
border-color: color-mix(in srgb, oklch(92.9% 0.013 255.508) 80%, transparent);
|
|
905
919
|
@supports (color: color-mix(in lab, red, red)) {
|
|
906
920
|
border-color: color-mix(in oklab, var(--color-slate-200) 80%, transparent);
|
|
907
921
|
}
|
|
908
922
|
}
|
|
909
|
-
.border-slate-300 {
|
|
923
|
+
.flowcore-root .border-slate-300 {
|
|
910
924
|
border-color: var(--color-slate-300);
|
|
911
925
|
}
|
|
912
|
-
.border-transparent {
|
|
926
|
+
.flowcore-root .border-transparent {
|
|
913
927
|
border-color: transparent;
|
|
914
928
|
}
|
|
915
|
-
.bg-\[\#0066cc\] {
|
|
929
|
+
.flowcore-root .bg-\[\#0066cc\] {
|
|
916
930
|
background-color: #0066cc;
|
|
917
931
|
}
|
|
918
|
-
.bg-\[\#F5F7FB\] {
|
|
932
|
+
.flowcore-root .bg-\[\#F5F7FB\] {
|
|
919
933
|
background-color: #F5F7FB;
|
|
920
934
|
}
|
|
921
|
-
.bg-\[\#F7F9FC\] {
|
|
935
|
+
.flowcore-root .bg-\[\#F7F9FC\] {
|
|
922
936
|
background-color: #F7F9FC;
|
|
923
937
|
}
|
|
924
|
-
.bg-\[\#f1f5f9\] {
|
|
938
|
+
.flowcore-root .bg-\[\#f1f5f9\] {
|
|
925
939
|
background-color: #f1f5f9;
|
|
926
940
|
}
|
|
927
|
-
.bg-\[\#f5f7fb\] {
|
|
941
|
+
.flowcore-root .bg-\[\#f5f7fb\] {
|
|
928
942
|
background-color: #f5f7fb;
|
|
929
943
|
}
|
|
930
|
-
.bg-\[\#f8fafd\] {
|
|
944
|
+
.flowcore-root .bg-\[\#f8fafd\] {
|
|
931
945
|
background-color: #f8fafd;
|
|
932
946
|
}
|
|
933
|
-
.bg-black\/40 {
|
|
947
|
+
.flowcore-root .bg-black\/40 {
|
|
934
948
|
background-color: color-mix(in srgb, #000 40%, transparent);
|
|
935
949
|
@supports (color: color-mix(in lab, red, red)) {
|
|
936
950
|
background-color: color-mix(in oklab, var(--color-black) 40%, transparent);
|
|
937
951
|
}
|
|
938
952
|
}
|
|
939
|
-
.bg-blue-50 {
|
|
953
|
+
.flowcore-root .bg-blue-50 {
|
|
940
954
|
background-color: var(--color-blue-50);
|
|
941
955
|
}
|
|
942
|
-
.bg-blue-100 {
|
|
956
|
+
.flowcore-root .bg-blue-100 {
|
|
943
957
|
background-color: var(--color-blue-100);
|
|
944
958
|
}
|
|
945
|
-
.bg-blue-600 {
|
|
959
|
+
.flowcore-root .bg-blue-600 {
|
|
946
960
|
background-color: var(--color-blue-600);
|
|
947
961
|
}
|
|
948
|
-
.bg-gray-100 {
|
|
962
|
+
.flowcore-root .bg-gray-100 {
|
|
949
963
|
background-color: var(--color-gray-100);
|
|
950
964
|
}
|
|
951
|
-
.bg-green-50 {
|
|
965
|
+
.flowcore-root .bg-green-50 {
|
|
952
966
|
background-color: var(--color-green-50);
|
|
953
967
|
}
|
|
954
|
-
.bg-green-100 {
|
|
968
|
+
.flowcore-root .bg-green-100 {
|
|
955
969
|
background-color: var(--color-green-100);
|
|
956
970
|
}
|
|
957
|
-
.bg-indigo-50 {
|
|
971
|
+
.flowcore-root .bg-indigo-50 {
|
|
958
972
|
background-color: var(--color-indigo-50);
|
|
959
973
|
}
|
|
960
|
-
.bg-indigo-600 {
|
|
974
|
+
.flowcore-root .bg-indigo-600 {
|
|
961
975
|
background-color: var(--color-indigo-600);
|
|
962
976
|
}
|
|
963
|
-
.bg-red-50 {
|
|
977
|
+
.flowcore-root .bg-red-50 {
|
|
964
978
|
background-color: var(--color-red-50);
|
|
965
979
|
}
|
|
966
|
-
.bg-red-100 {
|
|
980
|
+
.flowcore-root .bg-red-100 {
|
|
967
981
|
background-color: var(--color-red-100);
|
|
968
982
|
}
|
|
969
|
-
.bg-slate-50 {
|
|
983
|
+
.flowcore-root .bg-slate-50 {
|
|
970
984
|
background-color: var(--color-slate-50);
|
|
971
985
|
}
|
|
972
|
-
.bg-slate-50\/30 {
|
|
986
|
+
.flowcore-root .bg-slate-50\/30 {
|
|
973
987
|
background-color: color-mix(in srgb, oklch(98.4% 0.003 247.858) 30%, transparent);
|
|
974
988
|
@supports (color: color-mix(in lab, red, red)) {
|
|
975
989
|
background-color: color-mix(in oklab, var(--color-slate-50) 30%, transparent);
|
|
976
990
|
}
|
|
977
991
|
}
|
|
978
|
-
.bg-slate-50\/50 {
|
|
992
|
+
.flowcore-root .bg-slate-50\/50 {
|
|
979
993
|
background-color: color-mix(in srgb, oklch(98.4% 0.003 247.858) 50%, transparent);
|
|
980
994
|
@supports (color: color-mix(in lab, red, red)) {
|
|
981
995
|
background-color: color-mix(in oklab, var(--color-slate-50) 50%, transparent);
|
|
982
996
|
}
|
|
983
997
|
}
|
|
984
|
-
.bg-slate-50\/60 {
|
|
998
|
+
.flowcore-root .bg-slate-50\/60 {
|
|
985
999
|
background-color: color-mix(in srgb, oklch(98.4% 0.003 247.858) 60%, transparent);
|
|
986
1000
|
@supports (color: color-mix(in lab, red, red)) {
|
|
987
1001
|
background-color: color-mix(in oklab, var(--color-slate-50) 60%, transparent);
|
|
988
1002
|
}
|
|
989
1003
|
}
|
|
990
|
-
.bg-slate-50\/70 {
|
|
1004
|
+
.flowcore-root .bg-slate-50\/70 {
|
|
991
1005
|
background-color: color-mix(in srgb, oklch(98.4% 0.003 247.858) 70%, transparent);
|
|
992
1006
|
@supports (color: color-mix(in lab, red, red)) {
|
|
993
1007
|
background-color: color-mix(in oklab, var(--color-slate-50) 70%, transparent);
|
|
994
1008
|
}
|
|
995
1009
|
}
|
|
996
|
-
.bg-slate-100 {
|
|
1010
|
+
.flowcore-root .bg-slate-100 {
|
|
997
1011
|
background-color: var(--color-slate-100);
|
|
998
1012
|
}
|
|
999
|
-
.bg-slate-200 {
|
|
1013
|
+
.flowcore-root .bg-slate-200 {
|
|
1000
1014
|
background-color: var(--color-slate-200);
|
|
1001
1015
|
}
|
|
1002
|
-
.bg-slate-900\/50 {
|
|
1016
|
+
.flowcore-root .bg-slate-900\/50 {
|
|
1003
1017
|
background-color: color-mix(in srgb, oklch(20.8% 0.042 265.755) 50%, transparent);
|
|
1004
1018
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1005
1019
|
background-color: color-mix(in oklab, var(--color-slate-900) 50%, transparent);
|
|
1006
1020
|
}
|
|
1007
1021
|
}
|
|
1008
|
-
.bg-white {
|
|
1022
|
+
.flowcore-root .bg-white {
|
|
1009
1023
|
background-color: var(--color-white);
|
|
1010
1024
|
}
|
|
1011
|
-
.bg-zinc-50 {
|
|
1025
|
+
.flowcore-root .bg-zinc-50 {
|
|
1012
1026
|
background-color: var(--color-zinc-50);
|
|
1013
1027
|
}
|
|
1014
|
-
.stroke-\[2\.5\] {
|
|
1028
|
+
.flowcore-root .stroke-\[2\.5\] {
|
|
1015
1029
|
stroke-width: 2.5;
|
|
1016
1030
|
}
|
|
1017
|
-
.p-2 {
|
|
1031
|
+
.flowcore-root .p-2 {
|
|
1018
1032
|
padding: calc(var(--spacing) * 2);
|
|
1019
1033
|
}
|
|
1020
|
-
.p-2\.5 {
|
|
1034
|
+
.flowcore-root .p-2\.5 {
|
|
1021
1035
|
padding: calc(var(--spacing) * 2.5);
|
|
1022
1036
|
}
|
|
1023
|
-
.p-3 {
|
|
1037
|
+
.flowcore-root .p-3 {
|
|
1024
1038
|
padding: calc(var(--spacing) * 3);
|
|
1025
1039
|
}
|
|
1026
|
-
.p-4 {
|
|
1040
|
+
.flowcore-root .p-4 {
|
|
1027
1041
|
padding: calc(var(--spacing) * 4);
|
|
1028
1042
|
}
|
|
1029
|
-
.p-5 {
|
|
1043
|
+
.flowcore-root .p-5 {
|
|
1030
1044
|
padding: calc(var(--spacing) * 5);
|
|
1031
1045
|
}
|
|
1032
|
-
.p-6 {
|
|
1046
|
+
.flowcore-root .p-6 {
|
|
1033
1047
|
padding: calc(var(--spacing) * 6);
|
|
1034
1048
|
}
|
|
1035
|
-
.p-8 {
|
|
1049
|
+
.flowcore-root .p-8 {
|
|
1036
1050
|
padding: calc(var(--spacing) * 8);
|
|
1037
1051
|
}
|
|
1038
|
-
.px-1 {
|
|
1052
|
+
.flowcore-root .px-1 {
|
|
1039
1053
|
padding-inline: var(--spacing);
|
|
1040
1054
|
}
|
|
1041
|
-
.px-1\.5 {
|
|
1055
|
+
.flowcore-root .px-1\.5 {
|
|
1042
1056
|
padding-inline: calc(var(--spacing) * 1.5);
|
|
1043
1057
|
}
|
|
1044
|
-
.px-2 {
|
|
1058
|
+
.flowcore-root .px-2 {
|
|
1045
1059
|
padding-inline: calc(var(--spacing) * 2);
|
|
1046
1060
|
}
|
|
1047
|
-
.px-2\.5 {
|
|
1061
|
+
.flowcore-root .px-2\.5 {
|
|
1048
1062
|
padding-inline: calc(var(--spacing) * 2.5);
|
|
1049
1063
|
}
|
|
1050
|
-
.px-3 {
|
|
1064
|
+
.flowcore-root .px-3 {
|
|
1051
1065
|
padding-inline: calc(var(--spacing) * 3);
|
|
1052
1066
|
}
|
|
1053
|
-
.px-3\.5 {
|
|
1067
|
+
.flowcore-root .px-3\.5 {
|
|
1054
1068
|
padding-inline: calc(var(--spacing) * 3.5);
|
|
1055
1069
|
}
|
|
1056
|
-
.px-4 {
|
|
1070
|
+
.flowcore-root .px-4 {
|
|
1057
1071
|
padding-inline: calc(var(--spacing) * 4);
|
|
1058
1072
|
}
|
|
1059
|
-
.px-5 {
|
|
1073
|
+
.flowcore-root .px-5 {
|
|
1060
1074
|
padding-inline: calc(var(--spacing) * 5);
|
|
1061
1075
|
}
|
|
1062
|
-
.px-6 {
|
|
1076
|
+
.flowcore-root .px-6 {
|
|
1063
1077
|
padding-inline: calc(var(--spacing) * 6);
|
|
1064
1078
|
}
|
|
1065
|
-
.px-8 {
|
|
1079
|
+
.flowcore-root .px-8 {
|
|
1066
1080
|
padding-inline: calc(var(--spacing) * 8);
|
|
1067
1081
|
}
|
|
1068
|
-
.px-16 {
|
|
1082
|
+
.flowcore-root .px-16 {
|
|
1069
1083
|
padding-inline: calc(var(--spacing) * 16);
|
|
1070
1084
|
}
|
|
1071
|
-
.px-\[14px\] {
|
|
1085
|
+
.flowcore-root .px-\[14px\] {
|
|
1072
1086
|
padding-inline: 14px;
|
|
1073
1087
|
}
|
|
1074
|
-
.px-\[17px\] {
|
|
1088
|
+
.flowcore-root .px-\[17px\] {
|
|
1075
1089
|
padding-inline: 17px;
|
|
1076
1090
|
}
|
|
1077
|
-
.px-\[23px\] {
|
|
1091
|
+
.flowcore-root .px-\[23px\] {
|
|
1078
1092
|
padding-inline: 23px;
|
|
1079
1093
|
}
|
|
1080
|
-
.px-\[27px\] {
|
|
1094
|
+
.flowcore-root .px-\[27px\] {
|
|
1081
1095
|
padding-inline: 27px;
|
|
1082
1096
|
}
|
|
1083
|
-
.py-0\.5 {
|
|
1097
|
+
.flowcore-root .py-0\.5 {
|
|
1084
1098
|
padding-block: calc(var(--spacing) * 0.5);
|
|
1085
1099
|
}
|
|
1086
|
-
.py-1 {
|
|
1100
|
+
.flowcore-root .py-1 {
|
|
1087
1101
|
padding-block: var(--spacing);
|
|
1088
1102
|
}
|
|
1089
|
-
.py-1\.5 {
|
|
1103
|
+
.flowcore-root .py-1\.5 {
|
|
1090
1104
|
padding-block: calc(var(--spacing) * 1.5);
|
|
1091
1105
|
}
|
|
1092
|
-
.py-2 {
|
|
1106
|
+
.flowcore-root .py-2 {
|
|
1093
1107
|
padding-block: calc(var(--spacing) * 2);
|
|
1094
1108
|
}
|
|
1095
|
-
.py-2\.5 {
|
|
1109
|
+
.flowcore-root .py-2\.5 {
|
|
1096
1110
|
padding-block: calc(var(--spacing) * 2.5);
|
|
1097
1111
|
}
|
|
1098
|
-
.py-3 {
|
|
1112
|
+
.flowcore-root .py-3 {
|
|
1099
1113
|
padding-block: calc(var(--spacing) * 3);
|
|
1100
1114
|
}
|
|
1101
|
-
.py-3\.5 {
|
|
1115
|
+
.flowcore-root .py-3\.5 {
|
|
1102
1116
|
padding-block: calc(var(--spacing) * 3.5);
|
|
1103
1117
|
}
|
|
1104
|
-
.py-4 {
|
|
1118
|
+
.flowcore-root .py-4 {
|
|
1105
1119
|
padding-block: calc(var(--spacing) * 4);
|
|
1106
1120
|
}
|
|
1107
|
-
.py-4\.5 {
|
|
1121
|
+
.flowcore-root .py-4\.5 {
|
|
1108
1122
|
padding-block: calc(var(--spacing) * 4.5);
|
|
1109
1123
|
}
|
|
1110
|
-
.py-5 {
|
|
1124
|
+
.flowcore-root .py-5 {
|
|
1111
1125
|
padding-block: calc(var(--spacing) * 5);
|
|
1112
1126
|
}
|
|
1113
|
-
.py-6 {
|
|
1127
|
+
.flowcore-root .py-6 {
|
|
1114
1128
|
padding-block: calc(var(--spacing) * 6);
|
|
1115
1129
|
}
|
|
1116
|
-
.py-32 {
|
|
1130
|
+
.flowcore-root .py-32 {
|
|
1117
1131
|
padding-block: calc(var(--spacing) * 32);
|
|
1118
1132
|
}
|
|
1119
|
-
.pt-3 {
|
|
1133
|
+
.flowcore-root .pt-3 {
|
|
1120
1134
|
padding-top: calc(var(--spacing) * 3);
|
|
1121
1135
|
}
|
|
1122
|
-
.pt-4 {
|
|
1136
|
+
.flowcore-root .pt-4 {
|
|
1123
1137
|
padding-top: calc(var(--spacing) * 4);
|
|
1124
1138
|
}
|
|
1125
|
-
.pt-\[18px\] {
|
|
1139
|
+
.flowcore-root .pt-\[18px\] {
|
|
1126
1140
|
padding-top: 18px;
|
|
1127
1141
|
}
|
|
1128
|
-
.pt-\[31px\] {
|
|
1142
|
+
.flowcore-root .pt-\[31px\] {
|
|
1129
1143
|
padding-top: 31px;
|
|
1130
1144
|
}
|
|
1131
|
-
.pr-2 {
|
|
1145
|
+
.flowcore-root .pr-2 {
|
|
1132
1146
|
padding-right: calc(var(--spacing) * 2);
|
|
1133
1147
|
}
|
|
1134
|
-
.pr-4 {
|
|
1148
|
+
.flowcore-root .pr-4 {
|
|
1135
1149
|
padding-right: calc(var(--spacing) * 4);
|
|
1136
1150
|
}
|
|
1137
|
-
.pb-3 {
|
|
1151
|
+
.flowcore-root .pb-3 {
|
|
1138
1152
|
padding-bottom: calc(var(--spacing) * 3);
|
|
1139
1153
|
}
|
|
1140
|
-
.pb-4 {
|
|
1154
|
+
.flowcore-root .pb-4 {
|
|
1141
1155
|
padding-bottom: calc(var(--spacing) * 4);
|
|
1142
1156
|
}
|
|
1143
|
-
.pb-\[30px\] {
|
|
1157
|
+
.flowcore-root .pb-\[30px\] {
|
|
1144
1158
|
padding-bottom: 30px;
|
|
1145
1159
|
}
|
|
1146
|
-
.pb-\[34px\] {
|
|
1160
|
+
.flowcore-root .pb-\[34px\] {
|
|
1147
1161
|
padding-bottom: 34px;
|
|
1148
1162
|
}
|
|
1149
|
-
.pl-3\.5 {
|
|
1163
|
+
.flowcore-root .pl-3\.5 {
|
|
1150
1164
|
padding-left: calc(var(--spacing) * 3.5);
|
|
1151
1165
|
}
|
|
1152
|
-
.pl-10 {
|
|
1166
|
+
.flowcore-root .pl-10 {
|
|
1153
1167
|
padding-left: calc(var(--spacing) * 10);
|
|
1154
1168
|
}
|
|
1155
|
-
.pl-11 {
|
|
1169
|
+
.flowcore-root .pl-11 {
|
|
1156
1170
|
padding-left: calc(var(--spacing) * 11);
|
|
1157
1171
|
}
|
|
1158
|
-
.pl-\[4px\] {
|
|
1172
|
+
.flowcore-root .pl-\[4px\] {
|
|
1159
1173
|
padding-left: 4px;
|
|
1160
1174
|
}
|
|
1161
|
-
.text-center {
|
|
1175
|
+
.flowcore-root .text-center {
|
|
1162
1176
|
text-align: center;
|
|
1163
1177
|
}
|
|
1164
|
-
.text-left {
|
|
1178
|
+
.flowcore-root .text-left {
|
|
1165
1179
|
text-align: left;
|
|
1166
1180
|
}
|
|
1167
|
-
.font-mono {
|
|
1181
|
+
.flowcore-root .font-mono {
|
|
1168
1182
|
font-family: var(--font-mono);
|
|
1169
1183
|
}
|
|
1170
|
-
.font-sans {
|
|
1184
|
+
.flowcore-root .font-sans {
|
|
1171
1185
|
font-family: var(--font-sans);
|
|
1172
1186
|
}
|
|
1173
|
-
.text-2xl {
|
|
1187
|
+
.flowcore-root .text-2xl {
|
|
1174
1188
|
font-size: var(--text-2xl);
|
|
1175
1189
|
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
1176
1190
|
}
|
|
1177
|
-
.text-3xl {
|
|
1191
|
+
.flowcore-root .text-3xl {
|
|
1178
1192
|
font-size: var(--text-3xl);
|
|
1179
1193
|
line-height: var(--tw-leading, var(--text-3xl--line-height));
|
|
1180
1194
|
}
|
|
1181
|
-
.text-base {
|
|
1195
|
+
.flowcore-root .text-base {
|
|
1182
1196
|
font-size: var(--text-base);
|
|
1183
1197
|
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
1184
1198
|
}
|
|
1185
|
-
.text-lg {
|
|
1199
|
+
.flowcore-root .text-lg {
|
|
1186
1200
|
font-size: var(--text-lg);
|
|
1187
1201
|
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
1188
1202
|
}
|
|
1189
|
-
.text-sm {
|
|
1203
|
+
.flowcore-root .text-sm {
|
|
1190
1204
|
font-size: var(--text-sm);
|
|
1191
1205
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
1192
1206
|
}
|
|
1193
|
-
.text-xl {
|
|
1207
|
+
.flowcore-root .text-xl {
|
|
1194
1208
|
font-size: var(--text-xl);
|
|
1195
1209
|
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
1196
1210
|
}
|
|
1197
|
-
.text-xs {
|
|
1211
|
+
.flowcore-root .text-xs {
|
|
1198
1212
|
font-size: var(--text-xs);
|
|
1199
1213
|
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
1200
1214
|
}
|
|
1201
|
-
.text-\[9px\] {
|
|
1215
|
+
.flowcore-root .text-\[9px\] {
|
|
1202
1216
|
font-size: 9px;
|
|
1203
1217
|
}
|
|
1204
|
-
.text-\[10px\] {
|
|
1218
|
+
.flowcore-root .text-\[10px\] {
|
|
1205
1219
|
font-size: 10px;
|
|
1206
1220
|
}
|
|
1207
|
-
.text-\[11px\] {
|
|
1221
|
+
.flowcore-root .text-\[11px\] {
|
|
1208
1222
|
font-size: 11px;
|
|
1209
1223
|
}
|
|
1210
|
-
.text-\[12px\] {
|
|
1224
|
+
.flowcore-root .text-\[12px\] {
|
|
1211
1225
|
font-size: 12px;
|
|
1212
1226
|
}
|
|
1213
|
-
.text-\[13px\] {
|
|
1227
|
+
.flowcore-root .text-\[13px\] {
|
|
1214
1228
|
font-size: 13px;
|
|
1215
1229
|
}
|
|
1216
|
-
.text-\[14px\] {
|
|
1230
|
+
.flowcore-root .text-\[14px\] {
|
|
1217
1231
|
font-size: 14px;
|
|
1218
1232
|
}
|
|
1219
|
-
.text-\[16px\] {
|
|
1233
|
+
.flowcore-root .text-\[16px\] {
|
|
1220
1234
|
font-size: 16px;
|
|
1221
1235
|
}
|
|
1222
|
-
.text-\[18px\] {
|
|
1236
|
+
.flowcore-root .text-\[18px\] {
|
|
1223
1237
|
font-size: 18px;
|
|
1224
1238
|
}
|
|
1225
|
-
.text-\[30px\] {
|
|
1239
|
+
.flowcore-root .text-\[30px\] {
|
|
1226
1240
|
font-size: 30px;
|
|
1227
1241
|
}
|
|
1228
|
-
.leading-8 {
|
|
1242
|
+
.flowcore-root .leading-8 {
|
|
1229
1243
|
--tw-leading: calc(var(--spacing) * 8);
|
|
1230
1244
|
line-height: calc(var(--spacing) * 8);
|
|
1231
1245
|
}
|
|
1232
|
-
.leading-10 {
|
|
1246
|
+
.flowcore-root .leading-10 {
|
|
1233
1247
|
--tw-leading: calc(var(--spacing) * 10);
|
|
1234
1248
|
line-height: calc(var(--spacing) * 10);
|
|
1235
1249
|
}
|
|
1236
|
-
.leading-\[20px\] {
|
|
1250
|
+
.flowcore-root .leading-\[20px\] {
|
|
1237
1251
|
--tw-leading: 20px;
|
|
1238
1252
|
line-height: 20px;
|
|
1239
1253
|
}
|
|
1240
|
-
.leading-\[22px\] {
|
|
1254
|
+
.flowcore-root .leading-\[22px\] {
|
|
1241
1255
|
--tw-leading: 22px;
|
|
1242
1256
|
line-height: 22px;
|
|
1243
1257
|
}
|
|
1244
|
-
.leading-tight {
|
|
1258
|
+
.flowcore-root .leading-tight {
|
|
1245
1259
|
--tw-leading: var(--leading-tight);
|
|
1246
1260
|
line-height: var(--leading-tight);
|
|
1247
1261
|
}
|
|
1248
|
-
.font-bold {
|
|
1262
|
+
.flowcore-root .font-bold {
|
|
1249
1263
|
--tw-font-weight: var(--font-weight-bold);
|
|
1250
1264
|
font-weight: var(--font-weight-bold);
|
|
1251
1265
|
}
|
|
1252
|
-
.font-extrabold {
|
|
1266
|
+
.flowcore-root .font-extrabold {
|
|
1253
1267
|
--tw-font-weight: var(--font-weight-extrabold);
|
|
1254
1268
|
font-weight: var(--font-weight-extrabold);
|
|
1255
1269
|
}
|
|
1256
|
-
.font-medium {
|
|
1270
|
+
.flowcore-root .font-medium {
|
|
1257
1271
|
--tw-font-weight: var(--font-weight-medium);
|
|
1258
1272
|
font-weight: var(--font-weight-medium);
|
|
1259
1273
|
}
|
|
1260
|
-
.font-normal {
|
|
1274
|
+
.flowcore-root .font-normal {
|
|
1261
1275
|
--tw-font-weight: var(--font-weight-normal);
|
|
1262
1276
|
font-weight: var(--font-weight-normal);
|
|
1263
1277
|
}
|
|
1264
|
-
.font-semibold {
|
|
1278
|
+
.flowcore-root .font-semibold {
|
|
1265
1279
|
--tw-font-weight: var(--font-weight-semibold);
|
|
1266
1280
|
font-weight: var(--font-weight-semibold);
|
|
1267
1281
|
}
|
|
1268
|
-
.tracking-\[0\.2px\] {
|
|
1282
|
+
.flowcore-root .tracking-\[0\.2px\] {
|
|
1269
1283
|
--tw-tracking: 0.2px;
|
|
1270
1284
|
letter-spacing: 0.2px;
|
|
1271
1285
|
}
|
|
1272
|
-
.tracking-tight {
|
|
1286
|
+
.flowcore-root .tracking-tight {
|
|
1273
1287
|
--tw-tracking: var(--tracking-tight);
|
|
1274
1288
|
letter-spacing: var(--tracking-tight);
|
|
1275
1289
|
}
|
|
1276
|
-
.tracking-wide {
|
|
1290
|
+
.flowcore-root .tracking-wide {
|
|
1277
1291
|
--tw-tracking: var(--tracking-wide);
|
|
1278
1292
|
letter-spacing: var(--tracking-wide);
|
|
1279
1293
|
}
|
|
1280
|
-
.tracking-wider {
|
|
1294
|
+
.flowcore-root .tracking-wider {
|
|
1281
1295
|
--tw-tracking: var(--tracking-wider);
|
|
1282
1296
|
letter-spacing: var(--tracking-wider);
|
|
1283
1297
|
}
|
|
1284
|
-
.whitespace-nowrap {
|
|
1298
|
+
.flowcore-root .whitespace-nowrap {
|
|
1285
1299
|
white-space: nowrap;
|
|
1286
1300
|
}
|
|
1287
|
-
.text-\[\#1E293B\] {
|
|
1301
|
+
.flowcore-root .text-\[\#1E293B\] {
|
|
1288
1302
|
color: #1E293B;
|
|
1289
1303
|
}
|
|
1290
|
-
.text-\[\#2D3A58\] {
|
|
1304
|
+
.flowcore-root .text-\[\#2D3A58\] {
|
|
1291
1305
|
color: #2D3A58;
|
|
1292
1306
|
}
|
|
1293
|
-
.text-\[\#3C4D74\] {
|
|
1307
|
+
.flowcore-root .text-\[\#3C4D74\] {
|
|
1294
1308
|
color: #3C4D74;
|
|
1295
1309
|
}
|
|
1296
|
-
.text-\[\#101318\] {
|
|
1310
|
+
.flowcore-root .text-\[\#101318\] {
|
|
1297
1311
|
color: #101318;
|
|
1298
1312
|
}
|
|
1299
|
-
.text-\[\#273657\] {
|
|
1313
|
+
.flowcore-root .text-\[\#273657\] {
|
|
1300
1314
|
color: #273657;
|
|
1301
1315
|
}
|
|
1302
|
-
.text-\[\#334155\] {
|
|
1316
|
+
.flowcore-root .text-\[\#334155\] {
|
|
1303
1317
|
color: #334155;
|
|
1304
1318
|
}
|
|
1305
|
-
.text-\[\#344261\] {
|
|
1319
|
+
.flowcore-root .text-\[\#344261\] {
|
|
1306
1320
|
color: #344261;
|
|
1307
1321
|
}
|
|
1308
|
-
.text-\[\#405170\] {
|
|
1322
|
+
.flowcore-root .text-\[\#405170\] {
|
|
1309
1323
|
color: #405170;
|
|
1310
1324
|
}
|
|
1311
|
-
.text-black {
|
|
1325
|
+
.flowcore-root .text-black {
|
|
1312
1326
|
color: var(--color-black);
|
|
1313
1327
|
}
|
|
1314
|
-
.text-blue-600 {
|
|
1328
|
+
.flowcore-root .text-blue-600 {
|
|
1315
1329
|
color: var(--color-blue-600);
|
|
1316
1330
|
}
|
|
1317
|
-
.text-gray-400 {
|
|
1331
|
+
.flowcore-root .text-gray-400 {
|
|
1318
1332
|
color: var(--color-gray-400);
|
|
1319
1333
|
}
|
|
1320
|
-
.text-gray-500 {
|
|
1334
|
+
.flowcore-root .text-gray-500 {
|
|
1321
1335
|
color: var(--color-gray-500);
|
|
1322
1336
|
}
|
|
1323
|
-
.text-gray-600 {
|
|
1337
|
+
.flowcore-root .text-gray-600 {
|
|
1324
1338
|
color: var(--color-gray-600);
|
|
1325
1339
|
}
|
|
1326
|
-
.text-gray-700 {
|
|
1340
|
+
.flowcore-root .text-gray-700 {
|
|
1327
1341
|
color: var(--color-gray-700);
|
|
1328
1342
|
}
|
|
1329
|
-
.text-gray-800 {
|
|
1343
|
+
.flowcore-root .text-gray-800 {
|
|
1330
1344
|
color: var(--color-gray-800);
|
|
1331
1345
|
}
|
|
1332
|
-
.text-green-700 {
|
|
1346
|
+
.flowcore-root .text-green-700 {
|
|
1333
1347
|
color: var(--color-green-700);
|
|
1334
1348
|
}
|
|
1335
|
-
.text-indigo-600 {
|
|
1349
|
+
.flowcore-root .text-indigo-600 {
|
|
1336
1350
|
color: var(--color-indigo-600);
|
|
1337
1351
|
}
|
|
1338
|
-
.text-red-500 {
|
|
1352
|
+
.flowcore-root .text-red-500 {
|
|
1339
1353
|
color: var(--color-red-500);
|
|
1340
1354
|
}
|
|
1341
|
-
.text-red-600 {
|
|
1355
|
+
.flowcore-root .text-red-600 {
|
|
1342
1356
|
color: var(--color-red-600);
|
|
1343
1357
|
}
|
|
1344
|
-
.text-red-700 {
|
|
1358
|
+
.flowcore-root .text-red-700 {
|
|
1345
1359
|
color: var(--color-red-700);
|
|
1346
1360
|
}
|
|
1347
|
-
.text-slate-300 {
|
|
1361
|
+
.flowcore-root .text-slate-300 {
|
|
1348
1362
|
color: var(--color-slate-300);
|
|
1349
1363
|
}
|
|
1350
|
-
.text-slate-400 {
|
|
1364
|
+
.flowcore-root .text-slate-400 {
|
|
1351
1365
|
color: var(--color-slate-400);
|
|
1352
1366
|
}
|
|
1353
|
-
.text-slate-500 {
|
|
1367
|
+
.flowcore-root .text-slate-500 {
|
|
1354
1368
|
color: var(--color-slate-500);
|
|
1355
1369
|
}
|
|
1356
|
-
.text-slate-600 {
|
|
1370
|
+
.flowcore-root .text-slate-600 {
|
|
1357
1371
|
color: var(--color-slate-600);
|
|
1358
1372
|
}
|
|
1359
|
-
.text-slate-700 {
|
|
1373
|
+
.flowcore-root .text-slate-700 {
|
|
1360
1374
|
color: var(--color-slate-700);
|
|
1361
1375
|
}
|
|
1362
|
-
.text-slate-800 {
|
|
1376
|
+
.flowcore-root .text-slate-800 {
|
|
1363
1377
|
color: var(--color-slate-800);
|
|
1364
1378
|
}
|
|
1365
|
-
.text-slate-900 {
|
|
1379
|
+
.flowcore-root .text-slate-900 {
|
|
1366
1380
|
color: var(--color-slate-900);
|
|
1367
1381
|
}
|
|
1368
|
-
.text-white {
|
|
1382
|
+
.flowcore-root .text-white {
|
|
1369
1383
|
color: var(--color-white);
|
|
1370
1384
|
}
|
|
1371
|
-
.text-zinc-600 {
|
|
1385
|
+
.flowcore-root .text-zinc-600 {
|
|
1372
1386
|
color: var(--color-zinc-600);
|
|
1373
1387
|
}
|
|
1374
|
-
.text-zinc-950 {
|
|
1388
|
+
.flowcore-root .text-zinc-950 {
|
|
1375
1389
|
color: var(--color-zinc-950);
|
|
1376
1390
|
}
|
|
1377
|
-
.capitalize {
|
|
1391
|
+
.flowcore-root .capitalize {
|
|
1378
1392
|
text-transform: capitalize;
|
|
1379
1393
|
}
|
|
1380
|
-
.uppercase {
|
|
1394
|
+
.flowcore-root .uppercase {
|
|
1381
1395
|
text-transform: uppercase;
|
|
1382
1396
|
}
|
|
1383
|
-
.antialiased {
|
|
1397
|
+
.flowcore-root .antialiased {
|
|
1384
1398
|
-webkit-font-smoothing: antialiased;
|
|
1385
1399
|
-moz-osx-font-smoothing: grayscale;
|
|
1386
1400
|
}
|
|
1387
|
-
.placeholder-slate-400 {
|
|
1388
|
-
|
|
1401
|
+
.flowcore-root .placeholder-slate-400 {
|
|
1402
|
+
.flowcore-root &::-moz-placeholder {
|
|
1403
|
+
color: var(--color-slate-400);
|
|
1404
|
+
}
|
|
1405
|
+
.flowcore-root &::placeholder {
|
|
1389
1406
|
color: var(--color-slate-400);
|
|
1390
1407
|
}
|
|
1391
1408
|
}
|
|
1392
|
-
.opacity-0 {
|
|
1409
|
+
.flowcore-root .opacity-0 {
|
|
1393
1410
|
opacity: 0%;
|
|
1394
1411
|
}
|
|
1395
|
-
.opacity-100 {
|
|
1412
|
+
.flowcore-root .opacity-100 {
|
|
1396
1413
|
opacity: 100%;
|
|
1397
1414
|
}
|
|
1398
|
-
.shadow {
|
|
1415
|
+
.flowcore-root .shadow {
|
|
1399
1416
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1400
1417
|
box-shadow:
|
|
1401
1418
|
var(--tw-inset-shadow),
|
|
@@ -1404,7 +1421,7 @@
|
|
|
1404
1421
|
var(--tw-ring-shadow),
|
|
1405
1422
|
var(--tw-shadow);
|
|
1406
1423
|
}
|
|
1407
|
-
.shadow-2xl {
|
|
1424
|
+
.flowcore-root .shadow-2xl {
|
|
1408
1425
|
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
|
|
1409
1426
|
box-shadow:
|
|
1410
1427
|
var(--tw-inset-shadow),
|
|
@@ -1413,7 +1430,7 @@
|
|
|
1413
1430
|
var(--tw-ring-shadow),
|
|
1414
1431
|
var(--tw-shadow);
|
|
1415
1432
|
}
|
|
1416
|
-
.shadow-\[0_2px_8px_rgba\(0\,0\,0\,0\.08\)\] {
|
|
1433
|
+
.flowcore-root .shadow-\[0_2px_8px_rgba\(0\,0\,0\,0\.08\)\] {
|
|
1417
1434
|
--tw-shadow: 0 2px 8px var(--tw-shadow-color, rgba(0,0,0,0.08));
|
|
1418
1435
|
box-shadow:
|
|
1419
1436
|
var(--tw-inset-shadow),
|
|
@@ -1422,7 +1439,7 @@
|
|
|
1422
1439
|
var(--tw-ring-shadow),
|
|
1423
1440
|
var(--tw-shadow);
|
|
1424
1441
|
}
|
|
1425
|
-
.shadow-md {
|
|
1442
|
+
.flowcore-root .shadow-md {
|
|
1426
1443
|
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1427
1444
|
box-shadow:
|
|
1428
1445
|
var(--tw-inset-shadow),
|
|
@@ -1431,7 +1448,7 @@
|
|
|
1431
1448
|
var(--tw-ring-shadow),
|
|
1432
1449
|
var(--tw-shadow);
|
|
1433
1450
|
}
|
|
1434
|
-
.shadow-sm {
|
|
1451
|
+
.flowcore-root .shadow-sm {
|
|
1435
1452
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1436
1453
|
box-shadow:
|
|
1437
1454
|
var(--tw-inset-shadow),
|
|
@@ -1440,7 +1457,7 @@
|
|
|
1440
1457
|
var(--tw-ring-shadow),
|
|
1441
1458
|
var(--tw-shadow);
|
|
1442
1459
|
}
|
|
1443
|
-
.ring-0 {
|
|
1460
|
+
.flowcore-root .ring-0 {
|
|
1444
1461
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1445
1462
|
box-shadow:
|
|
1446
1463
|
var(--tw-inset-shadow),
|
|
@@ -1449,30 +1466,29 @@
|
|
|
1449
1466
|
var(--tw-ring-shadow),
|
|
1450
1467
|
var(--tw-shadow);
|
|
1451
1468
|
}
|
|
1452
|
-
.shadow-blue-500\/20 {
|
|
1469
|
+
.flowcore-root .shadow-blue-500\/20 {
|
|
1453
1470
|
--tw-shadow-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 20%, transparent);
|
|
1454
1471
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1455
1472
|
--tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-blue-500) 20%, transparent) var(--tw-shadow-alpha), transparent);
|
|
1456
1473
|
}
|
|
1457
1474
|
}
|
|
1458
|
-
.shadow-indigo-500\/10 {
|
|
1475
|
+
.flowcore-root .shadow-indigo-500\/10 {
|
|
1459
1476
|
--tw-shadow-color: color-mix(in srgb, oklch(58.5% 0.233 277.117) 10%, transparent);
|
|
1460
1477
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1461
1478
|
--tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-indigo-500) 10%, transparent) var(--tw-shadow-alpha), transparent);
|
|
1462
1479
|
}
|
|
1463
1480
|
}
|
|
1464
|
-
.shadow-indigo-500\/20 {
|
|
1481
|
+
.flowcore-root .shadow-indigo-500\/20 {
|
|
1465
1482
|
--tw-shadow-color: color-mix(in srgb, oklch(58.5% 0.233 277.117) 20%, transparent);
|
|
1466
1483
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1467
1484
|
--tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-indigo-500) 20%, transparent) var(--tw-shadow-alpha), transparent);
|
|
1468
1485
|
}
|
|
1469
1486
|
}
|
|
1470
|
-
.backdrop-blur-sm {
|
|
1487
|
+
.flowcore-root .backdrop-blur-sm {
|
|
1471
1488
|
--tw-backdrop-blur: blur(var(--blur-sm));
|
|
1472
|
-
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1473
1489
|
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1474
1490
|
}
|
|
1475
|
-
.transition {
|
|
1491
|
+
.flowcore-root .transition {
|
|
1476
1492
|
transition-property:
|
|
1477
1493
|
color,
|
|
1478
1494
|
background-color,
|
|
@@ -1491,7 +1507,6 @@
|
|
|
1491
1507
|
scale,
|
|
1492
1508
|
rotate,
|
|
1493
1509
|
filter,
|
|
1494
|
-
-webkit-backdrop-filter,
|
|
1495
1510
|
backdrop-filter,
|
|
1496
1511
|
display,
|
|
1497
1512
|
content-visibility,
|
|
@@ -1500,12 +1515,12 @@
|
|
|
1500
1515
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1501
1516
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1502
1517
|
}
|
|
1503
|
-
.transition-all {
|
|
1518
|
+
.flowcore-root .transition-all {
|
|
1504
1519
|
transition-property: all;
|
|
1505
1520
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1506
1521
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1507
1522
|
}
|
|
1508
|
-
.transition-colors {
|
|
1523
|
+
.flowcore-root .transition-colors {
|
|
1509
1524
|
transition-property:
|
|
1510
1525
|
color,
|
|
1511
1526
|
background-color,
|
|
@@ -1520,162 +1535,166 @@
|
|
|
1520
1535
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1521
1536
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1522
1537
|
}
|
|
1523
|
-
.transition-opacity {
|
|
1538
|
+
.flowcore-root .transition-opacity {
|
|
1524
1539
|
transition-property: opacity;
|
|
1525
1540
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1526
1541
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1527
1542
|
}
|
|
1528
|
-
.duration-150 {
|
|
1543
|
+
.flowcore-root .duration-150 {
|
|
1529
1544
|
--tw-duration: 150ms;
|
|
1530
1545
|
transition-duration: 150ms;
|
|
1531
1546
|
}
|
|
1532
|
-
.duration-200 {
|
|
1547
|
+
.flowcore-root .duration-200 {
|
|
1533
1548
|
--tw-duration: 200ms;
|
|
1534
1549
|
transition-duration: 200ms;
|
|
1535
1550
|
}
|
|
1536
|
-
.duration-300 {
|
|
1551
|
+
.flowcore-root .duration-300 {
|
|
1537
1552
|
--tw-duration: 300ms;
|
|
1538
1553
|
transition-duration: 300ms;
|
|
1539
1554
|
}
|
|
1540
|
-
.ease-in-out {
|
|
1555
|
+
.flowcore-root .ease-in-out {
|
|
1541
1556
|
--tw-ease: var(--ease-in-out);
|
|
1542
1557
|
transition-timing-function: var(--ease-in-out);
|
|
1543
1558
|
}
|
|
1544
|
-
.outline-none {
|
|
1559
|
+
.flowcore-root .outline-none {
|
|
1545
1560
|
--tw-outline-style: none;
|
|
1546
1561
|
outline-style: none;
|
|
1547
1562
|
}
|
|
1548
|
-
.select-none {
|
|
1563
|
+
.flowcore-root .select-none {
|
|
1549
1564
|
-webkit-user-select: none;
|
|
1565
|
+
-moz-user-select: none;
|
|
1550
1566
|
user-select: none;
|
|
1551
1567
|
}
|
|
1552
|
-
.peer-checked\:bg-blue-600 {
|
|
1553
|
-
&:is(:where(.peer):checked ~ *) {
|
|
1568
|
+
.flowcore-root .peer-checked\:bg-blue-600 {
|
|
1569
|
+
.flowcore-root &:is(:where(.peer):checked ~ *) {
|
|
1554
1570
|
background-color: var(--color-blue-600);
|
|
1555
1571
|
}
|
|
1556
1572
|
}
|
|
1557
|
-
.peer-checked\:bg-indigo-600 {
|
|
1558
|
-
&:is(:where(.peer):checked ~ *) {
|
|
1573
|
+
.flowcore-root .peer-checked\:bg-indigo-600 {
|
|
1574
|
+
.flowcore-root &:is(:where(.peer):checked ~ *) {
|
|
1559
1575
|
background-color: var(--color-indigo-600);
|
|
1560
1576
|
}
|
|
1561
1577
|
}
|
|
1562
|
-
.peer-focus\:outline-none {
|
|
1563
|
-
&:is(:where(.peer):focus ~ *) {
|
|
1578
|
+
.flowcore-root .peer-focus\:outline-none {
|
|
1579
|
+
.flowcore-root &:is(:where(.peer):focus ~ *) {
|
|
1564
1580
|
--tw-outline-style: none;
|
|
1565
1581
|
outline-style: none;
|
|
1566
1582
|
}
|
|
1567
1583
|
}
|
|
1568
|
-
.placeholder\:text-slate-400 {
|
|
1569
|
-
|
|
1584
|
+
.flowcore-root .placeholder\:text-slate-400 {
|
|
1585
|
+
.flowcore-root &::-moz-placeholder {
|
|
1586
|
+
color: var(--color-slate-400);
|
|
1587
|
+
}
|
|
1588
|
+
.flowcore-root &::placeholder {
|
|
1570
1589
|
color: var(--color-slate-400);
|
|
1571
1590
|
}
|
|
1572
1591
|
}
|
|
1573
|
-
.after\:absolute {
|
|
1574
|
-
&::after {
|
|
1592
|
+
.flowcore-root .after\:absolute {
|
|
1593
|
+
.flowcore-root &::after {
|
|
1575
1594
|
content: var(--tw-content);
|
|
1576
1595
|
position: absolute;
|
|
1577
1596
|
}
|
|
1578
1597
|
}
|
|
1579
|
-
.after\:start-\[2px\] {
|
|
1580
|
-
&::after {
|
|
1598
|
+
.flowcore-root .after\:start-\[2px\] {
|
|
1599
|
+
.flowcore-root &::after {
|
|
1581
1600
|
content: var(--tw-content);
|
|
1582
1601
|
inset-inline-start: 2px;
|
|
1583
1602
|
}
|
|
1584
1603
|
}
|
|
1585
|
-
.after\:top-\[2px\] {
|
|
1586
|
-
&::after {
|
|
1604
|
+
.flowcore-root .after\:top-\[2px\] {
|
|
1605
|
+
.flowcore-root &::after {
|
|
1587
1606
|
content: var(--tw-content);
|
|
1588
1607
|
top: 2px;
|
|
1589
1608
|
}
|
|
1590
1609
|
}
|
|
1591
|
-
.after\:left-\[2px\] {
|
|
1592
|
-
&::after {
|
|
1610
|
+
.flowcore-root .after\:left-\[2px\] {
|
|
1611
|
+
.flowcore-root &::after {
|
|
1593
1612
|
content: var(--tw-content);
|
|
1594
1613
|
left: 2px;
|
|
1595
1614
|
}
|
|
1596
1615
|
}
|
|
1597
|
-
.after\:h-3\.5 {
|
|
1598
|
-
&::after {
|
|
1616
|
+
.flowcore-root .after\:h-3\.5 {
|
|
1617
|
+
.flowcore-root &::after {
|
|
1599
1618
|
content: var(--tw-content);
|
|
1600
1619
|
height: calc(var(--spacing) * 3.5);
|
|
1601
1620
|
}
|
|
1602
1621
|
}
|
|
1603
|
-
.after\:h-5 {
|
|
1604
|
-
&::after {
|
|
1622
|
+
.flowcore-root .after\:h-5 {
|
|
1623
|
+
.flowcore-root &::after {
|
|
1605
1624
|
content: var(--tw-content);
|
|
1606
1625
|
height: calc(var(--spacing) * 5);
|
|
1607
1626
|
}
|
|
1608
1627
|
}
|
|
1609
|
-
.after\:w-3\.5 {
|
|
1610
|
-
&::after {
|
|
1628
|
+
.flowcore-root .after\:w-3\.5 {
|
|
1629
|
+
.flowcore-root &::after {
|
|
1611
1630
|
content: var(--tw-content);
|
|
1612
1631
|
width: calc(var(--spacing) * 3.5);
|
|
1613
1632
|
}
|
|
1614
1633
|
}
|
|
1615
|
-
.after\:w-5 {
|
|
1616
|
-
&::after {
|
|
1634
|
+
.flowcore-root .after\:w-5 {
|
|
1635
|
+
.flowcore-root &::after {
|
|
1617
1636
|
content: var(--tw-content);
|
|
1618
1637
|
width: calc(var(--spacing) * 5);
|
|
1619
1638
|
}
|
|
1620
1639
|
}
|
|
1621
|
-
.after\:rounded-full {
|
|
1622
|
-
&::after {
|
|
1640
|
+
.flowcore-root .after\:rounded-full {
|
|
1641
|
+
.flowcore-root &::after {
|
|
1623
1642
|
content: var(--tw-content);
|
|
1624
1643
|
border-radius: calc(infinity * 1px);
|
|
1625
1644
|
}
|
|
1626
1645
|
}
|
|
1627
|
-
.after\:border {
|
|
1628
|
-
&::after {
|
|
1646
|
+
.flowcore-root .after\:border {
|
|
1647
|
+
.flowcore-root &::after {
|
|
1629
1648
|
content: var(--tw-content);
|
|
1630
1649
|
border-style: var(--tw-border-style);
|
|
1631
1650
|
border-width: 1px;
|
|
1632
1651
|
}
|
|
1633
1652
|
}
|
|
1634
|
-
.after\:border-slate-300 {
|
|
1635
|
-
&::after {
|
|
1653
|
+
.flowcore-root .after\:border-slate-300 {
|
|
1654
|
+
.flowcore-root &::after {
|
|
1636
1655
|
content: var(--tw-content);
|
|
1637
1656
|
border-color: var(--color-slate-300);
|
|
1638
1657
|
}
|
|
1639
1658
|
}
|
|
1640
|
-
.after\:bg-white {
|
|
1641
|
-
&::after {
|
|
1659
|
+
.flowcore-root .after\:bg-white {
|
|
1660
|
+
.flowcore-root &::after {
|
|
1642
1661
|
content: var(--tw-content);
|
|
1643
1662
|
background-color: var(--color-white);
|
|
1644
1663
|
}
|
|
1645
1664
|
}
|
|
1646
|
-
.after\:transition-all {
|
|
1647
|
-
&::after {
|
|
1665
|
+
.flowcore-root .after\:transition-all {
|
|
1666
|
+
.flowcore-root &::after {
|
|
1648
1667
|
content: var(--tw-content);
|
|
1649
1668
|
transition-property: all;
|
|
1650
1669
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1651
1670
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1652
1671
|
}
|
|
1653
1672
|
}
|
|
1654
|
-
.after\:content-\[\'\'\] {
|
|
1655
|
-
&::after {
|
|
1673
|
+
.flowcore-root .after\:content-\[\'\'\] {
|
|
1674
|
+
.flowcore-root &::after {
|
|
1656
1675
|
--tw-content: "";
|
|
1657
1676
|
content: var(--tw-content);
|
|
1658
1677
|
}
|
|
1659
1678
|
}
|
|
1660
|
-
.peer-checked\:after\:translate-x-full {
|
|
1661
|
-
&:is(:where(.peer):checked ~ *) {
|
|
1662
|
-
&::after {
|
|
1679
|
+
.flowcore-root .peer-checked\:after\:translate-x-full {
|
|
1680
|
+
.flowcore-root &:is(:where(.peer):checked ~ *) {
|
|
1681
|
+
.flowcore-root &::after {
|
|
1663
1682
|
content: var(--tw-content);
|
|
1664
1683
|
--tw-translate-x: 100%;
|
|
1665
1684
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1666
1685
|
}
|
|
1667
1686
|
}
|
|
1668
1687
|
}
|
|
1669
|
-
.peer-checked\:after\:border-white {
|
|
1670
|
-
&:is(:where(.peer):checked ~ *) {
|
|
1671
|
-
&::after {
|
|
1688
|
+
.flowcore-root .peer-checked\:after\:border-white {
|
|
1689
|
+
.flowcore-root &:is(:where(.peer):checked ~ *) {
|
|
1690
|
+
.flowcore-root &::after {
|
|
1672
1691
|
content: var(--tw-content);
|
|
1673
1692
|
border-color: var(--color-white);
|
|
1674
1693
|
}
|
|
1675
1694
|
}
|
|
1676
1695
|
}
|
|
1677
|
-
.hover\:scale-105 {
|
|
1678
|
-
&:hover {
|
|
1696
|
+
.flowcore-root .hover\:scale-105 {
|
|
1697
|
+
.flowcore-root &:hover {
|
|
1679
1698
|
@media (hover: hover) {
|
|
1680
1699
|
--tw-scale-x: 105%;
|
|
1681
1700
|
--tw-scale-y: 105%;
|
|
@@ -1684,43 +1703,43 @@
|
|
|
1684
1703
|
}
|
|
1685
1704
|
}
|
|
1686
1705
|
}
|
|
1687
|
-
.hover\:border-transparent {
|
|
1688
|
-
&:hover {
|
|
1706
|
+
.flowcore-root .hover\:border-transparent {
|
|
1707
|
+
.flowcore-root &:hover {
|
|
1689
1708
|
@media (hover: hover) {
|
|
1690
1709
|
border-color: transparent;
|
|
1691
1710
|
}
|
|
1692
1711
|
}
|
|
1693
1712
|
}
|
|
1694
|
-
.hover\:bg-\[\#383838\] {
|
|
1695
|
-
&:hover {
|
|
1713
|
+
.flowcore-root .hover\:bg-\[\#383838\] {
|
|
1714
|
+
.flowcore-root &:hover {
|
|
1696
1715
|
@media (hover: hover) {
|
|
1697
1716
|
background-color: #383838;
|
|
1698
1717
|
}
|
|
1699
1718
|
}
|
|
1700
1719
|
}
|
|
1701
|
-
.hover\:bg-\[\#F3F5F9\] {
|
|
1702
|
-
&:hover {
|
|
1720
|
+
.flowcore-root .hover\:bg-\[\#F3F5F9\] {
|
|
1721
|
+
.flowcore-root &:hover {
|
|
1703
1722
|
@media (hover: hover) {
|
|
1704
1723
|
background-color: #F3F5F9;
|
|
1705
1724
|
}
|
|
1706
1725
|
}
|
|
1707
1726
|
}
|
|
1708
|
-
.hover\:bg-\[\#F6F8FC\] {
|
|
1709
|
-
&:hover {
|
|
1727
|
+
.flowcore-root .hover\:bg-\[\#F6F8FC\] {
|
|
1728
|
+
.flowcore-root &:hover {
|
|
1710
1729
|
@media (hover: hover) {
|
|
1711
1730
|
background-color: #F6F8FC;
|
|
1712
1731
|
}
|
|
1713
1732
|
}
|
|
1714
1733
|
}
|
|
1715
|
-
.hover\:bg-\[\#F7F8FC\] {
|
|
1716
|
-
&:hover {
|
|
1734
|
+
.flowcore-root .hover\:bg-\[\#F7F8FC\] {
|
|
1735
|
+
.flowcore-root &:hover {
|
|
1717
1736
|
@media (hover: hover) {
|
|
1718
1737
|
background-color: #F7F8FC;
|
|
1719
1738
|
}
|
|
1720
1739
|
}
|
|
1721
1740
|
}
|
|
1722
|
-
.hover\:bg-black\/\[\.04\] {
|
|
1723
|
-
&:hover {
|
|
1741
|
+
.flowcore-root .hover\:bg-black\/\[\.04\] {
|
|
1742
|
+
.flowcore-root &:hover {
|
|
1724
1743
|
@media (hover: hover) {
|
|
1725
1744
|
background-color: color-mix(in srgb, #000 4%, transparent);
|
|
1726
1745
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1729,50 +1748,50 @@
|
|
|
1729
1748
|
}
|
|
1730
1749
|
}
|
|
1731
1750
|
}
|
|
1732
|
-
.hover\:bg-blue-700 {
|
|
1733
|
-
&:hover {
|
|
1751
|
+
.flowcore-root .hover\:bg-blue-700 {
|
|
1752
|
+
.flowcore-root &:hover {
|
|
1734
1753
|
@media (hover: hover) {
|
|
1735
1754
|
background-color: var(--color-blue-700);
|
|
1736
1755
|
}
|
|
1737
1756
|
}
|
|
1738
1757
|
}
|
|
1739
|
-
.hover\:bg-gray-50 {
|
|
1740
|
-
&:hover {
|
|
1758
|
+
.flowcore-root .hover\:bg-gray-50 {
|
|
1759
|
+
.flowcore-root &:hover {
|
|
1741
1760
|
@media (hover: hover) {
|
|
1742
1761
|
background-color: var(--color-gray-50);
|
|
1743
1762
|
}
|
|
1744
1763
|
}
|
|
1745
1764
|
}
|
|
1746
|
-
.hover\:bg-gray-100 {
|
|
1747
|
-
&:hover {
|
|
1765
|
+
.flowcore-root .hover\:bg-gray-100 {
|
|
1766
|
+
.flowcore-root &:hover {
|
|
1748
1767
|
@media (hover: hover) {
|
|
1749
1768
|
background-color: var(--color-gray-100);
|
|
1750
1769
|
}
|
|
1751
1770
|
}
|
|
1752
1771
|
}
|
|
1753
|
-
.hover\:bg-gray-200 {
|
|
1754
|
-
&:hover {
|
|
1772
|
+
.flowcore-root .hover\:bg-gray-200 {
|
|
1773
|
+
.flowcore-root &:hover {
|
|
1755
1774
|
@media (hover: hover) {
|
|
1756
1775
|
background-color: var(--color-gray-200);
|
|
1757
1776
|
}
|
|
1758
1777
|
}
|
|
1759
1778
|
}
|
|
1760
|
-
.hover\:bg-indigo-700 {
|
|
1761
|
-
&:hover {
|
|
1779
|
+
.flowcore-root .hover\:bg-indigo-700 {
|
|
1780
|
+
.flowcore-root &:hover {
|
|
1762
1781
|
@media (hover: hover) {
|
|
1763
1782
|
background-color: var(--color-indigo-700);
|
|
1764
1783
|
}
|
|
1765
1784
|
}
|
|
1766
1785
|
}
|
|
1767
|
-
.hover\:bg-slate-50 {
|
|
1768
|
-
&:hover {
|
|
1786
|
+
.flowcore-root .hover\:bg-slate-50 {
|
|
1787
|
+
.flowcore-root &:hover {
|
|
1769
1788
|
@media (hover: hover) {
|
|
1770
1789
|
background-color: var(--color-slate-50);
|
|
1771
1790
|
}
|
|
1772
1791
|
}
|
|
1773
1792
|
}
|
|
1774
|
-
.hover\:bg-slate-50\/40 {
|
|
1775
|
-
&:hover {
|
|
1793
|
+
.flowcore-root .hover\:bg-slate-50\/40 {
|
|
1794
|
+
.flowcore-root &:hover {
|
|
1776
1795
|
@media (hover: hover) {
|
|
1777
1796
|
background-color: color-mix(in srgb, oklch(98.4% 0.003 247.858) 40%, transparent);
|
|
1778
1797
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1781,8 +1800,8 @@
|
|
|
1781
1800
|
}
|
|
1782
1801
|
}
|
|
1783
1802
|
}
|
|
1784
|
-
.hover\:bg-slate-50\/50 {
|
|
1785
|
-
&:hover {
|
|
1803
|
+
.flowcore-root .hover\:bg-slate-50\/50 {
|
|
1804
|
+
.flowcore-root &:hover {
|
|
1786
1805
|
@media (hover: hover) {
|
|
1787
1806
|
background-color: color-mix(in srgb, oklch(98.4% 0.003 247.858) 50%, transparent);
|
|
1788
1807
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1791,15 +1810,15 @@
|
|
|
1791
1810
|
}
|
|
1792
1811
|
}
|
|
1793
1812
|
}
|
|
1794
|
-
.hover\:bg-slate-100 {
|
|
1795
|
-
&:hover {
|
|
1813
|
+
.flowcore-root .hover\:bg-slate-100 {
|
|
1814
|
+
.flowcore-root &:hover {
|
|
1796
1815
|
@media (hover: hover) {
|
|
1797
1816
|
background-color: var(--color-slate-100);
|
|
1798
1817
|
}
|
|
1799
1818
|
}
|
|
1800
1819
|
}
|
|
1801
|
-
.hover\:bg-slate-100\/50 {
|
|
1802
|
-
&:hover {
|
|
1820
|
+
.flowcore-root .hover\:bg-slate-100\/50 {
|
|
1821
|
+
.flowcore-root &:hover {
|
|
1803
1822
|
@media (hover: hover) {
|
|
1804
1823
|
background-color: color-mix(in srgb, oklch(96.8% 0.007 247.896) 50%, transparent);
|
|
1805
1824
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1808,43 +1827,43 @@
|
|
|
1808
1827
|
}
|
|
1809
1828
|
}
|
|
1810
1829
|
}
|
|
1811
|
-
.hover\:text-indigo-600 {
|
|
1812
|
-
&:hover {
|
|
1830
|
+
.flowcore-root .hover\:text-indigo-600 {
|
|
1831
|
+
.flowcore-root &:hover {
|
|
1813
1832
|
@media (hover: hover) {
|
|
1814
1833
|
color: var(--color-indigo-600);
|
|
1815
1834
|
}
|
|
1816
1835
|
}
|
|
1817
1836
|
}
|
|
1818
|
-
.hover\:text-red-500 {
|
|
1819
|
-
&:hover {
|
|
1837
|
+
.flowcore-root .hover\:text-red-500 {
|
|
1838
|
+
.flowcore-root &:hover {
|
|
1820
1839
|
@media (hover: hover) {
|
|
1821
1840
|
color: var(--color-red-500);
|
|
1822
1841
|
}
|
|
1823
1842
|
}
|
|
1824
1843
|
}
|
|
1825
|
-
.hover\:text-slate-600 {
|
|
1826
|
-
&:hover {
|
|
1844
|
+
.flowcore-root .hover\:text-slate-600 {
|
|
1845
|
+
.flowcore-root &:hover {
|
|
1827
1846
|
@media (hover: hover) {
|
|
1828
1847
|
color: var(--color-slate-600);
|
|
1829
1848
|
}
|
|
1830
1849
|
}
|
|
1831
1850
|
}
|
|
1832
|
-
.hover\:text-slate-900 {
|
|
1833
|
-
&:hover {
|
|
1851
|
+
.flowcore-root .hover\:text-slate-900 {
|
|
1852
|
+
.flowcore-root &:hover {
|
|
1834
1853
|
@media (hover: hover) {
|
|
1835
1854
|
color: var(--color-slate-900);
|
|
1836
1855
|
}
|
|
1837
1856
|
}
|
|
1838
1857
|
}
|
|
1839
|
-
.hover\:underline {
|
|
1840
|
-
&:hover {
|
|
1858
|
+
.flowcore-root .hover\:underline {
|
|
1859
|
+
.flowcore-root &:hover {
|
|
1841
1860
|
@media (hover: hover) {
|
|
1842
1861
|
text-decoration-line: underline;
|
|
1843
1862
|
}
|
|
1844
1863
|
}
|
|
1845
1864
|
}
|
|
1846
|
-
.hover\:shadow-lg {
|
|
1847
|
-
&:hover {
|
|
1865
|
+
.flowcore-root .hover\:shadow-lg {
|
|
1866
|
+
.flowcore-root &:hover {
|
|
1848
1867
|
@media (hover: hover) {
|
|
1849
1868
|
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1850
1869
|
box-shadow:
|
|
@@ -1856,8 +1875,8 @@
|
|
|
1856
1875
|
}
|
|
1857
1876
|
}
|
|
1858
1877
|
}
|
|
1859
|
-
.hover\:shadow-blue-500\/30 {
|
|
1860
|
-
&:hover {
|
|
1878
|
+
.flowcore-root .hover\:shadow-blue-500\/30 {
|
|
1879
|
+
.flowcore-root &:hover {
|
|
1861
1880
|
@media (hover: hover) {
|
|
1862
1881
|
--tw-shadow-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 30%, transparent);
|
|
1863
1882
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1866,8 +1885,8 @@
|
|
|
1866
1885
|
}
|
|
1867
1886
|
}
|
|
1868
1887
|
}
|
|
1869
|
-
.hover\:shadow-indigo-500\/30 {
|
|
1870
|
-
&:hover {
|
|
1888
|
+
.flowcore-root .hover\:shadow-indigo-500\/30 {
|
|
1889
|
+
.flowcore-root &:hover {
|
|
1871
1890
|
@media (hover: hover) {
|
|
1872
1891
|
--tw-shadow-color: color-mix(in srgb, oklch(58.5% 0.233 277.117) 30%, transparent);
|
|
1873
1892
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1876,18 +1895,18 @@
|
|
|
1876
1895
|
}
|
|
1877
1896
|
}
|
|
1878
1897
|
}
|
|
1879
|
-
.focus\:border-blue-500 {
|
|
1880
|
-
&:focus {
|
|
1898
|
+
.flowcore-root .focus\:border-blue-500 {
|
|
1899
|
+
.flowcore-root &:focus {
|
|
1881
1900
|
border-color: var(--color-blue-500);
|
|
1882
1901
|
}
|
|
1883
1902
|
}
|
|
1884
|
-
.focus\:border-indigo-500 {
|
|
1885
|
-
&:focus {
|
|
1903
|
+
.flowcore-root .focus\:border-indigo-500 {
|
|
1904
|
+
.flowcore-root &:focus {
|
|
1886
1905
|
border-color: var(--color-indigo-500);
|
|
1887
1906
|
}
|
|
1888
1907
|
}
|
|
1889
|
-
.focus\:ring-2 {
|
|
1890
|
-
&:focus {
|
|
1908
|
+
.flowcore-root .focus\:ring-2 {
|
|
1909
|
+
.flowcore-root &:focus {
|
|
1891
1910
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1892
1911
|
box-shadow:
|
|
1893
1912
|
var(--tw-inset-shadow),
|
|
@@ -1897,8 +1916,8 @@
|
|
|
1897
1916
|
var(--tw-shadow);
|
|
1898
1917
|
}
|
|
1899
1918
|
}
|
|
1900
|
-
.focus\:ring-4 {
|
|
1901
|
-
&:focus {
|
|
1919
|
+
.flowcore-root .focus\:ring-4 {
|
|
1920
|
+
.flowcore-root &:focus {
|
|
1902
1921
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1903
1922
|
box-shadow:
|
|
1904
1923
|
var(--tw-inset-shadow),
|
|
@@ -1908,102 +1927,102 @@
|
|
|
1908
1927
|
var(--tw-shadow);
|
|
1909
1928
|
}
|
|
1910
1929
|
}
|
|
1911
|
-
.focus\:ring-blue-100 {
|
|
1912
|
-
&:focus {
|
|
1930
|
+
.flowcore-root .focus\:ring-blue-100 {
|
|
1931
|
+
.flowcore-root &:focus {
|
|
1913
1932
|
--tw-ring-color: var(--color-blue-100);
|
|
1914
1933
|
}
|
|
1915
1934
|
}
|
|
1916
|
-
.focus\:ring-blue-500 {
|
|
1917
|
-
&:focus {
|
|
1935
|
+
.flowcore-root .focus\:ring-blue-500 {
|
|
1936
|
+
.flowcore-root &:focus {
|
|
1918
1937
|
--tw-ring-color: var(--color-blue-500);
|
|
1919
1938
|
}
|
|
1920
1939
|
}
|
|
1921
|
-
.focus\:ring-blue-500\/10 {
|
|
1922
|
-
&:focus {
|
|
1940
|
+
.flowcore-root .focus\:ring-blue-500\/10 {
|
|
1941
|
+
.flowcore-root &:focus {
|
|
1923
1942
|
--tw-ring-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 10%, transparent);
|
|
1924
1943
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1925
1944
|
--tw-ring-color: color-mix(in oklab, var(--color-blue-500) 10%, transparent);
|
|
1926
1945
|
}
|
|
1927
1946
|
}
|
|
1928
1947
|
}
|
|
1929
|
-
.focus\:ring-indigo-500\/10 {
|
|
1930
|
-
&:focus {
|
|
1948
|
+
.flowcore-root .focus\:ring-indigo-500\/10 {
|
|
1949
|
+
.flowcore-root &:focus {
|
|
1931
1950
|
--tw-ring-color: color-mix(in srgb, oklch(58.5% 0.233 277.117) 10%, transparent);
|
|
1932
1951
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1933
1952
|
--tw-ring-color: color-mix(in oklab, var(--color-indigo-500) 10%, transparent);
|
|
1934
1953
|
}
|
|
1935
1954
|
}
|
|
1936
1955
|
}
|
|
1937
|
-
.focus\:outline-none {
|
|
1938
|
-
&:focus {
|
|
1956
|
+
.flowcore-root .focus\:outline-none {
|
|
1957
|
+
.flowcore-root &:focus {
|
|
1939
1958
|
--tw-outline-style: none;
|
|
1940
1959
|
outline-style: none;
|
|
1941
1960
|
}
|
|
1942
1961
|
}
|
|
1943
|
-
.active\:scale-95 {
|
|
1944
|
-
&:active {
|
|
1962
|
+
.flowcore-root .active\:scale-95 {
|
|
1963
|
+
.flowcore-root &:active {
|
|
1945
1964
|
--tw-scale-x: 95%;
|
|
1946
1965
|
--tw-scale-y: 95%;
|
|
1947
1966
|
--tw-scale-z: 95%;
|
|
1948
1967
|
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
1949
1968
|
}
|
|
1950
1969
|
}
|
|
1951
|
-
.sm\:flex-row {
|
|
1970
|
+
.flowcore-root .sm\:flex-row {
|
|
1952
1971
|
@media (width >= 40rem) {
|
|
1953
1972
|
flex-direction: row;
|
|
1954
1973
|
}
|
|
1955
1974
|
}
|
|
1956
|
-
.sm\:items-center {
|
|
1975
|
+
.flowcore-root .sm\:items-center {
|
|
1957
1976
|
@media (width >= 40rem) {
|
|
1958
1977
|
align-items: center;
|
|
1959
1978
|
}
|
|
1960
1979
|
}
|
|
1961
|
-
.sm\:items-start {
|
|
1980
|
+
.flowcore-root .sm\:items-start {
|
|
1962
1981
|
@media (width >= 40rem) {
|
|
1963
1982
|
align-items: flex-start;
|
|
1964
1983
|
}
|
|
1965
1984
|
}
|
|
1966
|
-
.sm\:justify-between {
|
|
1985
|
+
.flowcore-root .sm\:justify-between {
|
|
1967
1986
|
@media (width >= 40rem) {
|
|
1968
1987
|
justify-content: space-between;
|
|
1969
1988
|
}
|
|
1970
1989
|
}
|
|
1971
|
-
.sm\:pr-2 {
|
|
1990
|
+
.flowcore-root .sm\:pr-2 {
|
|
1972
1991
|
@media (width >= 40rem) {
|
|
1973
1992
|
padding-right: calc(var(--spacing) * 2);
|
|
1974
1993
|
}
|
|
1975
1994
|
}
|
|
1976
|
-
.sm\:text-left {
|
|
1995
|
+
.flowcore-root .sm\:text-left {
|
|
1977
1996
|
@media (width >= 40rem) {
|
|
1978
1997
|
text-align: left;
|
|
1979
1998
|
}
|
|
1980
1999
|
}
|
|
1981
|
-
.md\:w-\[158px\] {
|
|
2000
|
+
.flowcore-root .md\:w-\[158px\] {
|
|
1982
2001
|
@media (width >= 48rem) {
|
|
1983
2002
|
width: 158px;
|
|
1984
2003
|
}
|
|
1985
2004
|
}
|
|
1986
|
-
.md\:grid-cols-2 {
|
|
2005
|
+
.flowcore-root .md\:grid-cols-2 {
|
|
1987
2006
|
@media (width >= 48rem) {
|
|
1988
2007
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1989
2008
|
}
|
|
1990
2009
|
}
|
|
1991
|
-
.md\:grid-cols-3 {
|
|
2010
|
+
.flowcore-root .md\:grid-cols-3 {
|
|
1992
2011
|
@media (width >= 48rem) {
|
|
1993
2012
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1994
2013
|
}
|
|
1995
2014
|
}
|
|
1996
|
-
.md\:p-6 {
|
|
2015
|
+
.flowcore-root .md\:p-6 {
|
|
1997
2016
|
@media (width >= 48rem) {
|
|
1998
2017
|
padding: calc(var(--spacing) * 6);
|
|
1999
2018
|
}
|
|
2000
2019
|
}
|
|
2001
|
-
.lg\:grid-cols-4 {
|
|
2020
|
+
.flowcore-root .lg\:grid-cols-4 {
|
|
2002
2021
|
@media (width >= 64rem) {
|
|
2003
2022
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2004
2023
|
}
|
|
2005
2024
|
}
|
|
2006
|
-
.dark\:border-white\/\[\.145\] {
|
|
2025
|
+
.flowcore-root .dark\:border-white\/\[\.145\] {
|
|
2007
2026
|
@media (prefers-color-scheme: dark) {
|
|
2008
2027
|
border-color: color-mix(in srgb, #fff 14.499999999999998%, transparent);
|
|
2009
2028
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2011,39 +2030,39 @@
|
|
|
2011
2030
|
}
|
|
2012
2031
|
}
|
|
2013
2032
|
}
|
|
2014
|
-
.dark\:bg-black {
|
|
2033
|
+
.flowcore-root .dark\:bg-black {
|
|
2015
2034
|
@media (prefers-color-scheme: dark) {
|
|
2016
2035
|
background-color: var(--color-black);
|
|
2017
2036
|
}
|
|
2018
2037
|
}
|
|
2019
|
-
.dark\:text-zinc-50 {
|
|
2038
|
+
.flowcore-root .dark\:text-zinc-50 {
|
|
2020
2039
|
@media (prefers-color-scheme: dark) {
|
|
2021
2040
|
color: var(--color-zinc-50);
|
|
2022
2041
|
}
|
|
2023
2042
|
}
|
|
2024
|
-
.dark\:text-zinc-400 {
|
|
2043
|
+
.flowcore-root .dark\:text-zinc-400 {
|
|
2025
2044
|
@media (prefers-color-scheme: dark) {
|
|
2026
2045
|
color: var(--color-zinc-400);
|
|
2027
2046
|
}
|
|
2028
2047
|
}
|
|
2029
|
-
.dark\:invert {
|
|
2048
|
+
.flowcore-root .dark\:invert {
|
|
2030
2049
|
@media (prefers-color-scheme: dark) {
|
|
2031
2050
|
--tw-invert: invert(100%);
|
|
2032
2051
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
2033
2052
|
}
|
|
2034
2053
|
}
|
|
2035
|
-
.dark\:hover\:bg-\[\#1a1a1a\] {
|
|
2054
|
+
.flowcore-root .dark\:hover\:bg-\[\#1a1a1a\] {
|
|
2036
2055
|
@media (prefers-color-scheme: dark) {
|
|
2037
|
-
&:hover {
|
|
2056
|
+
.flowcore-root &:hover {
|
|
2038
2057
|
@media (hover: hover) {
|
|
2039
2058
|
background-color: #1a1a1a;
|
|
2040
2059
|
}
|
|
2041
2060
|
}
|
|
2042
2061
|
}
|
|
2043
2062
|
}
|
|
2044
|
-
.dark\:hover\:bg-\[\#ccc\] {
|
|
2063
|
+
.flowcore-root .dark\:hover\:bg-\[\#ccc\] {
|
|
2045
2064
|
@media (prefers-color-scheme: dark) {
|
|
2046
|
-
&:hover {
|
|
2065
|
+
.flowcore-root &:hover {
|
|
2047
2066
|
@media (hover: hover) {
|
|
2048
2067
|
background-color: #ccc;
|
|
2049
2068
|
}
|
|
@@ -2110,10 +2129,10 @@
|
|
|
2110
2129
|
@property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
|
|
2111
2130
|
@layer properties {
|
|
2112
2131
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
2113
|
-
*,
|
|
2114
|
-
::before,
|
|
2115
|
-
::after,
|
|
2116
|
-
::backdrop {
|
|
2132
|
+
.flowcore-root *,
|
|
2133
|
+
.flowcore-root ::before,
|
|
2134
|
+
.flowcore-root ::after,
|
|
2135
|
+
.flowcore-root ::backdrop {
|
|
2117
2136
|
--tw-translate-x: 0;
|
|
2118
2137
|
--tw-translate-y: 0;
|
|
2119
2138
|
--tw-translate-z: 0;
|