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