@flexkit/automations 0.0.24 → 0.0.25
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/index.css +281 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +9 -4
package/dist/index.css
CHANGED
|
@@ -3,19 +3,35 @@
|
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer theme {
|
|
5
5
|
:root, :host {
|
|
6
|
+
--fk-color-red-400: oklch(70.4% 0.191 22.216);
|
|
7
|
+
--fk-color-red-500: oklch(63.7% 0.237 25.331);
|
|
6
8
|
--fk-color-red-700: oklch(50.5% 0.213 27.518);
|
|
9
|
+
--fk-color-amber-400: oklch(82.8% 0.189 84.429);
|
|
7
10
|
--fk-color-amber-500: oklch(76.9% 0.188 70.08);
|
|
11
|
+
--fk-color-amber-700: oklch(55.5% 0.163 48.998);
|
|
8
12
|
--fk-color-green-700: oklch(52.7% 0.154 150.069);
|
|
13
|
+
--fk-color-emerald-400: oklch(76.5% 0.177 163.223);
|
|
14
|
+
--fk-color-emerald-500: oklch(69.6% 0.17 162.48);
|
|
15
|
+
--fk-color-emerald-700: oklch(50.8% 0.118 165.612);
|
|
16
|
+
--fk-color-blue-400: oklch(70.7% 0.165 254.624);
|
|
17
|
+
--fk-color-blue-500: oklch(62.3% 0.214 259.815);
|
|
18
|
+
--fk-color-blue-700: oklch(48.8% 0.243 264.376);
|
|
9
19
|
--fk-spacing: 0.25rem;
|
|
20
|
+
--fk-container-sm: 24rem;
|
|
10
21
|
--fk-container-md: 28rem;
|
|
22
|
+
--fk-container-lg: 32rem;
|
|
11
23
|
--fk-container-3xl: 48rem;
|
|
12
24
|
--fk-container-5xl: 64rem;
|
|
13
25
|
--fk-text-xs: 0.75rem;
|
|
14
26
|
--fk-text-xs--line-height: calc(1 / 0.75);
|
|
15
27
|
--fk-text-sm: 0.875rem;
|
|
16
28
|
--fk-text-sm--line-height: calc(1.25 / 0.875);
|
|
29
|
+
--fk-text-base: 1rem;
|
|
30
|
+
--fk-text-base--line-height: calc(1.5 / 1);
|
|
17
31
|
--fk-text-lg: 1.125rem;
|
|
18
32
|
--fk-text-lg--line-height: calc(1.75 / 1.125);
|
|
33
|
+
--fk-text-xl: 1.25rem;
|
|
34
|
+
--fk-text-xl--line-height: calc(1.75 / 1.25);
|
|
19
35
|
--fk-text-2xl: 1.5rem;
|
|
20
36
|
--fk-text-2xl--line-height: calc(2 / 1.5);
|
|
21
37
|
--fk-font-weight-light: 300;
|
|
@@ -189,9 +205,15 @@
|
|
|
189
205
|
.fk\:top-0 {
|
|
190
206
|
top: calc(var(--fk-spacing) * 0);
|
|
191
207
|
}
|
|
208
|
+
.fk\:top-4 {
|
|
209
|
+
top: calc(var(--fk-spacing) * 4);
|
|
210
|
+
}
|
|
192
211
|
.fk\:left-0 {
|
|
193
212
|
left: calc(var(--fk-spacing) * 0);
|
|
194
213
|
}
|
|
214
|
+
.fk\:left-\[5px\] {
|
|
215
|
+
left: 5px;
|
|
216
|
+
}
|
|
195
217
|
.fk\:z-50 {
|
|
196
218
|
z-index: 50;
|
|
197
219
|
}
|
|
@@ -213,6 +235,9 @@
|
|
|
213
235
|
.fk\:mt-2 {
|
|
214
236
|
margin-top: calc(var(--fk-spacing) * 2);
|
|
215
237
|
}
|
|
238
|
+
.fk\:mt-3 {
|
|
239
|
+
margin-top: calc(var(--fk-spacing) * 3);
|
|
240
|
+
}
|
|
216
241
|
.fk\:mt-4 {
|
|
217
242
|
margin-top: calc(var(--fk-spacing) * 4);
|
|
218
243
|
}
|
|
@@ -261,9 +286,16 @@
|
|
|
261
286
|
width: calc(var(--fk-spacing) * 4);
|
|
262
287
|
height: calc(var(--fk-spacing) * 4);
|
|
263
288
|
}
|
|
289
|
+
.fk\:size-\[11px\] {
|
|
290
|
+
width: 11px;
|
|
291
|
+
height: 11px;
|
|
292
|
+
}
|
|
264
293
|
.fk\:h-0 {
|
|
265
294
|
height: calc(var(--fk-spacing) * 0);
|
|
266
295
|
}
|
|
296
|
+
.fk\:h-2 {
|
|
297
|
+
height: calc(var(--fk-spacing) * 2);
|
|
298
|
+
}
|
|
267
299
|
.fk\:h-4 {
|
|
268
300
|
height: calc(var(--fk-spacing) * 4);
|
|
269
301
|
}
|
|
@@ -276,6 +308,9 @@
|
|
|
276
308
|
.fk\:h-10 {
|
|
277
309
|
height: calc(var(--fk-spacing) * 10);
|
|
278
310
|
}
|
|
311
|
+
.fk\:h-40 {
|
|
312
|
+
height: calc(var(--fk-spacing) * 40);
|
|
313
|
+
}
|
|
279
314
|
.fk\:h-\[19px\] {
|
|
280
315
|
height: 19px;
|
|
281
316
|
}
|
|
@@ -327,6 +362,9 @@
|
|
|
327
362
|
.fk\:w-full {
|
|
328
363
|
width: 100%;
|
|
329
364
|
}
|
|
365
|
+
.fk\:w-px {
|
|
366
|
+
width: 1px;
|
|
367
|
+
}
|
|
330
368
|
.fk\:max-w-3xl {
|
|
331
369
|
max-width: var(--fk-container-3xl);
|
|
332
370
|
}
|
|
@@ -348,9 +386,15 @@
|
|
|
348
386
|
.fk\:max-w-full {
|
|
349
387
|
max-width: 100%;
|
|
350
388
|
}
|
|
389
|
+
.fk\:max-w-lg {
|
|
390
|
+
max-width: var(--fk-container-lg);
|
|
391
|
+
}
|
|
351
392
|
.fk\:max-w-md {
|
|
352
393
|
max-width: var(--fk-container-md);
|
|
353
394
|
}
|
|
395
|
+
.fk\:max-w-sm {
|
|
396
|
+
max-width: var(--fk-container-sm);
|
|
397
|
+
}
|
|
354
398
|
.fk\:min-w-0 {
|
|
355
399
|
min-width: calc(var(--fk-spacing) * 0);
|
|
356
400
|
}
|
|
@@ -360,24 +404,64 @@
|
|
|
360
404
|
.fk\:shrink-0 {
|
|
361
405
|
flex-shrink: 0;
|
|
362
406
|
}
|
|
407
|
+
.fk\:translate-y-0\.5 {
|
|
408
|
+
--tw-translate-y: calc(var(--fk-spacing) * 0.5);
|
|
409
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
410
|
+
}
|
|
363
411
|
.fk\:animate-spin {
|
|
364
412
|
animation: var(--fk-animate-spin);
|
|
365
413
|
}
|
|
366
414
|
.fk\:cursor-pointer {
|
|
367
415
|
cursor: pointer;
|
|
368
416
|
}
|
|
417
|
+
.fk\:list-none {
|
|
418
|
+
list-style-type: none;
|
|
419
|
+
}
|
|
420
|
+
.fk\:grid-cols-1 {
|
|
421
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
422
|
+
}
|
|
423
|
+
.fk\:grid-cols-2 {
|
|
424
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
425
|
+
}
|
|
426
|
+
.fk\:grid-cols-3 {
|
|
427
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
428
|
+
}
|
|
429
|
+
.fk\:grid-cols-4 {
|
|
430
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
431
|
+
}
|
|
432
|
+
.fk\:grid-cols-5 {
|
|
433
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
434
|
+
}
|
|
435
|
+
.fk\:grid-cols-6 {
|
|
436
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
437
|
+
}
|
|
369
438
|
.fk\:flex-col {
|
|
370
439
|
flex-direction: column;
|
|
371
440
|
}
|
|
441
|
+
.fk\:flex-row {
|
|
442
|
+
flex-direction: row;
|
|
443
|
+
}
|
|
372
444
|
.fk\:flex-wrap {
|
|
373
445
|
flex-wrap: wrap;
|
|
374
446
|
}
|
|
447
|
+
.fk\:items-baseline {
|
|
448
|
+
align-items: baseline;
|
|
449
|
+
}
|
|
375
450
|
.fk\:items-center {
|
|
376
451
|
align-items: center;
|
|
377
452
|
}
|
|
453
|
+
.fk\:items-end {
|
|
454
|
+
align-items: flex-end;
|
|
455
|
+
}
|
|
378
456
|
.fk\:items-start {
|
|
379
457
|
align-items: flex-start;
|
|
380
458
|
}
|
|
459
|
+
.fk\:items-stretch {
|
|
460
|
+
align-items: stretch;
|
|
461
|
+
}
|
|
462
|
+
.fk\:justify-around {
|
|
463
|
+
justify-content: space-around;
|
|
464
|
+
}
|
|
381
465
|
.fk\:justify-between {
|
|
382
466
|
justify-content: space-between;
|
|
383
467
|
}
|
|
@@ -390,6 +474,9 @@
|
|
|
390
474
|
.fk\:justify-start {
|
|
391
475
|
justify-content: flex-start;
|
|
392
476
|
}
|
|
477
|
+
.fk\:gap-0 {
|
|
478
|
+
gap: calc(var(--fk-spacing) * 0);
|
|
479
|
+
}
|
|
393
480
|
.fk\:gap-1 {
|
|
394
481
|
gap: calc(var(--fk-spacing) * 1);
|
|
395
482
|
}
|
|
@@ -402,6 +489,9 @@
|
|
|
402
489
|
.fk\:gap-3 {
|
|
403
490
|
gap: calc(var(--fk-spacing) * 3);
|
|
404
491
|
}
|
|
492
|
+
.fk\:gap-4 {
|
|
493
|
+
gap: calc(var(--fk-spacing) * 4);
|
|
494
|
+
}
|
|
405
495
|
.fk\:gap-6 {
|
|
406
496
|
gap: calc(var(--fk-spacing) * 6);
|
|
407
497
|
}
|
|
@@ -461,6 +551,23 @@
|
|
|
461
551
|
margin-block-end: calc(calc(var(--fk-spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
|
|
462
552
|
}
|
|
463
553
|
}
|
|
554
|
+
.fk\:gap-x-2 {
|
|
555
|
+
column-gap: calc(var(--fk-spacing) * 2);
|
|
556
|
+
}
|
|
557
|
+
.fk\:divide-y {
|
|
558
|
+
:where(& > :not(:last-child)) {
|
|
559
|
+
--tw-divide-y-reverse: 0;
|
|
560
|
+
border-bottom-style: var(--tw-border-style);
|
|
561
|
+
border-top-style: var(--tw-border-style);
|
|
562
|
+
border-top-width: calc(1px * var(--tw-divide-y-reverse));
|
|
563
|
+
border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
564
|
+
}
|
|
565
|
+
}
|
|
566
|
+
.fk\:divide-border {
|
|
567
|
+
:where(& > :not(:last-child)) {
|
|
568
|
+
border-color: hsl(var(--border));
|
|
569
|
+
}
|
|
570
|
+
}
|
|
464
571
|
.fk\:truncate {
|
|
465
572
|
overflow: hidden;
|
|
466
573
|
text-overflow: ellipsis;
|
|
@@ -475,6 +582,12 @@
|
|
|
475
582
|
.fk\:overflow-x-auto {
|
|
476
583
|
overflow-x: auto;
|
|
477
584
|
}
|
|
585
|
+
.fk\:rounded {
|
|
586
|
+
border-radius: 0.25rem;
|
|
587
|
+
}
|
|
588
|
+
.fk\:rounded-full {
|
|
589
|
+
border-radius: calc(infinity * 1px);
|
|
590
|
+
}
|
|
478
591
|
.fk\:rounded-lg {
|
|
479
592
|
border-radius: var(--radius);
|
|
480
593
|
}
|
|
@@ -514,6 +627,10 @@
|
|
|
514
627
|
border-style: var(--tw-border-style);
|
|
515
628
|
border-width: 0px;
|
|
516
629
|
}
|
|
630
|
+
.fk\:border-2 {
|
|
631
|
+
border-style: var(--tw-border-style);
|
|
632
|
+
border-width: 2px;
|
|
633
|
+
}
|
|
517
634
|
.fk\:border-x {
|
|
518
635
|
border-inline-style: var(--tw-border-style);
|
|
519
636
|
border-inline-width: 1px;
|
|
@@ -540,6 +657,12 @@
|
|
|
540
657
|
border-color: color-mix(in oklab, var(--fk-color-amber-500) 30%, transparent);
|
|
541
658
|
}
|
|
542
659
|
}
|
|
660
|
+
.fk\:border-blue-500\/30 {
|
|
661
|
+
border-color: var(--fk-color-blue-500);
|
|
662
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
663
|
+
border-color: color-mix(in oklab, var(--fk-color-blue-500) 30%, transparent);
|
|
664
|
+
}
|
|
665
|
+
}
|
|
543
666
|
.fk\:border-border {
|
|
544
667
|
border-color: hsl(var(--border));
|
|
545
668
|
}
|
|
@@ -552,6 +675,18 @@
|
|
|
552
675
|
border-color: color-mix(in oklab, hsl(var(--destructive)) 30%, transparent);
|
|
553
676
|
}
|
|
554
677
|
}
|
|
678
|
+
.fk\:border-destructive\/50 {
|
|
679
|
+
border-color: hsl(var(--destructive));
|
|
680
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
681
|
+
border-color: color-mix(in oklab, hsl(var(--destructive)) 50%, transparent);
|
|
682
|
+
}
|
|
683
|
+
}
|
|
684
|
+
.fk\:border-emerald-500\/30 {
|
|
685
|
+
border-color: var(--fk-color-emerald-500);
|
|
686
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
687
|
+
border-color: color-mix(in oklab, var(--fk-color-emerald-500) 30%, transparent);
|
|
688
|
+
}
|
|
689
|
+
}
|
|
555
690
|
.fk\:border-green-700\/40 {
|
|
556
691
|
border-color: var(--fk-color-green-700);
|
|
557
692
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -561,12 +696,24 @@
|
|
|
561
696
|
.fk\:border-input {
|
|
562
697
|
border-color: hsl(var(--input));
|
|
563
698
|
}
|
|
699
|
+
.fk\:border-primary {
|
|
700
|
+
border-color: hsl(var(--primary));
|
|
701
|
+
}
|
|
702
|
+
.fk\:border-red-500\/30 {
|
|
703
|
+
border-color: var(--fk-color-red-500);
|
|
704
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
705
|
+
border-color: color-mix(in oklab, var(--fk-color-red-500) 30%, transparent);
|
|
706
|
+
}
|
|
707
|
+
}
|
|
564
708
|
.fk\:border-red-700\/40 {
|
|
565
709
|
border-color: var(--fk-color-red-700);
|
|
566
710
|
@supports (color: color-mix(in lab, red, red)) {
|
|
567
711
|
border-color: color-mix(in oklab, var(--fk-color-red-700) 40%, transparent);
|
|
568
712
|
}
|
|
569
713
|
}
|
|
714
|
+
.fk\:border-success {
|
|
715
|
+
border-color: hsl(var(--success));
|
|
716
|
+
}
|
|
570
717
|
.fk\:border-transparent {
|
|
571
718
|
border-color: transparent;
|
|
572
719
|
}
|
|
@@ -588,12 +735,30 @@
|
|
|
588
735
|
background-color: color-mix(in oklab, hsl(var(--background)) 90%, transparent);
|
|
589
736
|
}
|
|
590
737
|
}
|
|
738
|
+
.fk\:bg-blue-500\/5 {
|
|
739
|
+
background-color: var(--fk-color-blue-500);
|
|
740
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
741
|
+
background-color: color-mix(in oklab, var(--fk-color-blue-500) 5%, transparent);
|
|
742
|
+
}
|
|
743
|
+
}
|
|
744
|
+
.fk\:bg-border {
|
|
745
|
+
background-color: hsl(var(--border));
|
|
746
|
+
}
|
|
747
|
+
.fk\:bg-card {
|
|
748
|
+
background-color: hsl(var(--card));
|
|
749
|
+
}
|
|
591
750
|
.fk\:bg-destructive\/5 {
|
|
592
751
|
background-color: hsl(var(--destructive));
|
|
593
752
|
@supports (color: color-mix(in lab, red, red)) {
|
|
594
753
|
background-color: color-mix(in oklab, hsl(var(--destructive)) 5%, transparent);
|
|
595
754
|
}
|
|
596
755
|
}
|
|
756
|
+
.fk\:bg-emerald-500\/5 {
|
|
757
|
+
background-color: var(--fk-color-emerald-500);
|
|
758
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
759
|
+
background-color: color-mix(in oklab, var(--fk-color-emerald-500) 5%, transparent);
|
|
760
|
+
}
|
|
761
|
+
}
|
|
597
762
|
.fk\:bg-muted {
|
|
598
763
|
background-color: hsl(var(--muted));
|
|
599
764
|
}
|
|
@@ -612,9 +777,21 @@
|
|
|
612
777
|
.fk\:bg-popover {
|
|
613
778
|
background-color: hsl(var(--popover));
|
|
614
779
|
}
|
|
780
|
+
.fk\:bg-primary {
|
|
781
|
+
background-color: hsl(var(--primary));
|
|
782
|
+
}
|
|
783
|
+
.fk\:bg-red-500\/5 {
|
|
784
|
+
background-color: var(--fk-color-red-500);
|
|
785
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
786
|
+
background-color: color-mix(in oklab, var(--fk-color-red-500) 5%, transparent);
|
|
787
|
+
}
|
|
788
|
+
}
|
|
615
789
|
.fk\:bg-secondary {
|
|
616
790
|
background-color: hsl(var(--secondary));
|
|
617
791
|
}
|
|
792
|
+
.fk\:bg-success {
|
|
793
|
+
background-color: hsl(var(--success));
|
|
794
|
+
}
|
|
618
795
|
.fk\:bg-success\/20 {
|
|
619
796
|
background-color: hsl(var(--success));
|
|
620
797
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -669,6 +846,9 @@
|
|
|
669
846
|
.fk\:py-0 {
|
|
670
847
|
padding-block: calc(var(--fk-spacing) * 0);
|
|
671
848
|
}
|
|
849
|
+
.fk\:py-0\.5 {
|
|
850
|
+
padding-block: calc(var(--fk-spacing) * 0.5);
|
|
851
|
+
}
|
|
672
852
|
.fk\:py-1 {
|
|
673
853
|
padding-block: calc(var(--fk-spacing) * 1);
|
|
674
854
|
}
|
|
@@ -696,6 +876,9 @@
|
|
|
696
876
|
.fk\:pb-0\.5 {
|
|
697
877
|
padding-bottom: calc(var(--fk-spacing) * 0.5);
|
|
698
878
|
}
|
|
879
|
+
.fk\:pb-4 {
|
|
880
|
+
padding-bottom: calc(var(--fk-spacing) * 4);
|
|
881
|
+
}
|
|
699
882
|
.fk\:pb-6 {
|
|
700
883
|
padding-bottom: calc(var(--fk-spacing) * 6);
|
|
701
884
|
}
|
|
@@ -724,6 +907,10 @@
|
|
|
724
907
|
font-size: var(--fk-text-2xl);
|
|
725
908
|
line-height: var(--tw-leading, var(--fk-text-2xl--line-height));
|
|
726
909
|
}
|
|
910
|
+
.fk\:text-base {
|
|
911
|
+
font-size: var(--fk-text-base);
|
|
912
|
+
line-height: var(--tw-leading, var(--fk-text-base--line-height));
|
|
913
|
+
}
|
|
727
914
|
.fk\:text-lg {
|
|
728
915
|
font-size: var(--fk-text-lg);
|
|
729
916
|
line-height: var(--tw-leading, var(--fk-text-lg--line-height));
|
|
@@ -732,6 +919,10 @@
|
|
|
732
919
|
font-size: var(--fk-text-sm);
|
|
733
920
|
line-height: var(--tw-leading, var(--fk-text-sm--line-height));
|
|
734
921
|
}
|
|
922
|
+
.fk\:text-xl {
|
|
923
|
+
font-size: var(--fk-text-xl);
|
|
924
|
+
line-height: var(--tw-leading, var(--fk-text-xl--line-height));
|
|
925
|
+
}
|
|
735
926
|
.fk\:text-xs {
|
|
736
927
|
font-size: var(--fk-text-xs);
|
|
737
928
|
line-height: var(--tw-leading, var(--fk-text-xs--line-height));
|
|
@@ -784,9 +975,21 @@
|
|
|
784
975
|
.fk\:whitespace-pre-wrap {
|
|
785
976
|
white-space: pre-wrap;
|
|
786
977
|
}
|
|
978
|
+
.fk\:text-amber-700 {
|
|
979
|
+
color: var(--fk-color-amber-700);
|
|
980
|
+
}
|
|
981
|
+
.fk\:text-blue-700 {
|
|
982
|
+
color: var(--fk-color-blue-700);
|
|
983
|
+
}
|
|
787
984
|
.fk\:text-destructive {
|
|
788
985
|
color: hsl(var(--destructive));
|
|
789
986
|
}
|
|
987
|
+
.fk\:text-emerald-700 {
|
|
988
|
+
color: var(--fk-color-emerald-700);
|
|
989
|
+
}
|
|
990
|
+
.fk\:text-foreground {
|
|
991
|
+
color: hsl(var(--foreground));
|
|
992
|
+
}
|
|
790
993
|
.fk\:text-green-700 {
|
|
791
994
|
color: var(--fk-color-green-700);
|
|
792
995
|
}
|
|
@@ -814,6 +1017,10 @@
|
|
|
814
1017
|
.fk\:capitalize {
|
|
815
1018
|
text-transform: capitalize;
|
|
816
1019
|
}
|
|
1020
|
+
.fk\:tabular-nums {
|
|
1021
|
+
--tw-numeric-spacing: tabular-nums;
|
|
1022
|
+
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
1023
|
+
}
|
|
817
1024
|
.fk\:opacity-0 {
|
|
818
1025
|
opacity: 0%;
|
|
819
1026
|
}
|
|
@@ -848,6 +1055,11 @@
|
|
|
848
1055
|
}
|
|
849
1056
|
}
|
|
850
1057
|
}
|
|
1058
|
+
.fk\:last\:pb-0 {
|
|
1059
|
+
&:last-child {
|
|
1060
|
+
padding-bottom: calc(var(--fk-spacing) * 0);
|
|
1061
|
+
}
|
|
1062
|
+
}
|
|
851
1063
|
.fk\:hover\:bg-muted {
|
|
852
1064
|
&:hover {
|
|
853
1065
|
@media (hover: hover) {
|
|
@@ -873,6 +1085,26 @@
|
|
|
873
1085
|
background-color: transparent;
|
|
874
1086
|
}
|
|
875
1087
|
}
|
|
1088
|
+
.fk\:dark\:text-amber-400 {
|
|
1089
|
+
&:is(.dark *) {
|
|
1090
|
+
color: var(--fk-color-amber-400);
|
|
1091
|
+
}
|
|
1092
|
+
}
|
|
1093
|
+
.fk\:dark\:text-blue-400 {
|
|
1094
|
+
&:is(.dark *) {
|
|
1095
|
+
color: var(--fk-color-blue-400);
|
|
1096
|
+
}
|
|
1097
|
+
}
|
|
1098
|
+
.fk\:dark\:text-emerald-400 {
|
|
1099
|
+
&:is(.dark *) {
|
|
1100
|
+
color: var(--fk-color-emerald-400);
|
|
1101
|
+
}
|
|
1102
|
+
}
|
|
1103
|
+
.fk\:dark\:text-red-400 {
|
|
1104
|
+
&:is(.dark *) {
|
|
1105
|
+
color: var(--fk-color-red-400);
|
|
1106
|
+
}
|
|
1107
|
+
}
|
|
876
1108
|
}
|
|
877
1109
|
html, body {
|
|
878
1110
|
height: 100%;
|
|
@@ -889,11 +1121,31 @@ html, body {
|
|
|
889
1121
|
transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
|
|
890
1122
|
}
|
|
891
1123
|
}
|
|
1124
|
+
@property --tw-translate-x {
|
|
1125
|
+
syntax: "*";
|
|
1126
|
+
inherits: false;
|
|
1127
|
+
initial-value: 0;
|
|
1128
|
+
}
|
|
1129
|
+
@property --tw-translate-y {
|
|
1130
|
+
syntax: "*";
|
|
1131
|
+
inherits: false;
|
|
1132
|
+
initial-value: 0;
|
|
1133
|
+
}
|
|
1134
|
+
@property --tw-translate-z {
|
|
1135
|
+
syntax: "*";
|
|
1136
|
+
inherits: false;
|
|
1137
|
+
initial-value: 0;
|
|
1138
|
+
}
|
|
892
1139
|
@property --tw-space-y-reverse {
|
|
893
1140
|
syntax: "*";
|
|
894
1141
|
inherits: false;
|
|
895
1142
|
initial-value: 0;
|
|
896
1143
|
}
|
|
1144
|
+
@property --tw-divide-y-reverse {
|
|
1145
|
+
syntax: "*";
|
|
1146
|
+
inherits: false;
|
|
1147
|
+
initial-value: 0;
|
|
1148
|
+
}
|
|
897
1149
|
@property --tw-border-style {
|
|
898
1150
|
syntax: "*";
|
|
899
1151
|
inherits: false;
|
|
@@ -911,6 +1163,26 @@ html, body {
|
|
|
911
1163
|
syntax: "*";
|
|
912
1164
|
inherits: false;
|
|
913
1165
|
}
|
|
1166
|
+
@property --tw-ordinal {
|
|
1167
|
+
syntax: "*";
|
|
1168
|
+
inherits: false;
|
|
1169
|
+
}
|
|
1170
|
+
@property --tw-slashed-zero {
|
|
1171
|
+
syntax: "*";
|
|
1172
|
+
inherits: false;
|
|
1173
|
+
}
|
|
1174
|
+
@property --tw-numeric-figure {
|
|
1175
|
+
syntax: "*";
|
|
1176
|
+
inherits: false;
|
|
1177
|
+
}
|
|
1178
|
+
@property --tw-numeric-spacing {
|
|
1179
|
+
syntax: "*";
|
|
1180
|
+
inherits: false;
|
|
1181
|
+
}
|
|
1182
|
+
@property --tw-numeric-fraction {
|
|
1183
|
+
syntax: "*";
|
|
1184
|
+
inherits: false;
|
|
1185
|
+
}
|
|
914
1186
|
@property --tw-shadow {
|
|
915
1187
|
syntax: "*";
|
|
916
1188
|
inherits: false;
|
|
@@ -984,11 +1256,20 @@ html, body {
|
|
|
984
1256
|
@layer properties {
|
|
985
1257
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
986
1258
|
*, ::before, ::after, ::backdrop {
|
|
1259
|
+
--tw-translate-x: 0;
|
|
1260
|
+
--tw-translate-y: 0;
|
|
1261
|
+
--tw-translate-z: 0;
|
|
987
1262
|
--tw-space-y-reverse: 0;
|
|
1263
|
+
--tw-divide-y-reverse: 0;
|
|
988
1264
|
--tw-border-style: solid;
|
|
989
1265
|
--tw-leading: initial;
|
|
990
1266
|
--tw-font-weight: initial;
|
|
991
1267
|
--tw-tracking: initial;
|
|
1268
|
+
--tw-ordinal: initial;
|
|
1269
|
+
--tw-slashed-zero: initial;
|
|
1270
|
+
--tw-numeric-figure: initial;
|
|
1271
|
+
--tw-numeric-spacing: initial;
|
|
1272
|
+
--tw-numeric-fraction: initial;
|
|
992
1273
|
--tw-shadow: 0 0 #0000;
|
|
993
1274
|
--tw-shadow-color: initial;
|
|
994
1275
|
--tw-shadow-alpha: 100%;
|