@thangph2146/nextjs-editor 1.0.9 → 1.0.10
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/README.md +3 -21
- package/dist/editor-utilities-raw.css +1 -10
- package/dist/editor-utilities-scoped.css +1 -10
- package/dist/index.cjs +23 -50
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +23 -50
- package/dist/index.js.map +1 -1
- package/dist/styles.css +797 -851
- package/package.json +89 -90
package/dist/styles.css
CHANGED
|
@@ -1,37 +1,4 @@
|
|
|
1
|
-
/*
|
|
2
|
-
@layer nextjs-editor {
|
|
3
|
-
/* Fallback CSS variables cho #editor-x khi app chưa định nghĩa */
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Fallback CSS variables cho #editor-x khi app chưa định nghĩa (vd. playground).
|
|
7
|
-
* App có :root { --background, ... } sẽ kế thừa; không có thì dùng giá trị dưới đây.
|
|
8
|
-
*/
|
|
9
|
-
#editor-x {
|
|
10
|
-
--background: var(--background, #ffffff);
|
|
11
|
-
--foreground: var(--foreground, #0a0a0a);
|
|
12
|
-
--primary: var(--primary, #171717);
|
|
13
|
-
--primary-foreground: var(--primary-foreground, #fafafa);
|
|
14
|
-
--muted: var(--muted, #f5f5f5);
|
|
15
|
-
--muted-foreground: var(--muted-foreground, #737373);
|
|
16
|
-
--accent: var(--accent, #f5f5f5);
|
|
17
|
-
--accent-foreground: var(--accent-foreground, #171717);
|
|
18
|
-
--border: var(--border, #e5e5e5);
|
|
19
|
-
--ring: var(--ring, #171717);
|
|
20
|
-
--destructive: var(--destructive, #ef4444);
|
|
21
|
-
--destructive-foreground: var(--destructive-foreground, #fafafa);
|
|
22
|
-
--card: var(--card, #ffffff);
|
|
23
|
-
--card-foreground: var(--card-foreground, #0a0a0a);
|
|
24
|
-
--popover: var(--popover, #ffffff);
|
|
25
|
-
--popover-foreground: var(--popover-foreground, #0a0a0a);
|
|
26
|
-
--input: var(--input, #e5e5e5);
|
|
27
|
-
--secondary: var(--secondary, #f5f5f5);
|
|
28
|
-
--secondary-foreground: var(--secondary-foreground, #171717);
|
|
29
|
-
--ring-offset: var(--ring-offset, #ffffff);
|
|
30
|
-
--radius: var(--radius, 0.5rem);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
/* nextjs-editor: theme + scoped utilities */
|
|
1
|
+
/* nextjs-editor: theme + scoped utilities (unlayered). Xem README. */
|
|
35
2
|
|
|
36
3
|
.EditorTheme__code {
|
|
37
4
|
background-color: transparent;
|
|
@@ -426,10 +393,7 @@ div.border.border-dashed .editor-image img {
|
|
|
426
393
|
/* Scoped Tailwind utilities cho #editor-x */
|
|
427
394
|
|
|
428
395
|
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
|
|
429
|
-
|
|
430
|
-
@layer theme, base, components, utilities;
|
|
431
|
-
@layer theme {
|
|
432
|
-
#editor-x, #editor-x :host {
|
|
396
|
+
#editor-x, #editor-x :host {
|
|
433
397
|
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
434
398
|
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
435
399
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
@@ -498,15 +462,13 @@ div.border.border-dashed .editor-image img {
|
|
|
498
462
|
--default-mono-font-family: var(--font-mono);
|
|
499
463
|
--radius: var(--radius, 0.5rem);
|
|
500
464
|
}
|
|
501
|
-
|
|
502
|
-
@layer base {
|
|
503
|
-
#editor-x *, #editor-x ::after, #editor-x ::before, #editor-x ::backdrop, #editor-x ::file-selector-button {
|
|
465
|
+
#editor-x *, #editor-x ::after, #editor-x ::before, #editor-x ::backdrop, #editor-x ::file-selector-button {
|
|
504
466
|
box-sizing: border-box;
|
|
505
467
|
margin: 0;
|
|
506
468
|
padding: 0;
|
|
507
469
|
border: 0 solid;
|
|
508
470
|
}
|
|
509
|
-
|
|
471
|
+
#editor-x html, #editor-x :host {
|
|
510
472
|
line-height: 1.5;
|
|
511
473
|
-webkit-text-size-adjust: 100%;
|
|
512
474
|
tab-size: 4;
|
|
@@ -515,74 +477,74 @@ div.border.border-dashed .editor-image img {
|
|
|
515
477
|
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
516
478
|
-webkit-tap-highlight-color: transparent;
|
|
517
479
|
}
|
|
518
|
-
|
|
480
|
+
#editor-x hr {
|
|
519
481
|
height: 0;
|
|
520
482
|
color: inherit;
|
|
521
483
|
border-top-width: 1px;
|
|
522
484
|
}
|
|
523
|
-
|
|
485
|
+
#editor-x abbr:where([title]) {
|
|
524
486
|
-webkit-text-decoration: underline dotted;
|
|
525
487
|
text-decoration: underline dotted;
|
|
526
488
|
}
|
|
527
|
-
|
|
489
|
+
#editor-x h1, #editor-x h2, #editor-x h3, #editor-x h4, #editor-x h5, #editor-x h6 {
|
|
528
490
|
font-size: inherit;
|
|
529
491
|
font-weight: inherit;
|
|
530
492
|
}
|
|
531
|
-
|
|
493
|
+
#editor-x a {
|
|
532
494
|
color: inherit;
|
|
533
495
|
-webkit-text-decoration: inherit;
|
|
534
496
|
text-decoration: inherit;
|
|
535
497
|
}
|
|
536
|
-
|
|
498
|
+
#editor-x b, #editor-x strong {
|
|
537
499
|
font-weight: bolder;
|
|
538
500
|
}
|
|
539
|
-
|
|
501
|
+
#editor-x code, #editor-x kbd, #editor-x samp, #editor-x pre {
|
|
540
502
|
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
541
503
|
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
542
504
|
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
543
505
|
font-size: 1em;
|
|
544
506
|
}
|
|
545
|
-
|
|
507
|
+
#editor-x small {
|
|
546
508
|
font-size: 80%;
|
|
547
509
|
}
|
|
548
|
-
|
|
510
|
+
#editor-x sub, #editor-x sup {
|
|
549
511
|
font-size: 75%;
|
|
550
512
|
line-height: 0;
|
|
551
513
|
position: relative;
|
|
552
514
|
vertical-align: baseline;
|
|
553
515
|
}
|
|
554
|
-
|
|
516
|
+
#editor-x sub {
|
|
555
517
|
bottom: -0.25em;
|
|
556
518
|
}
|
|
557
|
-
|
|
519
|
+
#editor-x sup {
|
|
558
520
|
top: -0.5em;
|
|
559
521
|
}
|
|
560
|
-
|
|
522
|
+
#editor-x table {
|
|
561
523
|
text-indent: 0;
|
|
562
524
|
border-color: inherit;
|
|
563
525
|
border-collapse: collapse;
|
|
564
526
|
}
|
|
565
|
-
|
|
527
|
+
#editor-x :-moz-focusring {
|
|
566
528
|
outline: auto;
|
|
567
529
|
}
|
|
568
|
-
|
|
530
|
+
#editor-x progress {
|
|
569
531
|
vertical-align: baseline;
|
|
570
532
|
}
|
|
571
|
-
|
|
533
|
+
#editor-x summary {
|
|
572
534
|
display: list-item;
|
|
573
535
|
}
|
|
574
|
-
|
|
536
|
+
#editor-x ol, #editor-x ul, #editor-x menu {
|
|
575
537
|
list-style: none;
|
|
576
538
|
}
|
|
577
|
-
|
|
539
|
+
#editor-x img, #editor-x svg, #editor-x video, #editor-x canvas, #editor-x audio, #editor-x iframe, #editor-x embed, #editor-x object {
|
|
578
540
|
display: block;
|
|
579
541
|
vertical-align: middle;
|
|
580
542
|
}
|
|
581
|
-
|
|
543
|
+
#editor-x img, #editor-x video {
|
|
582
544
|
max-width: 100%;
|
|
583
545
|
height: auto;
|
|
584
546
|
}
|
|
585
|
-
|
|
547
|
+
#editor-x button, #editor-x input, #editor-x select, #editor-x optgroup, #editor-x textarea, #editor-x ::file-selector-button {
|
|
586
548
|
font: inherit;
|
|
587
549
|
font-feature-settings: inherit;
|
|
588
550
|
font-variation-settings: inherit;
|
|
@@ -592,19 +554,19 @@ div.border.border-dashed .editor-image img {
|
|
|
592
554
|
background-color: transparent;
|
|
593
555
|
opacity: 1;
|
|
594
556
|
}
|
|
595
|
-
|
|
557
|
+
#editor-x :where(select:is([multiple], [size])) optgroup {
|
|
596
558
|
font-weight: bolder;
|
|
597
559
|
}
|
|
598
|
-
|
|
560
|
+
#editor-x :where(select:is([multiple], [size])) optgroup option {
|
|
599
561
|
padding-inline-start: 20px;
|
|
600
562
|
}
|
|
601
|
-
|
|
563
|
+
#editor-x ::file-selector-button {
|
|
602
564
|
margin-inline-end: 4px;
|
|
603
565
|
}
|
|
604
|
-
|
|
566
|
+
#editor-x ::placeholder {
|
|
605
567
|
opacity: 1;
|
|
606
568
|
}
|
|
607
|
-
|
|
569
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
608
570
|
#editor-x ::placeholder {
|
|
609
571
|
color: currentcolor;
|
|
610
572
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -612,52 +574,50 @@ div.border.border-dashed .editor-image img {
|
|
|
612
574
|
}
|
|
613
575
|
}
|
|
614
576
|
}
|
|
615
|
-
|
|
577
|
+
#editor-x textarea {
|
|
616
578
|
resize: vertical;
|
|
617
579
|
}
|
|
618
|
-
|
|
580
|
+
#editor-x ::-webkit-search-decoration {
|
|
619
581
|
-webkit-appearance: none;
|
|
620
582
|
}
|
|
621
|
-
|
|
583
|
+
#editor-x ::-webkit-date-and-time-value {
|
|
622
584
|
min-height: 1lh;
|
|
623
585
|
text-align: inherit;
|
|
624
586
|
}
|
|
625
|
-
|
|
587
|
+
#editor-x ::-webkit-datetime-edit {
|
|
626
588
|
display: inline-flex;
|
|
627
589
|
}
|
|
628
|
-
|
|
590
|
+
#editor-x ::-webkit-datetime-edit-fields-wrapper {
|
|
629
591
|
padding: 0;
|
|
630
592
|
}
|
|
631
|
-
|
|
593
|
+
#editor-x ::-webkit-datetime-edit, #editor-x ::-webkit-datetime-edit-year-field, #editor-x ::-webkit-datetime-edit-month-field, #editor-x ::-webkit-datetime-edit-day-field, #editor-x ::-webkit-datetime-edit-hour-field, #editor-x ::-webkit-datetime-edit-minute-field, #editor-x ::-webkit-datetime-edit-second-field, #editor-x ::-webkit-datetime-edit-millisecond-field, #editor-x ::-webkit-datetime-edit-meridiem-field {
|
|
632
594
|
padding-block: 0;
|
|
633
595
|
}
|
|
634
|
-
|
|
596
|
+
#editor-x ::-webkit-calendar-picker-indicator {
|
|
635
597
|
line-height: 1;
|
|
636
598
|
}
|
|
637
|
-
|
|
599
|
+
#editor-x :-moz-ui-invalid {
|
|
638
600
|
box-shadow: none;
|
|
639
601
|
}
|
|
640
|
-
|
|
602
|
+
#editor-x button, #editor-x input:where([type="button"], [type="reset"], [type="submit"]), #editor-x ::file-selector-button {
|
|
641
603
|
appearance: button;
|
|
642
604
|
}
|
|
643
|
-
|
|
605
|
+
#editor-x ::-webkit-inner-spin-button, #editor-x ::-webkit-outer-spin-button {
|
|
644
606
|
height: auto;
|
|
645
607
|
}
|
|
646
|
-
|
|
608
|
+
#editor-x [hidden]:where(:not([hidden="until-found"])) {
|
|
647
609
|
display: none !important;
|
|
648
610
|
}
|
|
649
|
-
|
|
650
|
-
@layer utilities {
|
|
651
|
-
#editor-x .pointer-events-none {
|
|
611
|
+
#editor-x .pointer-events-none {
|
|
652
612
|
pointer-events: none;
|
|
653
613
|
}
|
|
654
|
-
|
|
614
|
+
#editor-x .invisible {
|
|
655
615
|
visibility: hidden;
|
|
656
616
|
}
|
|
657
|
-
|
|
617
|
+
#editor-x .visible {
|
|
658
618
|
visibility: visible;
|
|
659
619
|
}
|
|
660
|
-
|
|
620
|
+
#editor-x .sr-only {
|
|
661
621
|
position: absolute;
|
|
662
622
|
width: 1px;
|
|
663
623
|
height: 1px;
|
|
@@ -668,118 +628,118 @@ div.border.border-dashed .editor-image img {
|
|
|
668
628
|
white-space: nowrap;
|
|
669
629
|
border-width: 0;
|
|
670
630
|
}
|
|
671
|
-
|
|
631
|
+
#editor-x .absolute {
|
|
672
632
|
position: absolute;
|
|
673
633
|
}
|
|
674
|
-
|
|
634
|
+
#editor-x .fixed {
|
|
675
635
|
position: fixed;
|
|
676
636
|
}
|
|
677
|
-
|
|
637
|
+
#editor-x .relative {
|
|
678
638
|
position: relative;
|
|
679
639
|
}
|
|
680
|
-
|
|
640
|
+
#editor-x .static {
|
|
681
641
|
position: static;
|
|
682
642
|
}
|
|
683
|
-
|
|
643
|
+
#editor-x .sticky {
|
|
684
644
|
position: sticky;
|
|
685
645
|
}
|
|
686
|
-
|
|
646
|
+
#editor-x .inset-0 {
|
|
687
647
|
inset: calc(var(--spacing) * 0);
|
|
688
648
|
}
|
|
689
|
-
|
|
649
|
+
#editor-x .start {
|
|
690
650
|
inset-inline-start: var(--spacing);
|
|
691
651
|
}
|
|
692
|
-
|
|
652
|
+
#editor-x .end {
|
|
693
653
|
inset-inline-end: var(--spacing);
|
|
694
654
|
}
|
|
695
|
-
|
|
655
|
+
#editor-x .-top-2\.5 {
|
|
696
656
|
top: calc(var(--spacing) * -2.5);
|
|
697
657
|
}
|
|
698
|
-
|
|
658
|
+
#editor-x .-top-\[1px\] {
|
|
699
659
|
top: calc(1px * -1);
|
|
700
660
|
}
|
|
701
|
-
|
|
661
|
+
#editor-x .top-0 {
|
|
702
662
|
top: calc(var(--spacing) * 0);
|
|
703
663
|
}
|
|
704
|
-
|
|
664
|
+
#editor-x .top-1\.5 {
|
|
705
665
|
top: calc(var(--spacing) * 1.5);
|
|
706
666
|
}
|
|
707
|
-
|
|
667
|
+
#editor-x .top-1\/2 {
|
|
708
668
|
top: calc(1 / 2 * 100%);
|
|
709
669
|
}
|
|
710
|
-
|
|
670
|
+
#editor-x .top-2 {
|
|
711
671
|
top: calc(var(--spacing) * 2);
|
|
712
672
|
}
|
|
713
|
-
|
|
673
|
+
#editor-x .top-4 {
|
|
714
674
|
top: calc(var(--spacing) * 4);
|
|
715
675
|
}
|
|
716
|
-
|
|
676
|
+
#editor-x .top-\[50\%\] {
|
|
717
677
|
top: 50%;
|
|
718
678
|
}
|
|
719
|
-
|
|
679
|
+
#editor-x .-right-1 {
|
|
720
680
|
right: calc(var(--spacing) * -1);
|
|
721
681
|
}
|
|
722
|
-
|
|
682
|
+
#editor-x .-right-2\.5 {
|
|
723
683
|
right: calc(var(--spacing) * -2.5);
|
|
724
684
|
}
|
|
725
|
-
|
|
685
|
+
#editor-x .right-0 {
|
|
726
686
|
right: calc(var(--spacing) * 0);
|
|
727
687
|
}
|
|
728
|
-
|
|
688
|
+
#editor-x .right-1 {
|
|
729
689
|
right: calc(var(--spacing) * 1);
|
|
730
690
|
}
|
|
731
|
-
|
|
691
|
+
#editor-x .right-2 {
|
|
732
692
|
right: calc(var(--spacing) * 2);
|
|
733
693
|
}
|
|
734
|
-
|
|
694
|
+
#editor-x .right-4 {
|
|
735
695
|
right: calc(var(--spacing) * 4);
|
|
736
696
|
}
|
|
737
|
-
|
|
697
|
+
#editor-x .-bottom-2\.5 {
|
|
738
698
|
bottom: calc(var(--spacing) * -2.5);
|
|
739
699
|
}
|
|
740
|
-
|
|
700
|
+
#editor-x .bottom-0 {
|
|
741
701
|
bottom: calc(var(--spacing) * 0);
|
|
742
702
|
}
|
|
743
|
-
|
|
703
|
+
#editor-x .-left-2\.5 {
|
|
744
704
|
left: calc(var(--spacing) * -2.5);
|
|
745
705
|
}
|
|
746
|
-
|
|
706
|
+
#editor-x .-left-\[1px\] {
|
|
747
707
|
left: calc(1px * -1);
|
|
748
708
|
}
|
|
749
|
-
|
|
709
|
+
#editor-x .left-0 {
|
|
750
710
|
left: calc(var(--spacing) * 0);
|
|
751
711
|
}
|
|
752
|
-
|
|
712
|
+
#editor-x .left-1\/2 {
|
|
753
713
|
left: calc(1 / 2 * 100%);
|
|
754
714
|
}
|
|
755
|
-
|
|
715
|
+
#editor-x .left-6 {
|
|
756
716
|
left: calc(var(--spacing) * 6);
|
|
757
717
|
}
|
|
758
|
-
|
|
718
|
+
#editor-x .left-\[50\%\] {
|
|
759
719
|
left: 50%;
|
|
760
720
|
}
|
|
761
|
-
|
|
721
|
+
#editor-x .z-10 {
|
|
762
722
|
z-index: 10;
|
|
763
723
|
}
|
|
764
|
-
|
|
724
|
+
#editor-x .z-20 {
|
|
765
725
|
z-index: 20;
|
|
766
726
|
}
|
|
767
|
-
|
|
727
|
+
#editor-x .z-50 {
|
|
768
728
|
z-index: 50;
|
|
769
729
|
}
|
|
770
|
-
|
|
730
|
+
#editor-x .z-200 {
|
|
771
731
|
z-index: 200;
|
|
772
732
|
}
|
|
773
|
-
|
|
733
|
+
#editor-x .z-\[100\] {
|
|
774
734
|
z-index: 100;
|
|
775
735
|
}
|
|
776
|
-
|
|
736
|
+
#editor-x .z-\[1200\] {
|
|
777
737
|
z-index: 1200;
|
|
778
738
|
}
|
|
779
|
-
|
|
739
|
+
#editor-x .clear-both {
|
|
780
740
|
clear: both;
|
|
781
741
|
}
|
|
782
|
-
|
|
742
|
+
#editor-x .container {
|
|
783
743
|
width: 100%;
|
|
784
744
|
@media (width >= 40rem) {
|
|
785
745
|
max-width: 40rem;
|
|
@@ -797,1054 +757,1054 @@ div.border.border-dashed .editor-image img {
|
|
|
797
757
|
max-width: 96rem;
|
|
798
758
|
}
|
|
799
759
|
}
|
|
800
|
-
|
|
760
|
+
#editor-x .m-0 {
|
|
801
761
|
margin: calc(var(--spacing) * 0);
|
|
802
762
|
}
|
|
803
|
-
|
|
763
|
+
#editor-x .-mx-1 {
|
|
804
764
|
margin-inline: calc(var(--spacing) * -1);
|
|
805
765
|
}
|
|
806
|
-
|
|
766
|
+
#editor-x .mx-0 {
|
|
807
767
|
margin-inline: calc(var(--spacing) * 0);
|
|
808
768
|
}
|
|
809
|
-
|
|
769
|
+
#editor-x .mx-2 {
|
|
810
770
|
margin-inline: calc(var(--spacing) * 2);
|
|
811
771
|
}
|
|
812
|
-
|
|
772
|
+
#editor-x .mx-8 {
|
|
813
773
|
margin-inline: calc(var(--spacing) * 8);
|
|
814
774
|
}
|
|
815
|
-
|
|
775
|
+
#editor-x .mx-auto {
|
|
816
776
|
margin-inline: auto;
|
|
817
777
|
}
|
|
818
|
-
|
|
778
|
+
#editor-x .my-1 {
|
|
819
779
|
margin-block: calc(var(--spacing) * 1);
|
|
820
780
|
}
|
|
821
|
-
|
|
781
|
+
#editor-x .my-2 {
|
|
822
782
|
margin-block: calc(var(--spacing) * 2);
|
|
823
783
|
}
|
|
824
|
-
|
|
784
|
+
#editor-x .my-2\.5 {
|
|
825
785
|
margin-block: calc(var(--spacing) * 2.5);
|
|
826
786
|
}
|
|
827
|
-
|
|
787
|
+
#editor-x .my-4 {
|
|
828
788
|
margin-block: calc(var(--spacing) * 4);
|
|
829
789
|
}
|
|
830
|
-
|
|
790
|
+
#editor-x .my-6 {
|
|
831
791
|
margin-block: calc(var(--spacing) * 6);
|
|
832
792
|
}
|
|
833
|
-
|
|
793
|
+
#editor-x .my-8 {
|
|
834
794
|
margin-block: calc(var(--spacing) * 8);
|
|
835
795
|
}
|
|
836
|
-
|
|
796
|
+
#editor-x .my-auto {
|
|
837
797
|
margin-block: auto;
|
|
838
798
|
}
|
|
839
|
-
|
|
799
|
+
#editor-x .-ms-px {
|
|
840
800
|
margin-inline-start: -1px;
|
|
841
801
|
}
|
|
842
|
-
|
|
802
|
+
#editor-x .mt-0\.5 {
|
|
843
803
|
margin-top: calc(var(--spacing) * 0.5);
|
|
844
804
|
}
|
|
845
|
-
|
|
805
|
+
#editor-x .mt-1 {
|
|
846
806
|
margin-top: calc(var(--spacing) * 1);
|
|
847
807
|
}
|
|
848
|
-
|
|
808
|
+
#editor-x .mt-2 {
|
|
849
809
|
margin-top: calc(var(--spacing) * 2);
|
|
850
810
|
}
|
|
851
|
-
|
|
811
|
+
#editor-x .mt-6 {
|
|
852
812
|
margin-top: calc(var(--spacing) * 6);
|
|
853
813
|
}
|
|
854
|
-
|
|
814
|
+
#editor-x .mt-auto {
|
|
855
815
|
margin-top: auto;
|
|
856
816
|
}
|
|
857
|
-
|
|
817
|
+
#editor-x .mr-1\.5 {
|
|
858
818
|
margin-right: calc(var(--spacing) * 1.5);
|
|
859
819
|
}
|
|
860
|
-
|
|
820
|
+
#editor-x .mr-6 {
|
|
861
821
|
margin-right: calc(var(--spacing) * 6);
|
|
862
822
|
}
|
|
863
|
-
|
|
823
|
+
#editor-x .mb-2 {
|
|
864
824
|
margin-bottom: calc(var(--spacing) * 2);
|
|
865
825
|
}
|
|
866
|
-
|
|
826
|
+
#editor-x .mb-3 {
|
|
867
827
|
margin-bottom: calc(var(--spacing) * 3);
|
|
868
828
|
}
|
|
869
|
-
|
|
829
|
+
#editor-x .mb-4 {
|
|
870
830
|
margin-bottom: calc(var(--spacing) * 4);
|
|
871
831
|
}
|
|
872
|
-
|
|
832
|
+
#editor-x .ml-4 {
|
|
873
833
|
margin-left: calc(var(--spacing) * 4);
|
|
874
834
|
}
|
|
875
|
-
|
|
835
|
+
#editor-x .ml-auto {
|
|
876
836
|
margin-left: auto;
|
|
877
837
|
}
|
|
878
|
-
|
|
838
|
+
#editor-x .box-border {
|
|
879
839
|
box-sizing: border-box;
|
|
880
840
|
}
|
|
881
|
-
|
|
841
|
+
#editor-x .line-clamp-1 {
|
|
882
842
|
overflow: hidden;
|
|
883
843
|
display: -webkit-box;
|
|
884
844
|
-webkit-box-orient: vertical;
|
|
885
845
|
-webkit-line-clamp: 1;
|
|
886
846
|
}
|
|
887
|
-
|
|
847
|
+
#editor-x .line-clamp-2 {
|
|
888
848
|
overflow: hidden;
|
|
889
849
|
display: -webkit-box;
|
|
890
850
|
-webkit-box-orient: vertical;
|
|
891
851
|
-webkit-line-clamp: 2;
|
|
892
852
|
}
|
|
893
|
-
|
|
853
|
+
#editor-x .line-clamp-3 {
|
|
894
854
|
overflow: hidden;
|
|
895
855
|
display: -webkit-box;
|
|
896
856
|
-webkit-box-orient: vertical;
|
|
897
857
|
-webkit-line-clamp: 3;
|
|
898
858
|
}
|
|
899
|
-
|
|
859
|
+
#editor-x .block {
|
|
900
860
|
display: block;
|
|
901
861
|
}
|
|
902
|
-
|
|
862
|
+
#editor-x .contents {
|
|
903
863
|
display: contents;
|
|
904
864
|
}
|
|
905
|
-
|
|
865
|
+
#editor-x .flex {
|
|
906
866
|
display: flex;
|
|
907
867
|
}
|
|
908
|
-
|
|
868
|
+
#editor-x .grid {
|
|
909
869
|
display: grid;
|
|
910
870
|
}
|
|
911
|
-
|
|
871
|
+
#editor-x .hidden {
|
|
912
872
|
display: none;
|
|
913
873
|
}
|
|
914
|
-
|
|
874
|
+
#editor-x .inline {
|
|
915
875
|
display: inline;
|
|
916
876
|
}
|
|
917
|
-
|
|
877
|
+
#editor-x .inline-block {
|
|
918
878
|
display: inline-block;
|
|
919
879
|
}
|
|
920
|
-
|
|
880
|
+
#editor-x .inline-flex {
|
|
921
881
|
display: inline-flex;
|
|
922
882
|
}
|
|
923
|
-
|
|
883
|
+
#editor-x .table {
|
|
924
884
|
display: table;
|
|
925
885
|
}
|
|
926
|
-
|
|
886
|
+
#editor-x .aspect-square {
|
|
927
887
|
aspect-ratio: 1 / 1;
|
|
928
888
|
}
|
|
929
|
-
|
|
889
|
+
#editor-x .size-3 {
|
|
930
890
|
width: calc(var(--spacing) * 3);
|
|
931
891
|
height: calc(var(--spacing) * 3);
|
|
932
892
|
}
|
|
933
|
-
|
|
893
|
+
#editor-x .size-4 {
|
|
934
894
|
width: calc(var(--spacing) * 4);
|
|
935
895
|
height: calc(var(--spacing) * 4);
|
|
936
896
|
}
|
|
937
|
-
|
|
897
|
+
#editor-x .size-8 {
|
|
938
898
|
width: calc(var(--spacing) * 8);
|
|
939
899
|
height: calc(var(--spacing) * 8);
|
|
940
900
|
}
|
|
941
|
-
|
|
901
|
+
#editor-x .size-9 {
|
|
942
902
|
width: calc(var(--spacing) * 9);
|
|
943
903
|
height: calc(var(--spacing) * 9);
|
|
944
904
|
}
|
|
945
|
-
|
|
905
|
+
#editor-x .size-full {
|
|
946
906
|
width: 100%;
|
|
947
907
|
height: 100%;
|
|
948
908
|
}
|
|
949
|
-
|
|
909
|
+
#editor-x .h-1 {
|
|
950
910
|
height: calc(var(--spacing) * 1);
|
|
951
911
|
}
|
|
952
|
-
|
|
912
|
+
#editor-x .h-2 {
|
|
953
913
|
height: calc(var(--spacing) * 2);
|
|
954
914
|
}
|
|
955
|
-
|
|
915
|
+
#editor-x .h-2\.5 {
|
|
956
916
|
height: calc(var(--spacing) * 2.5);
|
|
957
917
|
}
|
|
958
|
-
|
|
918
|
+
#editor-x .h-3 {
|
|
959
919
|
height: calc(var(--spacing) * 3);
|
|
960
920
|
}
|
|
961
|
-
|
|
921
|
+
#editor-x .h-4 {
|
|
962
922
|
height: calc(var(--spacing) * 4);
|
|
963
923
|
}
|
|
964
|
-
|
|
924
|
+
#editor-x .h-5 {
|
|
965
925
|
height: calc(var(--spacing) * 5);
|
|
966
926
|
}
|
|
967
|
-
|
|
927
|
+
#editor-x .h-6 {
|
|
968
928
|
height: calc(var(--spacing) * 6);
|
|
969
929
|
}
|
|
970
|
-
|
|
930
|
+
#editor-x .h-7 {
|
|
971
931
|
height: calc(var(--spacing) * 7);
|
|
972
932
|
}
|
|
973
|
-
|
|
933
|
+
#editor-x .h-8 {
|
|
974
934
|
height: calc(var(--spacing) * 8);
|
|
975
935
|
}
|
|
976
|
-
|
|
936
|
+
#editor-x .h-9 {
|
|
977
937
|
height: calc(var(--spacing) * 9);
|
|
978
938
|
}
|
|
979
|
-
|
|
939
|
+
#editor-x .h-10 {
|
|
980
940
|
height: calc(var(--spacing) * 10);
|
|
981
941
|
}
|
|
982
|
-
|
|
942
|
+
#editor-x .h-11 {
|
|
983
943
|
height: calc(var(--spacing) * 11);
|
|
984
944
|
}
|
|
985
|
-
|
|
945
|
+
#editor-x .h-12 {
|
|
986
946
|
height: calc(var(--spacing) * 12);
|
|
987
947
|
}
|
|
988
|
-
|
|
948
|
+
#editor-x .h-14 {
|
|
989
949
|
height: calc(var(--spacing) * 14);
|
|
990
950
|
}
|
|
991
|
-
|
|
951
|
+
#editor-x .h-16 {
|
|
992
952
|
height: calc(var(--spacing) * 16);
|
|
993
953
|
}
|
|
994
|
-
|
|
954
|
+
#editor-x .h-24 {
|
|
995
955
|
height: calc(var(--spacing) * 24);
|
|
996
956
|
}
|
|
997
|
-
|
|
957
|
+
#editor-x .h-28 {
|
|
998
958
|
height: calc(var(--spacing) * 28);
|
|
999
959
|
}
|
|
1000
|
-
|
|
960
|
+
#editor-x .h-32 {
|
|
1001
961
|
height: calc(var(--spacing) * 32);
|
|
1002
962
|
}
|
|
1003
|
-
|
|
963
|
+
#editor-x .h-40 {
|
|
1004
964
|
height: calc(var(--spacing) * 40);
|
|
1005
965
|
}
|
|
1006
|
-
|
|
966
|
+
#editor-x .h-64 {
|
|
1007
967
|
height: calc(var(--spacing) * 64);
|
|
1008
968
|
}
|
|
1009
|
-
|
|
969
|
+
#editor-x .h-96 {
|
|
1010
970
|
height: calc(var(--spacing) * 96);
|
|
1011
971
|
}
|
|
1012
|
-
|
|
972
|
+
#editor-x .h-\[96vh\] {
|
|
1013
973
|
height: 96vh;
|
|
1014
974
|
}
|
|
1015
|
-
|
|
975
|
+
#editor-x .h-\[calc\(100\%-2px\)\] {
|
|
1016
976
|
height: calc(100% - 2px);
|
|
1017
977
|
}
|
|
1018
|
-
|
|
978
|
+
#editor-x .h-\[var\(--radix-select-trigger-height\)\] {
|
|
1019
979
|
height: var(--radix-select-trigger-height);
|
|
1020
980
|
}
|
|
1021
|
-
|
|
981
|
+
#editor-x .h-auto {
|
|
1022
982
|
height: auto;
|
|
1023
983
|
}
|
|
1024
|
-
|
|
984
|
+
#editor-x .h-full {
|
|
1025
985
|
height: 100%;
|
|
1026
986
|
}
|
|
1027
|
-
|
|
987
|
+
#editor-x .h-px {
|
|
1028
988
|
height: 1px;
|
|
1029
989
|
}
|
|
1030
|
-
|
|
990
|
+
#editor-x .h-screen {
|
|
1031
991
|
height: 100vh;
|
|
1032
992
|
}
|
|
1033
|
-
|
|
993
|
+
#editor-x .max-h-\(--radix-select-content-available-height\) {
|
|
1034
994
|
max-height: var(--radix-select-content-available-height);
|
|
1035
995
|
}
|
|
1036
|
-
|
|
996
|
+
#editor-x .max-h-48 {
|
|
1037
997
|
max-height: calc(var(--spacing) * 48);
|
|
1038
998
|
}
|
|
1039
|
-
|
|
999
|
+
#editor-x .max-h-\[96vh\] {
|
|
1040
1000
|
max-height: 96vh;
|
|
1041
1001
|
}
|
|
1042
|
-
|
|
1002
|
+
#editor-x .max-h-\[200px\] {
|
|
1043
1003
|
max-height: 200px;
|
|
1044
1004
|
}
|
|
1045
|
-
|
|
1005
|
+
#editor-x .max-h-\[350px\] {
|
|
1046
1006
|
max-height: 350px;
|
|
1047
1007
|
}
|
|
1048
|
-
|
|
1008
|
+
#editor-x .max-h-\[400px\] {
|
|
1049
1009
|
max-height: 400px;
|
|
1050
1010
|
}
|
|
1051
|
-
|
|
1011
|
+
#editor-x .max-h-\[500px\] {
|
|
1052
1012
|
max-height: 500px;
|
|
1053
1013
|
}
|
|
1054
|
-
|
|
1014
|
+
#editor-x .max-h-\[600px\] {
|
|
1055
1015
|
max-height: 600px;
|
|
1056
1016
|
}
|
|
1057
|
-
|
|
1017
|
+
#editor-x .max-h-full {
|
|
1058
1018
|
max-height: 100%;
|
|
1059
1019
|
}
|
|
1060
|
-
|
|
1020
|
+
#editor-x .max-h-screen {
|
|
1061
1021
|
max-height: 100vh;
|
|
1062
1022
|
}
|
|
1063
|
-
|
|
1023
|
+
#editor-x .min-h-0 {
|
|
1064
1024
|
min-height: calc(var(--spacing) * 0);
|
|
1065
1025
|
}
|
|
1066
|
-
|
|
1026
|
+
#editor-x .min-h-5 {
|
|
1067
1027
|
min-height: calc(var(--spacing) * 5);
|
|
1068
1028
|
}
|
|
1069
|
-
|
|
1029
|
+
#editor-x .min-h-11 {
|
|
1070
1030
|
min-height: calc(var(--spacing) * 11);
|
|
1071
1031
|
}
|
|
1072
|
-
|
|
1032
|
+
#editor-x .min-h-72 {
|
|
1073
1033
|
min-height: calc(var(--spacing) * 72);
|
|
1074
1034
|
}
|
|
1075
|
-
|
|
1035
|
+
#editor-x .min-h-\[44px\] {
|
|
1076
1036
|
min-height: 44px;
|
|
1077
1037
|
}
|
|
1078
|
-
|
|
1038
|
+
#editor-x .min-h-\[54px\] {
|
|
1079
1039
|
min-height: 54px;
|
|
1080
1040
|
}
|
|
1081
|
-
|
|
1041
|
+
#editor-x .min-h-\[300px\] {
|
|
1082
1042
|
min-height: 300px;
|
|
1083
1043
|
}
|
|
1084
|
-
|
|
1044
|
+
#editor-x .min-h-full {
|
|
1085
1045
|
min-height: 100%;
|
|
1086
1046
|
}
|
|
1087
|
-
|
|
1047
|
+
#editor-x .w-2 {
|
|
1088
1048
|
width: calc(var(--spacing) * 2);
|
|
1089
1049
|
}
|
|
1090
|
-
|
|
1050
|
+
#editor-x .w-2\.5 {
|
|
1091
1051
|
width: calc(var(--spacing) * 2.5);
|
|
1092
1052
|
}
|
|
1093
|
-
|
|
1053
|
+
#editor-x .w-3 {
|
|
1094
1054
|
width: calc(var(--spacing) * 3);
|
|
1095
1055
|
}
|
|
1096
|
-
|
|
1056
|
+
#editor-x .w-4 {
|
|
1097
1057
|
width: calc(var(--spacing) * 4);
|
|
1098
1058
|
}
|
|
1099
|
-
|
|
1059
|
+
#editor-x .w-5 {
|
|
1100
1060
|
width: calc(var(--spacing) * 5);
|
|
1101
1061
|
}
|
|
1102
|
-
|
|
1062
|
+
#editor-x .w-6 {
|
|
1103
1063
|
width: calc(var(--spacing) * 6);
|
|
1104
1064
|
}
|
|
1105
|
-
|
|
1065
|
+
#editor-x .w-7 {
|
|
1106
1066
|
width: calc(var(--spacing) * 7);
|
|
1107
1067
|
}
|
|
1108
|
-
|
|
1068
|
+
#editor-x .w-8 {
|
|
1109
1069
|
width: calc(var(--spacing) * 8);
|
|
1110
1070
|
}
|
|
1111
|
-
|
|
1071
|
+
#editor-x .w-9 {
|
|
1112
1072
|
width: calc(var(--spacing) * 9);
|
|
1113
1073
|
}
|
|
1114
|
-
|
|
1074
|
+
#editor-x .w-10 {
|
|
1115
1075
|
width: calc(var(--spacing) * 10);
|
|
1116
1076
|
}
|
|
1117
|
-
|
|
1077
|
+
#editor-x .w-11 {
|
|
1118
1078
|
width: calc(var(--spacing) * 11);
|
|
1119
1079
|
}
|
|
1120
|
-
|
|
1080
|
+
#editor-x .w-12 {
|
|
1121
1081
|
width: calc(var(--spacing) * 12);
|
|
1122
1082
|
}
|
|
1123
|
-
|
|
1083
|
+
#editor-x .w-14 {
|
|
1124
1084
|
width: calc(var(--spacing) * 14);
|
|
1125
1085
|
}
|
|
1126
|
-
|
|
1086
|
+
#editor-x .w-16 {
|
|
1127
1087
|
width: calc(var(--spacing) * 16);
|
|
1128
1088
|
}
|
|
1129
|
-
|
|
1089
|
+
#editor-x .w-72 {
|
|
1130
1090
|
width: calc(var(--spacing) * 72);
|
|
1131
1091
|
}
|
|
1132
|
-
|
|
1092
|
+
#editor-x .w-\[1px\] {
|
|
1133
1093
|
width: 1px;
|
|
1134
1094
|
}
|
|
1135
|
-
|
|
1095
|
+
#editor-x .w-\[72px\] {
|
|
1136
1096
|
width: 72px;
|
|
1137
1097
|
}
|
|
1138
|
-
|
|
1098
|
+
#editor-x .w-\[96vw\] {
|
|
1139
1099
|
width: 96vw;
|
|
1140
1100
|
}
|
|
1141
|
-
|
|
1101
|
+
#editor-x .w-\[200px\] {
|
|
1142
1102
|
width: 200px;
|
|
1143
1103
|
}
|
|
1144
|
-
|
|
1104
|
+
#editor-x .w-\[250px\] {
|
|
1145
1105
|
width: 250px;
|
|
1146
1106
|
}
|
|
1147
|
-
|
|
1107
|
+
#editor-x .w-\[340px\] {
|
|
1148
1108
|
width: 340px;
|
|
1149
1109
|
}
|
|
1150
|
-
|
|
1110
|
+
#editor-x .w-\[400px\] {
|
|
1151
1111
|
width: 400px;
|
|
1152
1112
|
}
|
|
1153
|
-
|
|
1113
|
+
#editor-x .w-\[calc\(100\%-2px\)\] {
|
|
1154
1114
|
width: calc(100% - 2px);
|
|
1155
1115
|
}
|
|
1156
|
-
|
|
1116
|
+
#editor-x .w-auto {
|
|
1157
1117
|
width: auto;
|
|
1158
1118
|
}
|
|
1159
|
-
|
|
1119
|
+
#editor-x .w-fit {
|
|
1160
1120
|
width: fit-content;
|
|
1161
1121
|
}
|
|
1162
|
-
|
|
1122
|
+
#editor-x .w-full {
|
|
1163
1123
|
width: 100%;
|
|
1164
1124
|
}
|
|
1165
|
-
|
|
1125
|
+
#editor-x .w-min {
|
|
1166
1126
|
width: min-content;
|
|
1167
1127
|
}
|
|
1168
|
-
|
|
1128
|
+
#editor-x .max-w-\[32px\] {
|
|
1169
1129
|
max-width: 32px;
|
|
1170
1130
|
}
|
|
1171
|
-
|
|
1131
|
+
#editor-x .max-w-\[70\%\] {
|
|
1172
1132
|
max-width: 70%;
|
|
1173
1133
|
}
|
|
1174
|
-
|
|
1134
|
+
#editor-x .max-w-\[75\%\] {
|
|
1175
1135
|
max-width: 75%;
|
|
1176
1136
|
}
|
|
1177
|
-
|
|
1137
|
+
#editor-x .max-w-\[96vw\] {
|
|
1178
1138
|
max-width: 96vw;
|
|
1179
1139
|
}
|
|
1180
|
-
|
|
1140
|
+
#editor-x .max-w-\[100dvw\] {
|
|
1181
1141
|
max-width: 100dvw;
|
|
1182
1142
|
}
|
|
1183
|
-
|
|
1143
|
+
#editor-x .max-w-\[560px\] {
|
|
1184
1144
|
max-width: 560px;
|
|
1185
1145
|
}
|
|
1186
|
-
|
|
1146
|
+
#editor-x .max-w-\[calc\(100vw-2rem\)\] {
|
|
1187
1147
|
max-width: calc(100vw - 2rem);
|
|
1188
1148
|
}
|
|
1189
|
-
|
|
1149
|
+
#editor-x .max-w-full {
|
|
1190
1150
|
max-width: 100%;
|
|
1191
1151
|
}
|
|
1192
|
-
|
|
1152
|
+
#editor-x .max-w-screen {
|
|
1193
1153
|
max-width: 100vw;
|
|
1194
1154
|
}
|
|
1195
|
-
|
|
1155
|
+
#editor-x .max-w-sm {
|
|
1196
1156
|
max-width: var(--container-sm);
|
|
1197
1157
|
}
|
|
1198
|
-
|
|
1158
|
+
#editor-x .min-w-0 {
|
|
1199
1159
|
min-width: calc(var(--spacing) * 0);
|
|
1200
1160
|
}
|
|
1201
|
-
|
|
1161
|
+
#editor-x .min-w-8 {
|
|
1202
1162
|
min-width: calc(var(--spacing) * 8);
|
|
1203
1163
|
}
|
|
1204
|
-
|
|
1164
|
+
#editor-x .min-w-9 {
|
|
1205
1165
|
min-width: calc(var(--spacing) * 9);
|
|
1206
1166
|
}
|
|
1207
|
-
|
|
1167
|
+
#editor-x .min-w-10 {
|
|
1208
1168
|
min-width: calc(var(--spacing) * 10);
|
|
1209
1169
|
}
|
|
1210
|
-
|
|
1170
|
+
#editor-x .min-w-11 {
|
|
1211
1171
|
min-width: calc(var(--spacing) * 11);
|
|
1212
1172
|
}
|
|
1213
|
-
|
|
1173
|
+
#editor-x .min-w-\[1px\] {
|
|
1214
1174
|
min-width: 1px;
|
|
1215
1175
|
}
|
|
1216
|
-
|
|
1176
|
+
#editor-x .min-w-\[8rem\] {
|
|
1217
1177
|
min-width: 8rem;
|
|
1218
1178
|
}
|
|
1219
|
-
|
|
1179
|
+
#editor-x .min-w-\[72px\] {
|
|
1220
1180
|
min-width: 72px;
|
|
1221
1181
|
}
|
|
1222
|
-
|
|
1182
|
+
#editor-x .min-w-\[100px\] {
|
|
1223
1183
|
min-width: 100px;
|
|
1224
1184
|
}
|
|
1225
|
-
|
|
1185
|
+
#editor-x .min-w-\[120px\] {
|
|
1226
1186
|
min-width: 120px;
|
|
1227
1187
|
}
|
|
1228
|
-
|
|
1188
|
+
#editor-x .min-w-\[140px\] {
|
|
1229
1189
|
min-width: 140px;
|
|
1230
1190
|
}
|
|
1231
|
-
|
|
1191
|
+
#editor-x .min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
1232
1192
|
min-width: var(--radix-select-trigger-width);
|
|
1233
1193
|
}
|
|
1234
|
-
|
|
1194
|
+
#editor-x .min-w-full {
|
|
1235
1195
|
min-width: 100%;
|
|
1236
1196
|
}
|
|
1237
|
-
|
|
1197
|
+
#editor-x .flex-1 {
|
|
1238
1198
|
flex: 1;
|
|
1239
1199
|
}
|
|
1240
|
-
|
|
1200
|
+
#editor-x .flex-auto {
|
|
1241
1201
|
flex: auto;
|
|
1242
1202
|
}
|
|
1243
|
-
|
|
1203
|
+
#editor-x .flex-initial {
|
|
1244
1204
|
flex: 0 auto;
|
|
1245
1205
|
}
|
|
1246
|
-
|
|
1206
|
+
#editor-x .shrink {
|
|
1247
1207
|
flex-shrink: 1;
|
|
1248
1208
|
}
|
|
1249
|
-
|
|
1209
|
+
#editor-x .shrink-0 {
|
|
1250
1210
|
flex-shrink: 0;
|
|
1251
1211
|
}
|
|
1252
|
-
|
|
1212
|
+
#editor-x .flex-grow {
|
|
1253
1213
|
flex-grow: 1;
|
|
1254
1214
|
}
|
|
1255
|
-
|
|
1215
|
+
#editor-x .grow {
|
|
1256
1216
|
flex-grow: 1;
|
|
1257
1217
|
}
|
|
1258
|
-
|
|
1218
|
+
#editor-x .border-collapse {
|
|
1259
1219
|
border-collapse: collapse;
|
|
1260
1220
|
}
|
|
1261
|
-
|
|
1221
|
+
#editor-x .origin-\(--radix-popover-content-transform-origin\) {
|
|
1262
1222
|
transform-origin: var(--radix-popover-content-transform-origin);
|
|
1263
1223
|
}
|
|
1264
|
-
|
|
1224
|
+
#editor-x .origin-\(--radix-select-content-transform-origin\) {
|
|
1265
1225
|
transform-origin: var(--radix-select-content-transform-origin);
|
|
1266
1226
|
}
|
|
1267
|
-
|
|
1227
|
+
#editor-x .origin-\(--radix-tooltip-content-transform-origin\) {
|
|
1268
1228
|
transform-origin: var(--radix-tooltip-content-transform-origin);
|
|
1269
1229
|
}
|
|
1270
|
-
|
|
1230
|
+
#editor-x .-translate-x-1\/2 {
|
|
1271
1231
|
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
1272
1232
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1273
1233
|
}
|
|
1274
|
-
|
|
1234
|
+
#editor-x .translate-x-\[-50\%\] {
|
|
1275
1235
|
--tw-translate-x: -50%;
|
|
1276
1236
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1277
1237
|
}
|
|
1278
|
-
|
|
1238
|
+
#editor-x .-translate-y-1\/2 {
|
|
1279
1239
|
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
1280
1240
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1281
1241
|
}
|
|
1282
|
-
|
|
1242
|
+
#editor-x .-translate-y-full {
|
|
1283
1243
|
--tw-translate-y: -100%;
|
|
1284
1244
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1285
1245
|
}
|
|
1286
|
-
|
|
1246
|
+
#editor-x .translate-y-\[-50\%\] {
|
|
1287
1247
|
--tw-translate-y: -50%;
|
|
1288
1248
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1289
1249
|
}
|
|
1290
|
-
|
|
1250
|
+
#editor-x .translate-y-\[calc\(-50\%_-_2px\)\] {
|
|
1291
1251
|
--tw-translate-y: calc(-50% - 2px);
|
|
1292
1252
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1293
1253
|
}
|
|
1294
|
-
|
|
1254
|
+
#editor-x .rotate-45 {
|
|
1295
1255
|
rotate: 45deg;
|
|
1296
1256
|
}
|
|
1297
|
-
|
|
1257
|
+
#editor-x .rotate-90 {
|
|
1298
1258
|
rotate: 90deg;
|
|
1299
1259
|
}
|
|
1300
|
-
|
|
1260
|
+
#editor-x .transform {
|
|
1301
1261
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
1302
1262
|
}
|
|
1303
|
-
|
|
1263
|
+
#editor-x .animate-pulse {
|
|
1304
1264
|
animation: var(--animate-pulse);
|
|
1305
1265
|
}
|
|
1306
|
-
|
|
1266
|
+
#editor-x .animate-spin {
|
|
1307
1267
|
animation: var(--animate-spin);
|
|
1308
1268
|
}
|
|
1309
|
-
|
|
1269
|
+
#editor-x .cursor-crosshair {
|
|
1310
1270
|
cursor: crosshair;
|
|
1311
1271
|
}
|
|
1312
|
-
|
|
1272
|
+
#editor-x .cursor-default {
|
|
1313
1273
|
cursor: default;
|
|
1314
1274
|
}
|
|
1315
|
-
|
|
1275
|
+
#editor-x .cursor-ew-resize {
|
|
1316
1276
|
cursor: ew-resize;
|
|
1317
1277
|
}
|
|
1318
|
-
|
|
1278
|
+
#editor-x .cursor-grab {
|
|
1319
1279
|
cursor: grab;
|
|
1320
1280
|
}
|
|
1321
|
-
|
|
1281
|
+
#editor-x .cursor-nesw-resize {
|
|
1322
1282
|
cursor: nesw-resize;
|
|
1323
1283
|
}
|
|
1324
|
-
|
|
1284
|
+
#editor-x .cursor-ns-resize {
|
|
1325
1285
|
cursor: ns-resize;
|
|
1326
1286
|
}
|
|
1327
|
-
|
|
1287
|
+
#editor-x .cursor-nwse-resize {
|
|
1328
1288
|
cursor: nwse-resize;
|
|
1329
1289
|
}
|
|
1330
|
-
|
|
1290
|
+
#editor-x .cursor-pointer {
|
|
1331
1291
|
cursor: pointer;
|
|
1332
1292
|
}
|
|
1333
|
-
|
|
1293
|
+
#editor-x .cursor-text {
|
|
1334
1294
|
cursor: text;
|
|
1335
1295
|
}
|
|
1336
|
-
|
|
1296
|
+
#editor-x .touch-none {
|
|
1337
1297
|
touch-action: none;
|
|
1338
1298
|
}
|
|
1339
|
-
|
|
1299
|
+
#editor-x .resize {
|
|
1340
1300
|
resize: both;
|
|
1341
1301
|
}
|
|
1342
|
-
|
|
1302
|
+
#editor-x .resize-none {
|
|
1343
1303
|
resize: none;
|
|
1344
1304
|
}
|
|
1345
|
-
|
|
1305
|
+
#editor-x .scroll-m-20 {
|
|
1346
1306
|
scroll-margin: calc(var(--spacing) * 20);
|
|
1347
1307
|
}
|
|
1348
|
-
|
|
1308
|
+
#editor-x .scroll-my-1 {
|
|
1349
1309
|
scroll-margin-block: calc(var(--spacing) * 1);
|
|
1350
1310
|
}
|
|
1351
|
-
|
|
1311
|
+
#editor-x .scroll-py-1 {
|
|
1352
1312
|
scroll-padding-block: calc(var(--spacing) * 1);
|
|
1353
1313
|
}
|
|
1354
|
-
|
|
1314
|
+
#editor-x .list-outside {
|
|
1355
1315
|
list-style-position: outside;
|
|
1356
1316
|
}
|
|
1357
|
-
|
|
1317
|
+
#editor-x .list-\[lower-alpha\] {
|
|
1358
1318
|
list-style-type: lower-alpha;
|
|
1359
1319
|
}
|
|
1360
|
-
|
|
1320
|
+
#editor-x .list-\[lower-roman\] {
|
|
1361
1321
|
list-style-type: lower-roman;
|
|
1362
1322
|
}
|
|
1363
|
-
|
|
1323
|
+
#editor-x .list-\[upper-alpha\] {
|
|
1364
1324
|
list-style-type: upper-alpha;
|
|
1365
1325
|
}
|
|
1366
|
-
|
|
1326
|
+
#editor-x .list-\[upper-roman\] {
|
|
1367
1327
|
list-style-type: upper-roman;
|
|
1368
1328
|
}
|
|
1369
|
-
|
|
1329
|
+
#editor-x .list-decimal {
|
|
1370
1330
|
list-style-type: decimal;
|
|
1371
1331
|
}
|
|
1372
|
-
|
|
1332
|
+
#editor-x .list-disc {
|
|
1373
1333
|
list-style-type: disc;
|
|
1374
1334
|
}
|
|
1375
|
-
|
|
1335
|
+
#editor-x .list-none {
|
|
1376
1336
|
list-style-type: none;
|
|
1377
1337
|
}
|
|
1378
|
-
|
|
1338
|
+
#editor-x .grid-cols-1 {
|
|
1379
1339
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1380
1340
|
}
|
|
1381
|
-
|
|
1341
|
+
#editor-x .grid-cols-4 {
|
|
1382
1342
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1383
1343
|
}
|
|
1384
|
-
|
|
1344
|
+
#editor-x .flex-col {
|
|
1385
1345
|
flex-direction: column;
|
|
1386
1346
|
}
|
|
1387
|
-
|
|
1347
|
+
#editor-x .flex-row {
|
|
1388
1348
|
flex-direction: row;
|
|
1389
1349
|
}
|
|
1390
|
-
|
|
1350
|
+
#editor-x .flex-nowrap {
|
|
1391
1351
|
flex-wrap: nowrap;
|
|
1392
1352
|
}
|
|
1393
|
-
|
|
1353
|
+
#editor-x .flex-wrap {
|
|
1394
1354
|
flex-wrap: wrap;
|
|
1395
1355
|
}
|
|
1396
|
-
|
|
1356
|
+
#editor-x .flex-wrap-reverse {
|
|
1397
1357
|
flex-wrap: wrap-reverse;
|
|
1398
1358
|
}
|
|
1399
|
-
|
|
1359
|
+
#editor-x .items-baseline {
|
|
1400
1360
|
align-items: baseline;
|
|
1401
1361
|
}
|
|
1402
|
-
|
|
1362
|
+
#editor-x .items-center {
|
|
1403
1363
|
align-items: center;
|
|
1404
1364
|
}
|
|
1405
|
-
|
|
1365
|
+
#editor-x .items-end {
|
|
1406
1366
|
align-items: flex-end;
|
|
1407
1367
|
}
|
|
1408
|
-
|
|
1368
|
+
#editor-x .items-start {
|
|
1409
1369
|
align-items: flex-start;
|
|
1410
1370
|
}
|
|
1411
|
-
|
|
1371
|
+
#editor-x .items-stretch {
|
|
1412
1372
|
align-items: stretch;
|
|
1413
1373
|
}
|
|
1414
|
-
|
|
1374
|
+
#editor-x .justify-around {
|
|
1415
1375
|
justify-content: space-around;
|
|
1416
1376
|
}
|
|
1417
|
-
|
|
1377
|
+
#editor-x .justify-between {
|
|
1418
1378
|
justify-content: space-between;
|
|
1419
1379
|
}
|
|
1420
|
-
|
|
1380
|
+
#editor-x .justify-center {
|
|
1421
1381
|
justify-content: center;
|
|
1422
1382
|
}
|
|
1423
|
-
|
|
1383
|
+
#editor-x .justify-end {
|
|
1424
1384
|
justify-content: flex-end;
|
|
1425
1385
|
}
|
|
1426
|
-
|
|
1386
|
+
#editor-x .justify-evenly {
|
|
1427
1387
|
justify-content: space-evenly;
|
|
1428
1388
|
}
|
|
1429
|
-
|
|
1389
|
+
#editor-x .justify-normal {
|
|
1430
1390
|
justify-content: normal;
|
|
1431
1391
|
}
|
|
1432
|
-
|
|
1392
|
+
#editor-x .justify-start {
|
|
1433
1393
|
justify-content: flex-start;
|
|
1434
1394
|
}
|
|
1435
|
-
|
|
1395
|
+
#editor-x .gap-0 {
|
|
1436
1396
|
gap: calc(var(--spacing) * 0);
|
|
1437
1397
|
}
|
|
1438
|
-
|
|
1398
|
+
#editor-x .gap-0\.5 {
|
|
1439
1399
|
gap: calc(var(--spacing) * 0.5);
|
|
1440
1400
|
}
|
|
1441
|
-
|
|
1401
|
+
#editor-x .gap-1 {
|
|
1442
1402
|
gap: calc(var(--spacing) * 1);
|
|
1443
1403
|
}
|
|
1444
|
-
|
|
1404
|
+
#editor-x .gap-1\.5 {
|
|
1445
1405
|
gap: calc(var(--spacing) * 1.5);
|
|
1446
1406
|
}
|
|
1447
|
-
|
|
1407
|
+
#editor-x .gap-2 {
|
|
1448
1408
|
gap: calc(var(--spacing) * 2);
|
|
1449
1409
|
}
|
|
1450
|
-
|
|
1410
|
+
#editor-x .gap-2\.5 {
|
|
1451
1411
|
gap: calc(var(--spacing) * 2.5);
|
|
1452
1412
|
}
|
|
1453
|
-
|
|
1413
|
+
#editor-x .gap-3 {
|
|
1454
1414
|
gap: calc(var(--spacing) * 3);
|
|
1455
1415
|
}
|
|
1456
|
-
|
|
1416
|
+
#editor-x .gap-4 {
|
|
1457
1417
|
gap: calc(var(--spacing) * 4);
|
|
1458
1418
|
}
|
|
1459
|
-
|
|
1419
|
+
#editor-x .gap-5 {
|
|
1460
1420
|
gap: calc(var(--spacing) * 5);
|
|
1461
1421
|
}
|
|
1462
|
-
|
|
1422
|
+
#editor-x .gap-6 {
|
|
1463
1423
|
gap: calc(var(--spacing) * 6);
|
|
1464
1424
|
}
|
|
1465
|
-
|
|
1425
|
+
#editor-x .gap-8 {
|
|
1466
1426
|
gap: calc(var(--spacing) * 8);
|
|
1467
1427
|
}
|
|
1468
|
-
|
|
1428
|
+
#editor-x .gap-12 {
|
|
1469
1429
|
gap: calc(var(--spacing) * 12);
|
|
1470
1430
|
}
|
|
1471
|
-
|
|
1431
|
+
#editor-x .gap-16 {
|
|
1472
1432
|
gap: calc(var(--spacing) * 16);
|
|
1473
1433
|
}
|
|
1474
|
-
|
|
1434
|
+
#editor-x .gap-\[--spacing\(var\(--gap\)\)\] {
|
|
1475
1435
|
gap: calc(var(--spacing) * var(--gap));
|
|
1476
1436
|
}
|
|
1477
|
-
|
|
1437
|
+
#editor-x .space-y-1 {
|
|
1478
1438
|
#editor-x :where(& > :not(:last-child)) {
|
|
1479
1439
|
--tw-space-y-reverse: 0;
|
|
1480
1440
|
margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
|
|
1481
1441
|
margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
|
|
1482
1442
|
}
|
|
1483
1443
|
}
|
|
1484
|
-
|
|
1444
|
+
#editor-x .space-y-4 {
|
|
1485
1445
|
#editor-x :where(& > :not(:last-child)) {
|
|
1486
1446
|
--tw-space-y-reverse: 0;
|
|
1487
1447
|
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
1488
1448
|
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
1489
1449
|
}
|
|
1490
1450
|
}
|
|
1491
|
-
|
|
1451
|
+
#editor-x .space-x-2 {
|
|
1492
1452
|
#editor-x :where(& > :not(:last-child)) {
|
|
1493
1453
|
--tw-space-x-reverse: 0;
|
|
1494
1454
|
margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
|
|
1495
1455
|
margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
|
|
1496
1456
|
}
|
|
1497
1457
|
}
|
|
1498
|
-
|
|
1458
|
+
#editor-x .self-stretch {
|
|
1499
1459
|
align-self: stretch;
|
|
1500
1460
|
}
|
|
1501
|
-
|
|
1461
|
+
#editor-x .truncate {
|
|
1502
1462
|
overflow: hidden;
|
|
1503
1463
|
text-overflow: ellipsis;
|
|
1504
1464
|
white-space: nowrap;
|
|
1505
1465
|
}
|
|
1506
|
-
|
|
1466
|
+
#editor-x .overflow-auto {
|
|
1507
1467
|
overflow: auto;
|
|
1508
1468
|
}
|
|
1509
|
-
|
|
1469
|
+
#editor-x .overflow-hidden {
|
|
1510
1470
|
overflow: hidden;
|
|
1511
1471
|
}
|
|
1512
|
-
|
|
1472
|
+
#editor-x .overflow-scroll {
|
|
1513
1473
|
overflow: scroll;
|
|
1514
1474
|
}
|
|
1515
|
-
|
|
1475
|
+
#editor-x .overflow-x-auto {
|
|
1516
1476
|
overflow-x: auto;
|
|
1517
1477
|
}
|
|
1518
|
-
|
|
1478
|
+
#editor-x .overflow-x-hidden {
|
|
1519
1479
|
overflow-x: hidden;
|
|
1520
1480
|
}
|
|
1521
|
-
|
|
1481
|
+
#editor-x .overflow-y-auto {
|
|
1522
1482
|
overflow-y: auto;
|
|
1523
1483
|
}
|
|
1524
|
-
|
|
1484
|
+
#editor-x .rounded {
|
|
1525
1485
|
border-radius: var(--radius, 0.5rem);
|
|
1526
1486
|
}
|
|
1527
|
-
|
|
1487
|
+
#editor-x .rounded-2xl {
|
|
1528
1488
|
border-radius: var(--radius-2xl);
|
|
1529
1489
|
}
|
|
1530
|
-
|
|
1490
|
+
#editor-x .rounded-\[2px\] {
|
|
1531
1491
|
border-radius: 2px;
|
|
1532
1492
|
}
|
|
1533
|
-
|
|
1493
|
+
#editor-x .rounded-\[inherit\] {
|
|
1534
1494
|
border-radius: inherit;
|
|
1535
1495
|
}
|
|
1536
|
-
|
|
1496
|
+
#editor-x .rounded-full {
|
|
1537
1497
|
border-radius: calc(infinity * 1px);
|
|
1538
1498
|
}
|
|
1539
|
-
|
|
1499
|
+
#editor-x .rounded-lg {
|
|
1540
1500
|
border-radius: var(--radius-lg);
|
|
1541
1501
|
}
|
|
1542
|
-
|
|
1502
|
+
#editor-x .rounded-md {
|
|
1543
1503
|
border-radius: var(--radius-md);
|
|
1544
1504
|
}
|
|
1545
|
-
|
|
1505
|
+
#editor-x .rounded-none {
|
|
1546
1506
|
border-radius: 0;
|
|
1547
1507
|
}
|
|
1548
|
-
|
|
1508
|
+
#editor-x .rounded-sm {
|
|
1549
1509
|
border-radius: var(--radius-sm);
|
|
1550
1510
|
}
|
|
1551
|
-
|
|
1511
|
+
#editor-x .rounded-xl {
|
|
1552
1512
|
border-radius: var(--radius-xl);
|
|
1553
1513
|
}
|
|
1554
|
-
|
|
1514
|
+
#editor-x .rounded-xs {
|
|
1555
1515
|
border-radius: var(--radius-xs);
|
|
1556
1516
|
}
|
|
1557
|
-
|
|
1517
|
+
#editor-x .rounded-s-none {
|
|
1558
1518
|
border-start-start-radius: 0;
|
|
1559
1519
|
border-end-start-radius: 0;
|
|
1560
1520
|
}
|
|
1561
|
-
|
|
1521
|
+
#editor-x .rounded-e-none {
|
|
1562
1522
|
border-start-end-radius: 0;
|
|
1563
1523
|
border-end-end-radius: 0;
|
|
1564
1524
|
}
|
|
1565
|
-
|
|
1525
|
+
#editor-x .rounded-t-xl {
|
|
1566
1526
|
border-top-left-radius: var(--radius-xl);
|
|
1567
1527
|
border-top-right-radius: var(--radius-xl);
|
|
1568
1528
|
}
|
|
1569
|
-
|
|
1529
|
+
#editor-x .rounded-b-xl {
|
|
1570
1530
|
border-bottom-right-radius: var(--radius-xl);
|
|
1571
1531
|
border-bottom-left-radius: var(--radius-xl);
|
|
1572
1532
|
}
|
|
1573
|
-
|
|
1533
|
+
#editor-x .border {
|
|
1574
1534
|
border-style: var(--tw-border-style);
|
|
1575
1535
|
border-width: 1px;
|
|
1576
1536
|
}
|
|
1577
|
-
|
|
1537
|
+
#editor-x .border-0 {
|
|
1578
1538
|
border-style: var(--tw-border-style);
|
|
1579
1539
|
border-width: 0px;
|
|
1580
1540
|
}
|
|
1581
|
-
|
|
1541
|
+
#editor-x .border-1 {
|
|
1582
1542
|
border-style: var(--tw-border-style);
|
|
1583
1543
|
border-width: 1px;
|
|
1584
1544
|
}
|
|
1585
|
-
|
|
1545
|
+
#editor-x .border-2 {
|
|
1586
1546
|
border-style: var(--tw-border-style);
|
|
1587
1547
|
border-width: 2px;
|
|
1588
1548
|
}
|
|
1589
|
-
|
|
1549
|
+
#editor-x .border-x {
|
|
1590
1550
|
border-inline-style: var(--tw-border-style);
|
|
1591
1551
|
border-inline-width: 1px;
|
|
1592
1552
|
}
|
|
1593
|
-
|
|
1553
|
+
#editor-x .border-y {
|
|
1594
1554
|
border-block-style: var(--tw-border-style);
|
|
1595
1555
|
border-block-width: 1px;
|
|
1596
1556
|
}
|
|
1597
|
-
|
|
1557
|
+
#editor-x .border-t {
|
|
1598
1558
|
border-top-style: var(--tw-border-style);
|
|
1599
1559
|
border-top-width: 1px;
|
|
1600
1560
|
}
|
|
1601
|
-
|
|
1561
|
+
#editor-x .border-r {
|
|
1602
1562
|
border-right-style: var(--tw-border-style);
|
|
1603
1563
|
border-right-width: 1px;
|
|
1604
1564
|
}
|
|
1605
|
-
|
|
1565
|
+
#editor-x .border-b {
|
|
1606
1566
|
border-bottom-style: var(--tw-border-style);
|
|
1607
1567
|
border-bottom-width: 1px;
|
|
1608
1568
|
}
|
|
1609
|
-
|
|
1569
|
+
#editor-x .border-l {
|
|
1610
1570
|
border-left-style: var(--tw-border-style);
|
|
1611
1571
|
border-left-width: 1px;
|
|
1612
1572
|
}
|
|
1613
|
-
|
|
1573
|
+
#editor-x .border-l-0 {
|
|
1614
1574
|
border-left-style: var(--tw-border-style);
|
|
1615
1575
|
border-left-width: 0px;
|
|
1616
1576
|
}
|
|
1617
|
-
|
|
1577
|
+
#editor-x .border-l-2 {
|
|
1618
1578
|
border-left-style: var(--tw-border-style);
|
|
1619
1579
|
border-left-width: 2px;
|
|
1620
1580
|
}
|
|
1621
|
-
|
|
1581
|
+
#editor-x .border-dashed {
|
|
1622
1582
|
--tw-border-style: dashed;
|
|
1623
1583
|
border-style: dashed;
|
|
1624
1584
|
}
|
|
1625
|
-
|
|
1585
|
+
#editor-x .border-none {
|
|
1626
1586
|
--tw-border-style: none;
|
|
1627
1587
|
border-style: none;
|
|
1628
1588
|
}
|
|
1629
|
-
|
|
1589
|
+
#editor-x .border-solid {
|
|
1630
1590
|
--tw-border-style: solid;
|
|
1631
1591
|
border-style: solid;
|
|
1632
1592
|
}
|
|
1633
|
-
|
|
1593
|
+
#editor-x .border-background {
|
|
1634
1594
|
border-color: var(--background);
|
|
1635
1595
|
}
|
|
1636
|
-
|
|
1596
|
+
#editor-x .border-border {
|
|
1637
1597
|
border-color: var(--border);
|
|
1638
1598
|
}
|
|
1639
|
-
|
|
1599
|
+
#editor-x .border-border\/50 {
|
|
1640
1600
|
border-color: var(--border);
|
|
1641
1601
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1642
1602
|
border-color: color-mix(in oklab, var(--border) 50%, transparent);
|
|
1643
1603
|
}
|
|
1644
1604
|
}
|
|
1645
|
-
|
|
1605
|
+
#editor-x .border-destructive {
|
|
1646
1606
|
border-color: var(--destructive);
|
|
1647
1607
|
}
|
|
1648
|
-
|
|
1608
|
+
#editor-x .border-input {
|
|
1649
1609
|
border-color: var(--input);
|
|
1650
1610
|
}
|
|
1651
|
-
|
|
1611
|
+
#editor-x .border-primary {
|
|
1652
1612
|
border-color: var(--primary);
|
|
1653
1613
|
}
|
|
1654
|
-
|
|
1614
|
+
#editor-x .border-primary\/50 {
|
|
1655
1615
|
border-color: var(--primary);
|
|
1656
1616
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1657
1617
|
border-color: color-mix(in oklab, var(--primary) 50%, transparent);
|
|
1658
1618
|
}
|
|
1659
1619
|
}
|
|
1660
|
-
|
|
1620
|
+
#editor-x .border-transparent {
|
|
1661
1621
|
border-color: transparent;
|
|
1662
1622
|
}
|
|
1663
|
-
|
|
1623
|
+
#editor-x .border-white {
|
|
1664
1624
|
border-color: var(--color-white);
|
|
1665
1625
|
}
|
|
1666
|
-
|
|
1626
|
+
#editor-x .border-t-transparent {
|
|
1667
1627
|
border-top-color: transparent;
|
|
1668
1628
|
}
|
|
1669
|
-
|
|
1629
|
+
#editor-x .border-l-transparent {
|
|
1670
1630
|
border-left-color: transparent;
|
|
1671
1631
|
}
|
|
1672
|
-
|
|
1632
|
+
#editor-x .bg-accent {
|
|
1673
1633
|
background-color: var(--accent);
|
|
1674
1634
|
}
|
|
1675
|
-
|
|
1635
|
+
#editor-x .bg-accent\/10 {
|
|
1676
1636
|
background-color: var(--accent);
|
|
1677
1637
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1678
1638
|
background-color: color-mix(in oklab, var(--accent) 10%, transparent);
|
|
1679
1639
|
}
|
|
1680
1640
|
}
|
|
1681
|
-
|
|
1641
|
+
#editor-x .bg-background {
|
|
1682
1642
|
background-color: var(--background);
|
|
1683
1643
|
}
|
|
1684
|
-
|
|
1644
|
+
#editor-x .bg-background\/80 {
|
|
1685
1645
|
background-color: var(--background);
|
|
1686
1646
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1687
1647
|
background-color: color-mix(in oklab, var(--background) 80%, transparent);
|
|
1688
1648
|
}
|
|
1689
1649
|
}
|
|
1690
|
-
|
|
1650
|
+
#editor-x .bg-background\/95 {
|
|
1691
1651
|
background-color: var(--background);
|
|
1692
1652
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1693
1653
|
background-color: color-mix(in oklab, var(--background) 95%, transparent);
|
|
1694
1654
|
}
|
|
1695
1655
|
}
|
|
1696
|
-
|
|
1656
|
+
#editor-x .bg-black\/10 {
|
|
1697
1657
|
background-color: color-mix(in srgb, #000 10%, transparent);
|
|
1698
1658
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1699
1659
|
background-color: color-mix(in oklab, var(--color-black) 10%, transparent);
|
|
1700
1660
|
}
|
|
1701
1661
|
}
|
|
1702
|
-
|
|
1662
|
+
#editor-x .bg-black\/60 {
|
|
1703
1663
|
background-color: color-mix(in srgb, #000 60%, transparent);
|
|
1704
1664
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1705
1665
|
background-color: color-mix(in oklab, var(--color-black) 60%, transparent);
|
|
1706
1666
|
}
|
|
1707
1667
|
}
|
|
1708
|
-
|
|
1668
|
+
#editor-x .bg-black\/80 {
|
|
1709
1669
|
background-color: color-mix(in srgb, #000 80%, transparent);
|
|
1710
1670
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1711
1671
|
background-color: color-mix(in oklab, var(--color-black) 80%, transparent);
|
|
1712
1672
|
}
|
|
1713
1673
|
}
|
|
1714
|
-
|
|
1674
|
+
#editor-x .bg-blue-100 {
|
|
1715
1675
|
background-color: var(--color-blue-100);
|
|
1716
1676
|
}
|
|
1717
|
-
|
|
1677
|
+
#editor-x .bg-border {
|
|
1718
1678
|
background-color: var(--border);
|
|
1719
1679
|
}
|
|
1720
|
-
|
|
1680
|
+
#editor-x .bg-card {
|
|
1721
1681
|
background-color: var(--card);
|
|
1722
1682
|
}
|
|
1723
|
-
|
|
1683
|
+
#editor-x .bg-destructive {
|
|
1724
1684
|
background-color: var(--destructive);
|
|
1725
1685
|
}
|
|
1726
|
-
|
|
1686
|
+
#editor-x .bg-destructive\/10 {
|
|
1727
1687
|
background-color: var(--destructive);
|
|
1728
1688
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1729
1689
|
background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
|
|
1730
1690
|
}
|
|
1731
1691
|
}
|
|
1732
|
-
|
|
1692
|
+
#editor-x .bg-destructive\/50 {
|
|
1733
1693
|
background-color: var(--destructive);
|
|
1734
1694
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1735
1695
|
background-color: color-mix(in oklab, var(--destructive) 50%, transparent);
|
|
1736
1696
|
}
|
|
1737
1697
|
}
|
|
1738
|
-
|
|
1698
|
+
#editor-x .bg-foreground {
|
|
1739
1699
|
background-color: var(--foreground);
|
|
1740
1700
|
}
|
|
1741
|
-
|
|
1701
|
+
#editor-x .bg-gray-100 {
|
|
1742
1702
|
background-color: var(--color-gray-100);
|
|
1743
1703
|
}
|
|
1744
|
-
|
|
1704
|
+
#editor-x .bg-green-100 {
|
|
1745
1705
|
background-color: var(--color-green-100);
|
|
1746
1706
|
}
|
|
1747
|
-
|
|
1707
|
+
#editor-x .bg-green-500 {
|
|
1748
1708
|
background-color: var(--color-green-500);
|
|
1749
1709
|
}
|
|
1750
|
-
|
|
1710
|
+
#editor-x .bg-input {
|
|
1751
1711
|
background-color: var(--input);
|
|
1752
1712
|
}
|
|
1753
|
-
|
|
1713
|
+
#editor-x .bg-muted {
|
|
1754
1714
|
background-color: var(--muted);
|
|
1755
1715
|
}
|
|
1756
|
-
|
|
1716
|
+
#editor-x .bg-muted\/20 {
|
|
1757
1717
|
background-color: var(--muted);
|
|
1758
1718
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1759
1719
|
background-color: color-mix(in oklab, var(--muted) 20%, transparent);
|
|
1760
1720
|
}
|
|
1761
1721
|
}
|
|
1762
|
-
|
|
1722
|
+
#editor-x .bg-muted\/40 {
|
|
1763
1723
|
background-color: var(--muted);
|
|
1764
1724
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1765
1725
|
background-color: color-mix(in oklab, var(--muted) 40%, transparent);
|
|
1766
1726
|
}
|
|
1767
1727
|
}
|
|
1768
|
-
|
|
1728
|
+
#editor-x .bg-muted\/50 {
|
|
1769
1729
|
background-color: var(--muted);
|
|
1770
1730
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1771
1731
|
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
1772
1732
|
}
|
|
1773
1733
|
}
|
|
1774
|
-
|
|
1734
|
+
#editor-x .bg-muted\/80 {
|
|
1775
1735
|
background-color: var(--muted);
|
|
1776
1736
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1777
1737
|
background-color: color-mix(in oklab, var(--muted) 80%, transparent);
|
|
1778
1738
|
}
|
|
1779
1739
|
}
|
|
1780
|
-
|
|
1740
|
+
#editor-x .bg-popover {
|
|
1781
1741
|
background-color: var(--popover);
|
|
1782
1742
|
}
|
|
1783
|
-
|
|
1743
|
+
#editor-x .bg-primary {
|
|
1784
1744
|
background-color: var(--primary);
|
|
1785
1745
|
}
|
|
1786
|
-
|
|
1746
|
+
#editor-x .bg-primary\/10 {
|
|
1787
1747
|
background-color: var(--primary);
|
|
1788
1748
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1789
1749
|
background-color: color-mix(in oklab, var(--primary) 10%, transparent);
|
|
1790
1750
|
}
|
|
1791
1751
|
}
|
|
1792
|
-
|
|
1752
|
+
#editor-x .bg-primary\/20 {
|
|
1793
1753
|
background-color: var(--primary);
|
|
1794
1754
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1795
1755
|
background-color: color-mix(in oklab, var(--primary) 20%, transparent);
|
|
1796
1756
|
}
|
|
1797
1757
|
}
|
|
1798
|
-
|
|
1758
|
+
#editor-x .bg-secondary {
|
|
1799
1759
|
background-color: var(--secondary);
|
|
1800
1760
|
}
|
|
1801
|
-
|
|
1761
|
+
#editor-x .bg-secondary-foreground {
|
|
1802
1762
|
background-color: var(--secondary-foreground);
|
|
1803
1763
|
}
|
|
1804
|
-
|
|
1764
|
+
#editor-x .bg-secondary\/10 {
|
|
1805
1765
|
background-color: var(--secondary);
|
|
1806
1766
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1807
1767
|
background-color: color-mix(in oklab, var(--secondary) 10%, transparent);
|
|
1808
1768
|
}
|
|
1809
1769
|
}
|
|
1810
|
-
|
|
1770
|
+
#editor-x .bg-transparent {
|
|
1811
1771
|
background-color: transparent;
|
|
1812
1772
|
}
|
|
1813
|
-
|
|
1773
|
+
#editor-x .bg-white {
|
|
1814
1774
|
background-color: var(--color-white);
|
|
1815
1775
|
}
|
|
1816
|
-
|
|
1776
|
+
#editor-x .bg-white\/10 {
|
|
1817
1777
|
background-color: color-mix(in srgb, #fff 10%, transparent);
|
|
1818
1778
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1819
1779
|
background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
|
|
1820
1780
|
}
|
|
1821
1781
|
}
|
|
1822
|
-
|
|
1782
|
+
#editor-x .bg-white\/90 {
|
|
1823
1783
|
background-color: color-mix(in srgb, #fff 90%, transparent);
|
|
1824
1784
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1825
1785
|
background-color: color-mix(in oklab, var(--color-white) 90%, transparent);
|
|
1826
1786
|
}
|
|
1827
1787
|
}
|
|
1828
|
-
|
|
1788
|
+
#editor-x .bg-gradient-to-r {
|
|
1829
1789
|
--tw-gradient-position: to right in oklab;
|
|
1830
1790
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
1831
1791
|
}
|
|
1832
|
-
|
|
1792
|
+
#editor-x .bg-\[linear-gradient\(to_right\,\#ff0000_0\%\,\#ffff00_16\.66\%\,\#00ff00_33\.33\%\,\#00ffff_50\%\,\#0000ff_66\.66\%\,\#ff00ff_83\.33\%\,\#ff0000_100\%\)\] {
|
|
1833
1793
|
background-image: linear-gradient(to right,#ff0000 0%,#ffff00 16.66%,#00ff00 33.33%,#00ffff 50%,#0000ff 66.66%,#ff00ff 83.33%,#ff0000 100%);
|
|
1834
1794
|
}
|
|
1835
|
-
|
|
1795
|
+
#editor-x .bg-none {
|
|
1836
1796
|
background-image: none;
|
|
1837
1797
|
}
|
|
1838
|
-
|
|
1798
|
+
#editor-x .from-transparent {
|
|
1839
1799
|
--tw-gradient-from: transparent;
|
|
1840
1800
|
--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));
|
|
1841
1801
|
}
|
|
1842
|
-
|
|
1802
|
+
#editor-x .via-border {
|
|
1843
1803
|
--tw-gradient-via: var(--border);
|
|
1844
1804
|
--tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
|
|
1845
1805
|
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
1846
1806
|
}
|
|
1847
|
-
|
|
1807
|
+
#editor-x .via-white\/20 {
|
|
1848
1808
|
--tw-gradient-via: color-mix(in srgb, #fff 20%, transparent);
|
|
1849
1809
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1850
1810
|
--tw-gradient-via: color-mix(in oklab, var(--color-white) 20%, transparent);
|
|
@@ -1852,434 +1812,430 @@ div.border.border-dashed .editor-image img {
|
|
|
1852
1812
|
--tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
|
|
1853
1813
|
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
1854
1814
|
}
|
|
1855
|
-
|
|
1815
|
+
#editor-x .to-transparent {
|
|
1856
1816
|
--tw-gradient-to: transparent;
|
|
1857
1817
|
--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));
|
|
1858
1818
|
}
|
|
1859
|
-
|
|
1819
|
+
#editor-x .fill-foreground {
|
|
1860
1820
|
fill: var(--foreground);
|
|
1861
1821
|
}
|
|
1862
|
-
|
|
1822
|
+
#editor-x .object-contain {
|
|
1863
1823
|
object-fit: contain;
|
|
1864
1824
|
}
|
|
1865
|
-
|
|
1825
|
+
#editor-x .object-cover {
|
|
1866
1826
|
object-fit: cover;
|
|
1867
1827
|
}
|
|
1868
|
-
|
|
1828
|
+
#editor-x .object-fill {
|
|
1869
1829
|
object-fit: fill;
|
|
1870
1830
|
}
|
|
1871
|
-
|
|
1831
|
+
#editor-x .p-0 {
|
|
1872
1832
|
padding: calc(var(--spacing) * 0);
|
|
1873
1833
|
}
|
|
1874
|
-
|
|
1834
|
+
#editor-x .p-0\.5 {
|
|
1875
1835
|
padding: calc(var(--spacing) * 0.5);
|
|
1876
1836
|
}
|
|
1877
|
-
|
|
1837
|
+
#editor-x .p-1 {
|
|
1878
1838
|
padding: calc(var(--spacing) * 1);
|
|
1879
1839
|
}
|
|
1880
|
-
|
|
1840
|
+
#editor-x .p-2 {
|
|
1881
1841
|
padding: calc(var(--spacing) * 2);
|
|
1882
1842
|
}
|
|
1883
|
-
|
|
1843
|
+
#editor-x .p-4 {
|
|
1884
1844
|
padding: calc(var(--spacing) * 4);
|
|
1885
1845
|
}
|
|
1886
|
-
|
|
1846
|
+
#editor-x .p-6 {
|
|
1887
1847
|
padding: calc(var(--spacing) * 6);
|
|
1888
1848
|
}
|
|
1889
|
-
|
|
1849
|
+
#editor-x .p-8 {
|
|
1890
1850
|
padding: calc(var(--spacing) * 8);
|
|
1891
1851
|
}
|
|
1892
|
-
|
|
1852
|
+
#editor-x .p-px {
|
|
1893
1853
|
padding: 1px;
|
|
1894
1854
|
}
|
|
1895
|
-
|
|
1855
|
+
#editor-x .px-1 {
|
|
1896
1856
|
padding-inline: calc(var(--spacing) * 1);
|
|
1897
1857
|
}
|
|
1898
|
-
|
|
1858
|
+
#editor-x .px-1\.5 {
|
|
1899
1859
|
padding-inline: calc(var(--spacing) * 1.5);
|
|
1900
1860
|
}
|
|
1901
|
-
|
|
1861
|
+
#editor-x .px-2 {
|
|
1902
1862
|
padding-inline: calc(var(--spacing) * 2);
|
|
1903
1863
|
}
|
|
1904
|
-
|
|
1864
|
+
#editor-x .px-2\.5 {
|
|
1905
1865
|
padding-inline: calc(var(--spacing) * 2.5);
|
|
1906
1866
|
}
|
|
1907
|
-
|
|
1867
|
+
#editor-x .px-3 {
|
|
1908
1868
|
padding-inline: calc(var(--spacing) * 3);
|
|
1909
1869
|
}
|
|
1910
|
-
|
|
1870
|
+
#editor-x .px-4 {
|
|
1911
1871
|
padding-inline: calc(var(--spacing) * 4);
|
|
1912
1872
|
}
|
|
1913
|
-
|
|
1873
|
+
#editor-x .px-6 {
|
|
1914
1874
|
padding-inline: calc(var(--spacing) * 6);
|
|
1915
1875
|
}
|
|
1916
|
-
|
|
1876
|
+
#editor-x .px-8 {
|
|
1917
1877
|
padding-inline: calc(var(--spacing) * 8);
|
|
1918
1878
|
}
|
|
1919
|
-
|
|
1879
|
+
#editor-x .px-\[1px\] {
|
|
1920
1880
|
padding-inline: 1px;
|
|
1921
1881
|
}
|
|
1922
|
-
|
|
1882
|
+
#editor-x .py-0\.5 {
|
|
1923
1883
|
padding-block: calc(var(--spacing) * 0.5);
|
|
1924
1884
|
}
|
|
1925
|
-
|
|
1885
|
+
#editor-x .py-1 {
|
|
1926
1886
|
padding-block: calc(var(--spacing) * 1);
|
|
1927
1887
|
}
|
|
1928
|
-
|
|
1888
|
+
#editor-x .py-1\.5 {
|
|
1929
1889
|
padding-block: calc(var(--spacing) * 1.5);
|
|
1930
1890
|
}
|
|
1931
|
-
|
|
1891
|
+
#editor-x .py-2 {
|
|
1932
1892
|
padding-block: calc(var(--spacing) * 2);
|
|
1933
1893
|
}
|
|
1934
|
-
|
|
1894
|
+
#editor-x .py-2\.5 {
|
|
1935
1895
|
padding-block: calc(var(--spacing) * 2.5);
|
|
1936
1896
|
}
|
|
1937
|
-
|
|
1897
|
+
#editor-x .py-3 {
|
|
1938
1898
|
padding-block: calc(var(--spacing) * 3);
|
|
1939
1899
|
}
|
|
1940
|
-
|
|
1900
|
+
#editor-x .py-4 {
|
|
1941
1901
|
padding-block: calc(var(--spacing) * 4);
|
|
1942
1902
|
}
|
|
1943
|
-
|
|
1903
|
+
#editor-x .py-6 {
|
|
1944
1904
|
padding-block: calc(var(--spacing) * 6);
|
|
1945
1905
|
}
|
|
1946
|
-
|
|
1906
|
+
#editor-x .py-8 {
|
|
1947
1907
|
padding-block: calc(var(--spacing) * 8);
|
|
1948
1908
|
}
|
|
1949
|
-
|
|
1909
|
+
#editor-x .py-\[18px\] {
|
|
1950
1910
|
padding-block: 18px;
|
|
1951
1911
|
}
|
|
1952
|
-
|
|
1912
|
+
#editor-x .pt-0 {
|
|
1953
1913
|
padding-top: calc(var(--spacing) * 0);
|
|
1954
1914
|
}
|
|
1955
|
-
|
|
1915
|
+
#editor-x .pt-3 {
|
|
1956
1916
|
padding-top: calc(var(--spacing) * 3);
|
|
1957
1917
|
}
|
|
1958
|
-
|
|
1918
|
+
#editor-x .pt-4 {
|
|
1959
1919
|
padding-top: calc(var(--spacing) * 4);
|
|
1960
1920
|
}
|
|
1961
|
-
|
|
1921
|
+
#editor-x .pt-6 {
|
|
1962
1922
|
padding-top: calc(var(--spacing) * 6);
|
|
1963
1923
|
}
|
|
1964
|
-
|
|
1924
|
+
#editor-x .pr-8 {
|
|
1965
1925
|
padding-right: calc(var(--spacing) * 8);
|
|
1966
1926
|
}
|
|
1967
|
-
|
|
1927
|
+
#editor-x .pr-10 {
|
|
1968
1928
|
padding-right: calc(var(--spacing) * 10);
|
|
1969
1929
|
}
|
|
1970
|
-
|
|
1930
|
+
#editor-x .pr-12 {
|
|
1971
1931
|
padding-right: calc(var(--spacing) * 12);
|
|
1972
1932
|
}
|
|
1973
|
-
|
|
1933
|
+
#editor-x .pb-2 {
|
|
1974
1934
|
padding-bottom: calc(var(--spacing) * 2);
|
|
1975
1935
|
}
|
|
1976
|
-
|
|
1936
|
+
#editor-x .pb-3 {
|
|
1977
1937
|
padding-bottom: calc(var(--spacing) * 3);
|
|
1978
1938
|
}
|
|
1979
|
-
|
|
1939
|
+
#editor-x .pb-4 {
|
|
1980
1940
|
padding-bottom: calc(var(--spacing) * 4);
|
|
1981
1941
|
}
|
|
1982
|
-
|
|
1942
|
+
#editor-x .pb-6 {
|
|
1983
1943
|
padding-bottom: calc(var(--spacing) * 6);
|
|
1984
1944
|
}
|
|
1985
|
-
|
|
1945
|
+
#editor-x .pl-2 {
|
|
1986
1946
|
padding-left: calc(var(--spacing) * 2);
|
|
1987
1947
|
}
|
|
1988
|
-
|
|
1948
|
+
#editor-x .pl-6 {
|
|
1989
1949
|
padding-left: calc(var(--spacing) * 6);
|
|
1990
1950
|
}
|
|
1991
|
-
|
|
1951
|
+
#editor-x .pl-9 {
|
|
1992
1952
|
padding-left: calc(var(--spacing) * 9);
|
|
1993
1953
|
}
|
|
1994
|
-
|
|
1954
|
+
#editor-x .text-center {
|
|
1995
1955
|
text-align: center;
|
|
1996
1956
|
}
|
|
1997
|
-
|
|
1957
|
+
#editor-x .text-left {
|
|
1998
1958
|
text-align: left;
|
|
1999
1959
|
}
|
|
2000
|
-
|
|
1960
|
+
#editor-x .text-right {
|
|
2001
1961
|
text-align: right;
|
|
2002
1962
|
}
|
|
2003
|
-
|
|
1963
|
+
#editor-x .align-top {
|
|
2004
1964
|
vertical-align: top;
|
|
2005
1965
|
}
|
|
2006
|
-
|
|
1966
|
+
#editor-x .font-mono {
|
|
2007
1967
|
font-family: var(--font-mono);
|
|
2008
1968
|
}
|
|
2009
|
-
|
|
1969
|
+
#editor-x .text-2xl {
|
|
2010
1970
|
font-size: var(--text-2xl);
|
|
2011
1971
|
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
2012
1972
|
}
|
|
2013
|
-
|
|
1973
|
+
#editor-x .text-3xl {
|
|
2014
1974
|
font-size: var(--text-3xl);
|
|
2015
1975
|
line-height: var(--tw-leading, var(--text-3xl--line-height));
|
|
2016
1976
|
}
|
|
2017
|
-
|
|
1977
|
+
#editor-x .text-4xl {
|
|
2018
1978
|
font-size: var(--text-4xl);
|
|
2019
1979
|
line-height: var(--tw-leading, var(--text-4xl--line-height));
|
|
2020
1980
|
}
|
|
2021
|
-
|
|
1981
|
+
#editor-x .text-5xl {
|
|
2022
1982
|
font-size: var(--text-5xl);
|
|
2023
1983
|
line-height: var(--tw-leading, var(--text-5xl--line-height));
|
|
2024
1984
|
}
|
|
2025
|
-
|
|
1985
|
+
#editor-x .text-6xl {
|
|
2026
1986
|
font-size: var(--text-6xl);
|
|
2027
1987
|
line-height: var(--tw-leading, var(--text-6xl--line-height));
|
|
2028
1988
|
}
|
|
2029
|
-
|
|
1989
|
+
#editor-x .text-base {
|
|
2030
1990
|
font-size: var(--text-base);
|
|
2031
1991
|
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
2032
1992
|
}
|
|
2033
|
-
|
|
1993
|
+
#editor-x .text-lg {
|
|
2034
1994
|
font-size: var(--text-lg);
|
|
2035
1995
|
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
2036
1996
|
}
|
|
2037
|
-
|
|
1997
|
+
#editor-x .text-sm {
|
|
2038
1998
|
font-size: var(--text-sm);
|
|
2039
1999
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
2040
2000
|
}
|
|
2041
|
-
|
|
2001
|
+
#editor-x .text-xl {
|
|
2042
2002
|
font-size: var(--text-xl);
|
|
2043
2003
|
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
2044
2004
|
}
|
|
2045
|
-
|
|
2005
|
+
#editor-x .text-xs {
|
|
2046
2006
|
font-size: var(--text-xs);
|
|
2047
2007
|
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
2048
2008
|
}
|
|
2049
|
-
|
|
2009
|
+
#editor-x .leading-7 {
|
|
2050
2010
|
--tw-leading: calc(var(--spacing) * 7);
|
|
2051
2011
|
line-height: calc(var(--spacing) * 7);
|
|
2052
2012
|
}
|
|
2053
|
-
|
|
2013
|
+
#editor-x .leading-loose {
|
|
2054
2014
|
--tw-leading: var(--leading-loose);
|
|
2055
2015
|
line-height: var(--leading-loose);
|
|
2056
2016
|
}
|
|
2057
|
-
|
|
2017
|
+
#editor-x .leading-none {
|
|
2058
2018
|
--tw-leading: 1;
|
|
2059
2019
|
line-height: 1;
|
|
2060
2020
|
}
|
|
2061
|
-
|
|
2021
|
+
#editor-x .leading-normal {
|
|
2062
2022
|
--tw-leading: var(--leading-normal);
|
|
2063
2023
|
line-height: var(--leading-normal);
|
|
2064
2024
|
}
|
|
2065
|
-
|
|
2025
|
+
#editor-x .leading-relaxed {
|
|
2066
2026
|
--tw-leading: var(--leading-relaxed);
|
|
2067
2027
|
line-height: var(--leading-relaxed);
|
|
2068
2028
|
}
|
|
2069
|
-
|
|
2029
|
+
#editor-x .leading-tight {
|
|
2070
2030
|
--tw-leading: var(--leading-tight);
|
|
2071
2031
|
line-height: var(--leading-tight);
|
|
2072
2032
|
}
|
|
2073
|
-
|
|
2033
|
+
#editor-x .font-bold {
|
|
2074
2034
|
--tw-font-weight: var(--font-weight-bold);
|
|
2075
2035
|
font-weight: var(--font-weight-bold);
|
|
2076
2036
|
}
|
|
2077
|
-
|
|
2037
|
+
#editor-x .font-extrabold {
|
|
2078
2038
|
--tw-font-weight: var(--font-weight-extrabold);
|
|
2079
2039
|
font-weight: var(--font-weight-extrabold);
|
|
2080
2040
|
}
|
|
2081
|
-
|
|
2041
|
+
#editor-x .font-medium {
|
|
2082
2042
|
--tw-font-weight: var(--font-weight-medium);
|
|
2083
2043
|
font-weight: var(--font-weight-medium);
|
|
2084
2044
|
}
|
|
2085
|
-
|
|
2045
|
+
#editor-x .font-normal {
|
|
2086
2046
|
--tw-font-weight: var(--font-weight-normal);
|
|
2087
2047
|
font-weight: var(--font-weight-normal);
|
|
2088
2048
|
}
|
|
2089
|
-
|
|
2049
|
+
#editor-x .font-semibold {
|
|
2090
2050
|
--tw-font-weight: var(--font-weight-semibold);
|
|
2091
2051
|
font-weight: var(--font-weight-semibold);
|
|
2092
2052
|
}
|
|
2093
|
-
|
|
2053
|
+
#editor-x .tracking-tight {
|
|
2094
2054
|
--tw-tracking: var(--tracking-tight);
|
|
2095
2055
|
letter-spacing: var(--tracking-tight);
|
|
2096
2056
|
}
|
|
2097
|
-
|
|
2057
|
+
#editor-x .tracking-widest {
|
|
2098
2058
|
--tw-tracking: var(--tracking-widest);
|
|
2099
2059
|
letter-spacing: var(--tracking-widest);
|
|
2100
2060
|
}
|
|
2101
|
-
|
|
2061
|
+
#editor-x .text-balance {
|
|
2102
2062
|
text-wrap: balance;
|
|
2103
2063
|
}
|
|
2104
|
-
|
|
2064
|
+
#editor-x .text-ellipsis {
|
|
2105
2065
|
text-overflow: ellipsis;
|
|
2106
2066
|
}
|
|
2107
|
-
|
|
2067
|
+
#editor-x .whitespace-nowrap {
|
|
2108
2068
|
white-space: nowrap;
|
|
2109
2069
|
}
|
|
2110
|
-
|
|
2070
|
+
#editor-x .whitespace-pre-wrap {
|
|
2111
2071
|
white-space: pre-wrap;
|
|
2112
2072
|
}
|
|
2113
|
-
|
|
2073
|
+
#editor-x .text-accent-foreground {
|
|
2114
2074
|
color: var(--accent-foreground);
|
|
2115
2075
|
}
|
|
2116
|
-
|
|
2076
|
+
#editor-x .text-background {
|
|
2117
2077
|
color: var(--background);
|
|
2118
2078
|
}
|
|
2119
|
-
|
|
2079
|
+
#editor-x .text-blue-600 {
|
|
2120
2080
|
color: var(--color-blue-600);
|
|
2121
2081
|
}
|
|
2122
|
-
|
|
2082
|
+
#editor-x .text-destructive {
|
|
2123
2083
|
color: var(--destructive);
|
|
2124
2084
|
}
|
|
2125
|
-
|
|
2085
|
+
#editor-x .text-destructive-foreground {
|
|
2126
2086
|
color: var(--destructive-foreground);
|
|
2127
2087
|
}
|
|
2128
|
-
|
|
2088
|
+
#editor-x .text-foreground {
|
|
2129
2089
|
color: var(--foreground);
|
|
2130
2090
|
}
|
|
2131
|
-
|
|
2091
|
+
#editor-x .text-foreground\/50 {
|
|
2132
2092
|
color: var(--foreground);
|
|
2133
2093
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2134
2094
|
color: color-mix(in oklab, var(--foreground) 50%, transparent);
|
|
2135
2095
|
}
|
|
2136
2096
|
}
|
|
2137
|
-
|
|
2097
|
+
#editor-x .text-foreground\/70 {
|
|
2138
2098
|
color: var(--foreground);
|
|
2139
2099
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2140
2100
|
color: color-mix(in oklab, var(--foreground) 70%, transparent);
|
|
2141
2101
|
}
|
|
2142
2102
|
}
|
|
2143
|
-
|
|
2103
|
+
#editor-x .text-gray-800 {
|
|
2144
2104
|
color: var(--color-gray-800);
|
|
2145
2105
|
}
|
|
2146
|
-
|
|
2106
|
+
#editor-x .text-green-800 {
|
|
2147
2107
|
color: var(--color-green-800);
|
|
2148
2108
|
}
|
|
2149
|
-
|
|
2109
|
+
#editor-x .text-muted-foreground {
|
|
2150
2110
|
color: var(--muted-foreground);
|
|
2151
2111
|
}
|
|
2152
|
-
|
|
2112
|
+
#editor-x .text-popover-foreground {
|
|
2153
2113
|
color: var(--popover-foreground);
|
|
2154
2114
|
}
|
|
2155
|
-
|
|
2115
|
+
#editor-x .text-primary {
|
|
2156
2116
|
color: var(--primary);
|
|
2157
2117
|
}
|
|
2158
|
-
|
|
2118
|
+
#editor-x .text-primary-foreground {
|
|
2159
2119
|
color: var(--primary-foreground);
|
|
2160
2120
|
}
|
|
2161
|
-
|
|
2121
|
+
#editor-x .text-purple-900 {
|
|
2162
2122
|
color: var(--color-purple-900);
|
|
2163
2123
|
}
|
|
2164
|
-
|
|
2124
|
+
#editor-x .text-secondary {
|
|
2165
2125
|
color: var(--secondary);
|
|
2166
2126
|
}
|
|
2167
|
-
|
|
2127
|
+
#editor-x .text-secondary-foreground {
|
|
2168
2128
|
color: var(--secondary-foreground);
|
|
2169
2129
|
}
|
|
2170
|
-
|
|
2130
|
+
#editor-x .text-white\/80 {
|
|
2171
2131
|
color: color-mix(in srgb, #fff 80%, transparent);
|
|
2172
2132
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2173
2133
|
color: color-mix(in oklab, var(--color-white) 80%, transparent);
|
|
2174
2134
|
}
|
|
2175
2135
|
}
|
|
2176
|
-
|
|
2136
|
+
#editor-x .lowercase {
|
|
2177
2137
|
text-transform: lowercase;
|
|
2178
2138
|
}
|
|
2179
|
-
|
|
2139
|
+
#editor-x .uppercase {
|
|
2180
2140
|
text-transform: uppercase;
|
|
2181
2141
|
}
|
|
2182
|
-
|
|
2142
|
+
#editor-x .italic {
|
|
2183
2143
|
font-style: italic;
|
|
2184
2144
|
}
|
|
2185
|
-
|
|
2145
|
+
#editor-x .tabular-nums {
|
|
2186
2146
|
--tw-numeric-spacing: tabular-nums;
|
|
2187
2147
|
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
2188
2148
|
}
|
|
2189
|
-
|
|
2149
|
+
#editor-x .line-through {
|
|
2190
2150
|
text-decoration-line: line-through;
|
|
2191
2151
|
}
|
|
2192
|
-
|
|
2152
|
+
#editor-x .underline {
|
|
2193
2153
|
text-decoration-line: underline;
|
|
2194
2154
|
}
|
|
2195
|
-
|
|
2155
|
+
#editor-x .underline-offset-2 {
|
|
2196
2156
|
text-underline-offset: 2px;
|
|
2197
2157
|
}
|
|
2198
|
-
|
|
2158
|
+
#editor-x .underline-offset-4 {
|
|
2199
2159
|
text-underline-offset: 4px;
|
|
2200
2160
|
}
|
|
2201
|
-
|
|
2161
|
+
#editor-x .caret-primary {
|
|
2202
2162
|
caret-color: var(--primary);
|
|
2203
2163
|
}
|
|
2204
|
-
|
|
2164
|
+
#editor-x .opacity-0 {
|
|
2205
2165
|
opacity: 0%;
|
|
2206
2166
|
}
|
|
2207
|
-
|
|
2167
|
+
#editor-x .opacity-30 {
|
|
2208
2168
|
opacity: 30%;
|
|
2209
2169
|
}
|
|
2210
|
-
|
|
2170
|
+
#editor-x .opacity-50 {
|
|
2211
2171
|
opacity: 50%;
|
|
2212
2172
|
}
|
|
2213
|
-
|
|
2173
|
+
#editor-x .opacity-60 {
|
|
2214
2174
|
opacity: 60%;
|
|
2215
2175
|
}
|
|
2216
|
-
|
|
2176
|
+
#editor-x .opacity-70 {
|
|
2217
2177
|
opacity: 70%;
|
|
2218
2178
|
}
|
|
2219
|
-
|
|
2179
|
+
#editor-x .opacity-80 {
|
|
2220
2180
|
opacity: 80%;
|
|
2221
2181
|
}
|
|
2222
|
-
|
|
2182
|
+
#editor-x .shadow {
|
|
2223
2183
|
--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));
|
|
2224
2184
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2225
2185
|
}
|
|
2226
|
-
|
|
2186
|
+
#editor-x .shadow-2xl {
|
|
2227
2187
|
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
|
|
2228
2188
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2229
2189
|
}
|
|
2230
|
-
|
|
2190
|
+
#editor-x .shadow-inner {
|
|
2231
2191
|
--tw-shadow: inset 0 2px 4px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
2232
2192
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2233
2193
|
}
|
|
2234
|
-
|
|
2194
|
+
#editor-x .shadow-lg {
|
|
2235
2195
|
--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));
|
|
2236
2196
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2237
2197
|
}
|
|
2238
|
-
|
|
2198
|
+
#editor-x .shadow-md {
|
|
2239
2199
|
--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));
|
|
2240
2200
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2241
2201
|
}
|
|
2242
|
-
|
|
2243
|
-
--tw-shadow: 0 0 #0000;
|
|
2244
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2245
|
-
}
|
|
2246
|
-
#editor-x .shadow-sm {
|
|
2202
|
+
#editor-x .shadow-sm {
|
|
2247
2203
|
--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));
|
|
2248
2204
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2249
2205
|
}
|
|
2250
|
-
|
|
2206
|
+
#editor-x .shadow-xs {
|
|
2251
2207
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
2252
2208
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2253
2209
|
}
|
|
2254
|
-
|
|
2210
|
+
#editor-x .ring {
|
|
2255
2211
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2256
2212
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2257
2213
|
}
|
|
2258
|
-
|
|
2214
|
+
#editor-x .ring-2 {
|
|
2259
2215
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2260
2216
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2261
2217
|
}
|
|
2262
|
-
|
|
2218
|
+
#editor-x .shadow-black\/5 {
|
|
2263
2219
|
--tw-shadow-color: color-mix(in srgb, #000 5%, transparent);
|
|
2264
2220
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2265
2221
|
--tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-black) 5%, transparent) var(--tw-shadow-alpha), transparent);
|
|
2266
2222
|
}
|
|
2267
2223
|
}
|
|
2268
|
-
|
|
2224
|
+
#editor-x .ring-primary {
|
|
2269
2225
|
--tw-ring-color: var(--primary);
|
|
2270
2226
|
}
|
|
2271
|
-
|
|
2227
|
+
#editor-x .ring-offset-1 {
|
|
2272
2228
|
--tw-ring-offset-width: 1px;
|
|
2273
2229
|
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2274
2230
|
}
|
|
2275
|
-
|
|
2231
|
+
#editor-x .ring-offset-2 {
|
|
2276
2232
|
--tw-ring-offset-width: 2px;
|
|
2277
2233
|
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2278
2234
|
}
|
|
2279
|
-
|
|
2235
|
+
#editor-x .ring-offset-background {
|
|
2280
2236
|
--tw-ring-offset-color: var(--background);
|
|
2281
2237
|
}
|
|
2282
|
-
|
|
2238
|
+
#editor-x .outline-hidden {
|
|
2283
2239
|
--tw-outline-style: none;
|
|
2284
2240
|
outline-style: none;
|
|
2285
2241
|
@media (forced-colors: active) {
|
|
@@ -2287,121 +2243,121 @@ div.border.border-dashed .editor-image img {
|
|
|
2287
2243
|
outline-offset: 2px;
|
|
2288
2244
|
}
|
|
2289
2245
|
}
|
|
2290
|
-
|
|
2246
|
+
#editor-x .outline {
|
|
2291
2247
|
outline-style: var(--tw-outline-style);
|
|
2292
2248
|
outline-width: 1px;
|
|
2293
2249
|
}
|
|
2294
|
-
|
|
2250
|
+
#editor-x .outline-offset-2 {
|
|
2295
2251
|
outline-offset: 2px;
|
|
2296
2252
|
}
|
|
2297
|
-
|
|
2253
|
+
#editor-x .blur {
|
|
2298
2254
|
--tw-blur: blur(8px);
|
|
2299
2255
|
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,);
|
|
2300
2256
|
}
|
|
2301
|
-
|
|
2257
|
+
#editor-x .blur-2xl {
|
|
2302
2258
|
--tw-blur: blur(var(--blur-2xl));
|
|
2303
2259
|
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,);
|
|
2304
2260
|
}
|
|
2305
|
-
|
|
2261
|
+
#editor-x .blur-3xl {
|
|
2306
2262
|
--tw-blur: blur(var(--blur-3xl));
|
|
2307
2263
|
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,);
|
|
2308
2264
|
}
|
|
2309
|
-
|
|
2265
|
+
#editor-x .blur-xl {
|
|
2310
2266
|
--tw-blur: blur(var(--blur-xl));
|
|
2311
2267
|
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,);
|
|
2312
2268
|
}
|
|
2313
|
-
|
|
2269
|
+
#editor-x .backdrop-blur-sm {
|
|
2314
2270
|
--tw-backdrop-blur: blur(var(--blur-sm));
|
|
2315
2271
|
-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,);
|
|
2316
2272
|
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,);
|
|
2317
2273
|
}
|
|
2318
|
-
|
|
2274
|
+
#editor-x .transition {
|
|
2319
2275
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
|
2320
2276
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2321
2277
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2322
2278
|
}
|
|
2323
|
-
|
|
2279
|
+
#editor-x .transition-\[color\,box-shadow\] {
|
|
2324
2280
|
transition-property: color,box-shadow;
|
|
2325
2281
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2326
2282
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2327
2283
|
}
|
|
2328
|
-
|
|
2284
|
+
#editor-x .transition-all {
|
|
2329
2285
|
transition-property: all;
|
|
2330
2286
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2331
2287
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2332
2288
|
}
|
|
2333
|
-
|
|
2289
|
+
#editor-x .transition-colors {
|
|
2334
2290
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
2335
2291
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2336
2292
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2337
2293
|
}
|
|
2338
|
-
|
|
2294
|
+
#editor-x .transition-opacity {
|
|
2339
2295
|
transition-property: opacity;
|
|
2340
2296
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2341
2297
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2342
2298
|
}
|
|
2343
|
-
|
|
2299
|
+
#editor-x .transition-transform {
|
|
2344
2300
|
transition-property: transform, translate, scale, rotate;
|
|
2345
2301
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2346
2302
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2347
2303
|
}
|
|
2348
|
-
|
|
2304
|
+
#editor-x .duration-200 {
|
|
2349
2305
|
--tw-duration: 200ms;
|
|
2350
2306
|
transition-duration: 200ms;
|
|
2351
2307
|
}
|
|
2352
|
-
|
|
2308
|
+
#editor-x .duration-300 {
|
|
2353
2309
|
--tw-duration: 300ms;
|
|
2354
2310
|
transition-duration: 300ms;
|
|
2355
2311
|
}
|
|
2356
|
-
|
|
2312
|
+
#editor-x .will-change-transform {
|
|
2357
2313
|
will-change: transform;
|
|
2358
2314
|
}
|
|
2359
|
-
|
|
2315
|
+
#editor-x .outline-none {
|
|
2360
2316
|
--tw-outline-style: none;
|
|
2361
2317
|
outline-style: none;
|
|
2362
2318
|
}
|
|
2363
|
-
|
|
2319
|
+
#editor-x .select-none {
|
|
2364
2320
|
-webkit-user-select: none;
|
|
2365
2321
|
user-select: none;
|
|
2366
2322
|
}
|
|
2367
|
-
|
|
2323
|
+
#editor-x .select-text {
|
|
2368
2324
|
-webkit-user-select: text;
|
|
2369
2325
|
user-select: text;
|
|
2370
2326
|
}
|
|
2371
|
-
|
|
2327
|
+
#editor-x .\[--lexical-indent-base-value\:40px\] {
|
|
2372
2328
|
--lexical-indent-base-value: 40px;
|
|
2373
2329
|
}
|
|
2374
|
-
|
|
2330
|
+
#editor-x .\[-moz-appearance\:_textfield\] {
|
|
2375
2331
|
-moz-appearance: textfield;
|
|
2376
2332
|
}
|
|
2377
|
-
|
|
2333
|
+
#editor-x .group-hover\:text-primary-foreground {
|
|
2378
2334
|
#editor-x &:is(:where(.group):hover *) {
|
|
2379
2335
|
@media (hover: hover) {
|
|
2380
2336
|
color: var(--primary-foreground);
|
|
2381
2337
|
}
|
|
2382
2338
|
}
|
|
2383
2339
|
}
|
|
2384
|
-
|
|
2340
|
+
#editor-x .group-data-\[disabled\=true\]\:pointer-events-none {
|
|
2385
2341
|
#editor-x &:is(:where(.group)[data-disabled="true"] *) {
|
|
2386
2342
|
pointer-events: none;
|
|
2387
2343
|
}
|
|
2388
2344
|
}
|
|
2389
|
-
|
|
2345
|
+
#editor-x .group-data-\[disabled\=true\]\:opacity-50 {
|
|
2390
2346
|
#editor-x &:is(:where(.group)[data-disabled="true"] *) {
|
|
2391
2347
|
opacity: 50%;
|
|
2392
2348
|
}
|
|
2393
2349
|
}
|
|
2394
|
-
|
|
2350
|
+
#editor-x .peer-disabled\:cursor-not-allowed {
|
|
2395
2351
|
#editor-x &:is(:where(.peer):disabled ~ *) {
|
|
2396
2352
|
cursor: not-allowed;
|
|
2397
2353
|
}
|
|
2398
2354
|
}
|
|
2399
|
-
|
|
2355
|
+
#editor-x .peer-disabled\:opacity-50 {
|
|
2400
2356
|
#editor-x &:is(:where(.peer):disabled ~ *) {
|
|
2401
2357
|
opacity: 50%;
|
|
2402
2358
|
}
|
|
2403
2359
|
}
|
|
2404
|
-
|
|
2360
|
+
#editor-x .selection\:bg-primary {
|
|
2405
2361
|
#editor-x & *::selection {
|
|
2406
2362
|
background-color: var(--primary);
|
|
2407
2363
|
}
|
|
@@ -2409,7 +2365,7 @@ div.border.border-dashed .editor-image img {
|
|
|
2409
2365
|
background-color: var(--primary);
|
|
2410
2366
|
}
|
|
2411
2367
|
}
|
|
2412
|
-
|
|
2368
|
+
#editor-x .selection\:text-primary-foreground {
|
|
2413
2369
|
#editor-x & *::selection {
|
|
2414
2370
|
color: var(--primary-foreground);
|
|
2415
2371
|
}
|
|
@@ -2417,271 +2373,271 @@ div.border.border-dashed .editor-image img {
|
|
|
2417
2373
|
color: var(--primary-foreground);
|
|
2418
2374
|
}
|
|
2419
2375
|
}
|
|
2420
|
-
|
|
2376
|
+
#editor-x .file\:inline-flex {
|
|
2421
2377
|
#editor-x &::file-selector-button {
|
|
2422
2378
|
display: inline-flex;
|
|
2423
2379
|
}
|
|
2424
2380
|
}
|
|
2425
|
-
|
|
2381
|
+
#editor-x .file\:h-7 {
|
|
2426
2382
|
#editor-x &::file-selector-button {
|
|
2427
2383
|
height: calc(var(--spacing) * 7);
|
|
2428
2384
|
}
|
|
2429
2385
|
}
|
|
2430
|
-
|
|
2386
|
+
#editor-x .file\:border-0 {
|
|
2431
2387
|
#editor-x &::file-selector-button {
|
|
2432
2388
|
border-style: var(--tw-border-style);
|
|
2433
2389
|
border-width: 0px;
|
|
2434
2390
|
}
|
|
2435
2391
|
}
|
|
2436
|
-
|
|
2392
|
+
#editor-x .file\:bg-transparent {
|
|
2437
2393
|
#editor-x &::file-selector-button {
|
|
2438
2394
|
background-color: transparent;
|
|
2439
2395
|
}
|
|
2440
2396
|
}
|
|
2441
|
-
|
|
2397
|
+
#editor-x .file\:font-medium {
|
|
2442
2398
|
#editor-x &::file-selector-button {
|
|
2443
2399
|
--tw-font-weight: var(--font-weight-medium);
|
|
2444
2400
|
font-weight: var(--font-weight-medium);
|
|
2445
2401
|
}
|
|
2446
2402
|
}
|
|
2447
|
-
|
|
2403
|
+
#editor-x .file\:text-foreground {
|
|
2448
2404
|
#editor-x &::file-selector-button {
|
|
2449
2405
|
color: var(--foreground);
|
|
2450
2406
|
}
|
|
2451
2407
|
}
|
|
2452
|
-
|
|
2408
|
+
#editor-x .placeholder\:text-muted-foreground {
|
|
2453
2409
|
#editor-x &::placeholder {
|
|
2454
2410
|
color: var(--muted-foreground);
|
|
2455
2411
|
}
|
|
2456
2412
|
}
|
|
2457
|
-
|
|
2413
|
+
#editor-x .before\:absolute {
|
|
2458
2414
|
#editor-x &::before {
|
|
2459
2415
|
content: var(--tw-content);
|
|
2460
2416
|
position: absolute;
|
|
2461
2417
|
}
|
|
2462
2418
|
}
|
|
2463
|
-
|
|
2419
|
+
#editor-x .before\:top-0\.5 {
|
|
2464
2420
|
#editor-x &::before {
|
|
2465
2421
|
content: var(--tw-content);
|
|
2466
2422
|
top: calc(var(--spacing) * 0.5);
|
|
2467
2423
|
}
|
|
2468
2424
|
}
|
|
2469
|
-
|
|
2425
|
+
#editor-x .before\:left-0 {
|
|
2470
2426
|
#editor-x &::before {
|
|
2471
2427
|
content: var(--tw-content);
|
|
2472
2428
|
left: calc(var(--spacing) * 0);
|
|
2473
2429
|
}
|
|
2474
2430
|
}
|
|
2475
|
-
|
|
2431
|
+
#editor-x .before\:block {
|
|
2476
2432
|
#editor-x &::before {
|
|
2477
2433
|
content: var(--tw-content);
|
|
2478
2434
|
display: block;
|
|
2479
2435
|
}
|
|
2480
2436
|
}
|
|
2481
|
-
|
|
2437
|
+
#editor-x .before\:hidden {
|
|
2482
2438
|
#editor-x &::before {
|
|
2483
2439
|
content: var(--tw-content);
|
|
2484
2440
|
display: none;
|
|
2485
2441
|
}
|
|
2486
2442
|
}
|
|
2487
|
-
|
|
2443
|
+
#editor-x .before\:h-4 {
|
|
2488
2444
|
#editor-x &::before {
|
|
2489
2445
|
content: var(--tw-content);
|
|
2490
2446
|
height: calc(var(--spacing) * 4);
|
|
2491
2447
|
}
|
|
2492
2448
|
}
|
|
2493
|
-
|
|
2449
|
+
#editor-x .before\:w-4 {
|
|
2494
2450
|
#editor-x &::before {
|
|
2495
2451
|
content: var(--tw-content);
|
|
2496
2452
|
width: calc(var(--spacing) * 4);
|
|
2497
2453
|
}
|
|
2498
2454
|
}
|
|
2499
|
-
|
|
2455
|
+
#editor-x .before\:cursor-pointer {
|
|
2500
2456
|
#editor-x &::before {
|
|
2501
2457
|
content: var(--tw-content);
|
|
2502
2458
|
cursor: pointer;
|
|
2503
2459
|
}
|
|
2504
2460
|
}
|
|
2505
|
-
|
|
2461
|
+
#editor-x .before\:rounded {
|
|
2506
2462
|
#editor-x &::before {
|
|
2507
2463
|
content: var(--tw-content);
|
|
2508
2464
|
border-radius: var(--radius, 0.5rem);
|
|
2509
2465
|
}
|
|
2510
2466
|
}
|
|
2511
|
-
|
|
2467
|
+
#editor-x .before\:border {
|
|
2512
2468
|
#editor-x &::before {
|
|
2513
2469
|
content: var(--tw-content);
|
|
2514
2470
|
border-style: var(--tw-border-style);
|
|
2515
2471
|
border-width: 1px;
|
|
2516
2472
|
}
|
|
2517
2473
|
}
|
|
2518
|
-
|
|
2474
|
+
#editor-x .before\:border-primary {
|
|
2519
2475
|
#editor-x &::before {
|
|
2520
2476
|
content: var(--tw-content);
|
|
2521
2477
|
border-color: var(--primary);
|
|
2522
2478
|
}
|
|
2523
2479
|
}
|
|
2524
|
-
|
|
2480
|
+
#editor-x .before\:bg-primary {
|
|
2525
2481
|
#editor-x &::before {
|
|
2526
2482
|
content: var(--tw-content);
|
|
2527
2483
|
background-color: var(--primary);
|
|
2528
2484
|
}
|
|
2529
2485
|
}
|
|
2530
|
-
|
|
2486
|
+
#editor-x .before\:bg-cover {
|
|
2531
2487
|
#editor-x &::before {
|
|
2532
2488
|
content: var(--tw-content);
|
|
2533
2489
|
background-size: cover;
|
|
2534
2490
|
}
|
|
2535
2491
|
}
|
|
2536
|
-
|
|
2492
|
+
#editor-x .before\:bg-no-repeat {
|
|
2537
2493
|
#editor-x &::before {
|
|
2538
2494
|
content: var(--tw-content);
|
|
2539
2495
|
background-repeat: no-repeat;
|
|
2540
2496
|
}
|
|
2541
2497
|
}
|
|
2542
|
-
|
|
2498
|
+
#editor-x .before\:content-\[\"\"\] {
|
|
2543
2499
|
#editor-x &::before {
|
|
2544
2500
|
--tw-content: "";
|
|
2545
2501
|
content: var(--tw-content);
|
|
2546
2502
|
}
|
|
2547
2503
|
}
|
|
2548
|
-
|
|
2504
|
+
#editor-x .after\:absolute {
|
|
2549
2505
|
#editor-x &::after {
|
|
2550
2506
|
content: var(--tw-content);
|
|
2551
2507
|
position: absolute;
|
|
2552
2508
|
}
|
|
2553
2509
|
}
|
|
2554
|
-
|
|
2510
|
+
#editor-x .after\:top-\[6px\] {
|
|
2555
2511
|
#editor-x &::after {
|
|
2556
2512
|
content: var(--tw-content);
|
|
2557
2513
|
top: 6px;
|
|
2558
2514
|
}
|
|
2559
2515
|
}
|
|
2560
|
-
|
|
2516
|
+
#editor-x .after\:right-\[7px\] {
|
|
2561
2517
|
#editor-x &::after {
|
|
2562
2518
|
content: var(--tw-content);
|
|
2563
2519
|
right: 7px;
|
|
2564
2520
|
}
|
|
2565
2521
|
}
|
|
2566
|
-
|
|
2522
|
+
#editor-x .after\:left-\[7px\] {
|
|
2567
2523
|
#editor-x &::after {
|
|
2568
2524
|
content: var(--tw-content);
|
|
2569
2525
|
left: 7px;
|
|
2570
2526
|
}
|
|
2571
2527
|
}
|
|
2572
|
-
|
|
2528
|
+
#editor-x .after\:block {
|
|
2573
2529
|
#editor-x &::after {
|
|
2574
2530
|
content: var(--tw-content);
|
|
2575
2531
|
display: block;
|
|
2576
2532
|
}
|
|
2577
2533
|
}
|
|
2578
|
-
|
|
2534
|
+
#editor-x .after\:hidden {
|
|
2579
2535
|
#editor-x &::after {
|
|
2580
2536
|
content: var(--tw-content);
|
|
2581
2537
|
display: none;
|
|
2582
2538
|
}
|
|
2583
2539
|
}
|
|
2584
|
-
|
|
2540
|
+
#editor-x .after\:h-0\.5 {
|
|
2585
2541
|
#editor-x &::after {
|
|
2586
2542
|
content: var(--tw-content);
|
|
2587
2543
|
height: calc(var(--spacing) * 0.5);
|
|
2588
2544
|
}
|
|
2589
2545
|
}
|
|
2590
|
-
|
|
2546
|
+
#editor-x .after\:h-\[6px\] {
|
|
2591
2547
|
#editor-x &::after {
|
|
2592
2548
|
content: var(--tw-content);
|
|
2593
2549
|
height: 6px;
|
|
2594
2550
|
}
|
|
2595
2551
|
}
|
|
2596
|
-
|
|
2552
|
+
#editor-x .after\:w-\[3px\] {
|
|
2597
2553
|
#editor-x &::after {
|
|
2598
2554
|
content: var(--tw-content);
|
|
2599
2555
|
width: 3px;
|
|
2600
2556
|
}
|
|
2601
2557
|
}
|
|
2602
|
-
|
|
2558
|
+
#editor-x .after\:rotate-45 {
|
|
2603
2559
|
#editor-x &::after {
|
|
2604
2560
|
content: var(--tw-content);
|
|
2605
2561
|
rotate: 45deg;
|
|
2606
2562
|
}
|
|
2607
2563
|
}
|
|
2608
|
-
|
|
2564
|
+
#editor-x .after\:cursor-pointer {
|
|
2609
2565
|
#editor-x &::after {
|
|
2610
2566
|
content: var(--tw-content);
|
|
2611
2567
|
cursor: pointer;
|
|
2612
2568
|
}
|
|
2613
2569
|
}
|
|
2614
|
-
|
|
2570
|
+
#editor-x .after\:border-t-0 {
|
|
2615
2571
|
#editor-x &::after {
|
|
2616
2572
|
content: var(--tw-content);
|
|
2617
2573
|
border-top-style: var(--tw-border-style);
|
|
2618
2574
|
border-top-width: 0px;
|
|
2619
2575
|
}
|
|
2620
2576
|
}
|
|
2621
|
-
|
|
2577
|
+
#editor-x .after\:border-r-2 {
|
|
2622
2578
|
#editor-x &::after {
|
|
2623
2579
|
content: var(--tw-content);
|
|
2624
2580
|
border-right-style: var(--tw-border-style);
|
|
2625
2581
|
border-right-width: 2px;
|
|
2626
2582
|
}
|
|
2627
2583
|
}
|
|
2628
|
-
|
|
2584
|
+
#editor-x .after\:border-b-2 {
|
|
2629
2585
|
#editor-x &::after {
|
|
2630
2586
|
content: var(--tw-content);
|
|
2631
2587
|
border-bottom-style: var(--tw-border-style);
|
|
2632
2588
|
border-bottom-width: 2px;
|
|
2633
2589
|
}
|
|
2634
2590
|
}
|
|
2635
|
-
|
|
2591
|
+
#editor-x .after\:border-l-0 {
|
|
2636
2592
|
#editor-x &::after {
|
|
2637
2593
|
content: var(--tw-content);
|
|
2638
2594
|
border-left-style: var(--tw-border-style);
|
|
2639
2595
|
border-left-width: 0px;
|
|
2640
2596
|
}
|
|
2641
2597
|
}
|
|
2642
|
-
|
|
2598
|
+
#editor-x .after\:border-solid {
|
|
2643
2599
|
#editor-x &::after {
|
|
2644
2600
|
content: var(--tw-content);
|
|
2645
2601
|
--tw-border-style: solid;
|
|
2646
2602
|
border-style: solid;
|
|
2647
2603
|
}
|
|
2648
2604
|
}
|
|
2649
|
-
|
|
2605
|
+
#editor-x .after\:border-white {
|
|
2650
2606
|
#editor-x &::after {
|
|
2651
2607
|
content: var(--tw-content);
|
|
2652
2608
|
border-color: var(--color-white);
|
|
2653
2609
|
}
|
|
2654
2610
|
}
|
|
2655
|
-
|
|
2611
|
+
#editor-x .after\:bg-muted {
|
|
2656
2612
|
#editor-x &::after {
|
|
2657
2613
|
content: var(--tw-content);
|
|
2658
2614
|
background-color: var(--muted);
|
|
2659
2615
|
}
|
|
2660
2616
|
}
|
|
2661
|
-
|
|
2617
|
+
#editor-x .after\:content-\[\"\"\] {
|
|
2662
2618
|
#editor-x &::after {
|
|
2663
2619
|
--tw-content: "";
|
|
2664
2620
|
content: var(--tw-content);
|
|
2665
2621
|
}
|
|
2666
2622
|
}
|
|
2667
|
-
|
|
2623
|
+
#editor-x .first\:mt-0 {
|
|
2668
2624
|
#editor-x &:first-child {
|
|
2669
2625
|
margin-top: calc(var(--spacing) * 0);
|
|
2670
2626
|
}
|
|
2671
2627
|
}
|
|
2672
|
-
|
|
2628
|
+
#editor-x .even\:bg-muted {
|
|
2673
2629
|
#editor-x &:nth-child(even) {
|
|
2674
2630
|
background-color: var(--muted);
|
|
2675
2631
|
}
|
|
2676
2632
|
}
|
|
2677
|
-
|
|
2633
|
+
#editor-x .hover\:cursor-pointer {
|
|
2678
2634
|
#editor-x &:hover {
|
|
2679
2635
|
@media (hover: hover) {
|
|
2680
2636
|
cursor: pointer;
|
|
2681
2637
|
}
|
|
2682
2638
|
}
|
|
2683
2639
|
}
|
|
2684
|
-
|
|
2640
|
+
#editor-x .hover\:border-primary\/50 {
|
|
2685
2641
|
#editor-x &:hover {
|
|
2686
2642
|
@media (hover: hover) {
|
|
2687
2643
|
border-color: var(--primary);
|
|
@@ -2691,14 +2647,14 @@ div.border.border-dashed .editor-image img {
|
|
|
2691
2647
|
}
|
|
2692
2648
|
}
|
|
2693
2649
|
}
|
|
2694
|
-
|
|
2650
|
+
#editor-x .hover\:bg-accent {
|
|
2695
2651
|
#editor-x &:hover {
|
|
2696
2652
|
@media (hover: hover) {
|
|
2697
2653
|
background-color: var(--accent);
|
|
2698
2654
|
}
|
|
2699
2655
|
}
|
|
2700
2656
|
}
|
|
2701
|
-
|
|
2657
|
+
#editor-x .hover\:bg-accent\/10 {
|
|
2702
2658
|
#editor-x &:hover {
|
|
2703
2659
|
@media (hover: hover) {
|
|
2704
2660
|
background-color: var(--accent);
|
|
@@ -2708,7 +2664,7 @@ div.border.border-dashed .editor-image img {
|
|
|
2708
2664
|
}
|
|
2709
2665
|
}
|
|
2710
2666
|
}
|
|
2711
|
-
|
|
2667
|
+
#editor-x .hover\:bg-accent\/50 {
|
|
2712
2668
|
#editor-x &:hover {
|
|
2713
2669
|
@media (hover: hover) {
|
|
2714
2670
|
background-color: var(--accent);
|
|
@@ -2718,7 +2674,7 @@ div.border.border-dashed .editor-image img {
|
|
|
2718
2674
|
}
|
|
2719
2675
|
}
|
|
2720
2676
|
}
|
|
2721
|
-
|
|
2677
|
+
#editor-x .hover\:bg-background\/50 {
|
|
2722
2678
|
#editor-x &:hover {
|
|
2723
2679
|
@media (hover: hover) {
|
|
2724
2680
|
background-color: var(--background);
|
|
@@ -2728,7 +2684,7 @@ div.border.border-dashed .editor-image img {
|
|
|
2728
2684
|
}
|
|
2729
2685
|
}
|
|
2730
2686
|
}
|
|
2731
|
-
|
|
2687
|
+
#editor-x .hover\:bg-destructive\/10 {
|
|
2732
2688
|
#editor-x &:hover {
|
|
2733
2689
|
@media (hover: hover) {
|
|
2734
2690
|
background-color: var(--destructive);
|
|
@@ -2738,7 +2694,7 @@ div.border.border-dashed .editor-image img {
|
|
|
2738
2694
|
}
|
|
2739
2695
|
}
|
|
2740
2696
|
}
|
|
2741
|
-
|
|
2697
|
+
#editor-x .hover\:bg-destructive\/90 {
|
|
2742
2698
|
#editor-x &:hover {
|
|
2743
2699
|
@media (hover: hover) {
|
|
2744
2700
|
background-color: var(--destructive);
|
|
@@ -2748,21 +2704,21 @@ div.border.border-dashed .editor-image img {
|
|
|
2748
2704
|
}
|
|
2749
2705
|
}
|
|
2750
2706
|
}
|
|
2751
|
-
|
|
2707
|
+
#editor-x .hover\:bg-gray-100 {
|
|
2752
2708
|
#editor-x &:hover {
|
|
2753
2709
|
@media (hover: hover) {
|
|
2754
2710
|
background-color: var(--color-gray-100);
|
|
2755
2711
|
}
|
|
2756
2712
|
}
|
|
2757
2713
|
}
|
|
2758
|
-
|
|
2714
|
+
#editor-x .hover\:bg-muted {
|
|
2759
2715
|
#editor-x &:hover {
|
|
2760
2716
|
@media (hover: hover) {
|
|
2761
2717
|
background-color: var(--muted);
|
|
2762
2718
|
}
|
|
2763
2719
|
}
|
|
2764
2720
|
}
|
|
2765
|
-
|
|
2721
|
+
#editor-x .hover\:bg-primary\/10 {
|
|
2766
2722
|
#editor-x &:hover {
|
|
2767
2723
|
@media (hover: hover) {
|
|
2768
2724
|
background-color: var(--primary);
|
|
@@ -2772,7 +2728,7 @@ div.border.border-dashed .editor-image img {
|
|
|
2772
2728
|
}
|
|
2773
2729
|
}
|
|
2774
2730
|
}
|
|
2775
|
-
|
|
2731
|
+
#editor-x .hover\:bg-primary\/90 {
|
|
2776
2732
|
#editor-x &:hover {
|
|
2777
2733
|
@media (hover: hover) {
|
|
2778
2734
|
background-color: var(--primary);
|
|
@@ -2782,7 +2738,7 @@ div.border.border-dashed .editor-image img {
|
|
|
2782
2738
|
}
|
|
2783
2739
|
}
|
|
2784
2740
|
}
|
|
2785
|
-
|
|
2741
|
+
#editor-x .hover\:bg-secondary\/80 {
|
|
2786
2742
|
#editor-x &:hover {
|
|
2787
2743
|
@media (hover: hover) {
|
|
2788
2744
|
background-color: var(--secondary);
|
|
@@ -2792,88 +2748,88 @@ div.border.border-dashed .editor-image img {
|
|
|
2792
2748
|
}
|
|
2793
2749
|
}
|
|
2794
2750
|
}
|
|
2795
|
-
|
|
2751
|
+
#editor-x .hover\:bg-transparent {
|
|
2796
2752
|
#editor-x &:hover {
|
|
2797
2753
|
@media (hover: hover) {
|
|
2798
2754
|
background-color: transparent;
|
|
2799
2755
|
}
|
|
2800
2756
|
}
|
|
2801
2757
|
}
|
|
2802
|
-
|
|
2758
|
+
#editor-x .hover\:text-accent-foreground {
|
|
2803
2759
|
#editor-x &:hover {
|
|
2804
2760
|
@media (hover: hover) {
|
|
2805
2761
|
color: var(--accent-foreground);
|
|
2806
2762
|
}
|
|
2807
2763
|
}
|
|
2808
2764
|
}
|
|
2809
|
-
|
|
2765
|
+
#editor-x .hover\:text-foreground {
|
|
2810
2766
|
#editor-x &:hover {
|
|
2811
2767
|
@media (hover: hover) {
|
|
2812
2768
|
color: var(--foreground);
|
|
2813
2769
|
}
|
|
2814
2770
|
}
|
|
2815
2771
|
}
|
|
2816
|
-
|
|
2772
|
+
#editor-x .hover\:text-muted-foreground {
|
|
2817
2773
|
#editor-x &:hover {
|
|
2818
2774
|
@media (hover: hover) {
|
|
2819
2775
|
color: var(--muted-foreground);
|
|
2820
2776
|
}
|
|
2821
2777
|
}
|
|
2822
2778
|
}
|
|
2823
|
-
|
|
2779
|
+
#editor-x .hover\:text-white {
|
|
2824
2780
|
#editor-x &:hover {
|
|
2825
2781
|
@media (hover: hover) {
|
|
2826
2782
|
color: var(--color-white);
|
|
2827
2783
|
}
|
|
2828
2784
|
}
|
|
2829
2785
|
}
|
|
2830
|
-
|
|
2786
|
+
#editor-x .hover\:underline {
|
|
2831
2787
|
#editor-x &:hover {
|
|
2832
2788
|
@media (hover: hover) {
|
|
2833
2789
|
text-decoration-line: underline;
|
|
2834
2790
|
}
|
|
2835
2791
|
}
|
|
2836
2792
|
}
|
|
2837
|
-
|
|
2793
|
+
#editor-x .hover\:opacity-100 {
|
|
2838
2794
|
#editor-x &:hover {
|
|
2839
2795
|
@media (hover: hover) {
|
|
2840
2796
|
opacity: 100%;
|
|
2841
2797
|
}
|
|
2842
2798
|
}
|
|
2843
2799
|
}
|
|
2844
|
-
|
|
2800
|
+
#editor-x .focus\:z-10 {
|
|
2845
2801
|
#editor-x &:focus {
|
|
2846
2802
|
z-index: 10;
|
|
2847
2803
|
}
|
|
2848
2804
|
}
|
|
2849
|
-
|
|
2805
|
+
#editor-x .focus\:bg-accent {
|
|
2850
2806
|
#editor-x &:focus {
|
|
2851
2807
|
background-color: var(--accent);
|
|
2852
2808
|
}
|
|
2853
2809
|
}
|
|
2854
|
-
|
|
2810
|
+
#editor-x .focus\:text-accent-foreground {
|
|
2855
2811
|
#editor-x &:focus {
|
|
2856
2812
|
color: var(--accent-foreground);
|
|
2857
2813
|
}
|
|
2858
2814
|
}
|
|
2859
|
-
|
|
2815
|
+
#editor-x .focus\:ring-2 {
|
|
2860
2816
|
#editor-x &:focus {
|
|
2861
2817
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2862
2818
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2863
2819
|
}
|
|
2864
2820
|
}
|
|
2865
|
-
|
|
2821
|
+
#editor-x .focus\:ring-ring {
|
|
2866
2822
|
#editor-x &:focus {
|
|
2867
2823
|
--tw-ring-color: var(--ring);
|
|
2868
2824
|
}
|
|
2869
2825
|
}
|
|
2870
|
-
|
|
2826
|
+
#editor-x .focus\:ring-offset-2 {
|
|
2871
2827
|
#editor-x &:focus {
|
|
2872
2828
|
--tw-ring-offset-width: 2px;
|
|
2873
2829
|
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2874
2830
|
}
|
|
2875
2831
|
}
|
|
2876
|
-
|
|
2832
|
+
#editor-x .focus\:outline-hidden {
|
|
2877
2833
|
#editor-x &:focus {
|
|
2878
2834
|
--tw-outline-style: none;
|
|
2879
2835
|
outline-style: none;
|
|
@@ -2883,40 +2839,40 @@ div.border.border-dashed .editor-image img {
|
|
|
2883
2839
|
}
|
|
2884
2840
|
}
|
|
2885
2841
|
}
|
|
2886
|
-
|
|
2842
|
+
#editor-x .focus\:outline-none {
|
|
2887
2843
|
#editor-x &:focus {
|
|
2888
2844
|
--tw-outline-style: none;
|
|
2889
2845
|
outline-style: none;
|
|
2890
2846
|
}
|
|
2891
2847
|
}
|
|
2892
|
-
|
|
2848
|
+
#editor-x .focus-visible\:z-10 {
|
|
2893
2849
|
#editor-x &:focus-visible {
|
|
2894
2850
|
z-index: 10;
|
|
2895
2851
|
}
|
|
2896
2852
|
}
|
|
2897
|
-
|
|
2853
|
+
#editor-x .focus-visible\:border-ring {
|
|
2898
2854
|
#editor-x &:focus-visible {
|
|
2899
2855
|
border-color: var(--ring);
|
|
2900
2856
|
}
|
|
2901
2857
|
}
|
|
2902
|
-
|
|
2858
|
+
#editor-x .focus-visible\:ring-1 {
|
|
2903
2859
|
#editor-x &:focus-visible {
|
|
2904
2860
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2905
2861
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2906
2862
|
}
|
|
2907
2863
|
}
|
|
2908
|
-
|
|
2864
|
+
#editor-x .focus-visible\:ring-\[3px\] {
|
|
2909
2865
|
#editor-x &:focus-visible {
|
|
2910
2866
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2911
2867
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2912
2868
|
}
|
|
2913
2869
|
}
|
|
2914
|
-
|
|
2870
|
+
#editor-x .focus-visible\:ring-ring {
|
|
2915
2871
|
#editor-x &:focus-visible {
|
|
2916
2872
|
--tw-ring-color: var(--ring);
|
|
2917
2873
|
}
|
|
2918
2874
|
}
|
|
2919
|
-
|
|
2875
|
+
#editor-x .focus-visible\:ring-ring\/50 {
|
|
2920
2876
|
#editor-x &:focus-visible {
|
|
2921
2877
|
--tw-ring-color: var(--ring);
|
|
2922
2878
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2924,30 +2880,30 @@ div.border.border-dashed .editor-image img {
|
|
|
2924
2880
|
}
|
|
2925
2881
|
}
|
|
2926
2882
|
}
|
|
2927
|
-
|
|
2883
|
+
#editor-x .focus-visible\:outline {
|
|
2928
2884
|
#editor-x &:focus-visible {
|
|
2929
2885
|
outline-style: var(--tw-outline-style);
|
|
2930
2886
|
outline-width: 1px;
|
|
2931
2887
|
}
|
|
2932
2888
|
}
|
|
2933
|
-
|
|
2889
|
+
#editor-x .focus-visible\:outline-1 {
|
|
2934
2890
|
#editor-x &:focus-visible {
|
|
2935
2891
|
outline-style: var(--tw-outline-style);
|
|
2936
2892
|
outline-width: 1px;
|
|
2937
2893
|
}
|
|
2938
2894
|
}
|
|
2939
|
-
|
|
2895
|
+
#editor-x .focus-visible\:outline-2 {
|
|
2940
2896
|
#editor-x &:focus-visible {
|
|
2941
2897
|
outline-style: var(--tw-outline-style);
|
|
2942
2898
|
outline-width: 2px;
|
|
2943
2899
|
}
|
|
2944
2900
|
}
|
|
2945
|
-
|
|
2901
|
+
#editor-x .focus-visible\:outline-ring {
|
|
2946
2902
|
#editor-x &:focus-visible {
|
|
2947
2903
|
outline-color: var(--ring);
|
|
2948
2904
|
}
|
|
2949
2905
|
}
|
|
2950
|
-
|
|
2906
|
+
#editor-x .focus-visible\:outline-ring\/70 {
|
|
2951
2907
|
#editor-x &:focus-visible {
|
|
2952
2908
|
outline-color: var(--ring);
|
|
2953
2909
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2955,43 +2911,43 @@ div.border.border-dashed .editor-image img {
|
|
|
2955
2911
|
}
|
|
2956
2912
|
}
|
|
2957
2913
|
}
|
|
2958
|
-
|
|
2914
|
+
#editor-x .focus-visible\:outline-none {
|
|
2959
2915
|
#editor-x &:focus-visible {
|
|
2960
2916
|
--tw-outline-style: none;
|
|
2961
2917
|
outline-style: none;
|
|
2962
2918
|
}
|
|
2963
2919
|
}
|
|
2964
|
-
|
|
2920
|
+
#editor-x .active\:cursor-grabbing {
|
|
2965
2921
|
#editor-x &:active {
|
|
2966
2922
|
cursor: grabbing;
|
|
2967
2923
|
}
|
|
2968
2924
|
}
|
|
2969
|
-
|
|
2925
|
+
#editor-x .disabled\:pointer-events-none {
|
|
2970
2926
|
#editor-x &:disabled {
|
|
2971
2927
|
pointer-events: none;
|
|
2972
2928
|
}
|
|
2973
2929
|
}
|
|
2974
|
-
|
|
2930
|
+
#editor-x .disabled\:cursor-not-allowed {
|
|
2975
2931
|
#editor-x &:disabled {
|
|
2976
2932
|
cursor: not-allowed;
|
|
2977
2933
|
}
|
|
2978
2934
|
}
|
|
2979
|
-
|
|
2935
|
+
#editor-x .disabled\:opacity-50 {
|
|
2980
2936
|
#editor-x &:disabled {
|
|
2981
2937
|
opacity: 50%;
|
|
2982
2938
|
}
|
|
2983
2939
|
}
|
|
2984
|
-
|
|
2940
|
+
#editor-x .has-\[\>\[data-slot\=button-group\]\]\:gap-2 {
|
|
2985
2941
|
#editor-x &:has(>[data-slot=button-group]) {
|
|
2986
2942
|
gap: calc(var(--spacing) * 2);
|
|
2987
2943
|
}
|
|
2988
2944
|
}
|
|
2989
|
-
|
|
2945
|
+
#editor-x .aria-invalid\:border-destructive {
|
|
2990
2946
|
#editor-x &[aria-invalid="true"] {
|
|
2991
2947
|
border-color: var(--destructive);
|
|
2992
2948
|
}
|
|
2993
2949
|
}
|
|
2994
|
-
|
|
2950
|
+
#editor-x .aria-invalid\:ring-destructive\/20 {
|
|
2995
2951
|
#editor-x &[aria-invalid="true"] {
|
|
2996
2952
|
--tw-ring-color: var(--destructive);
|
|
2997
2953
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2999,88 +2955,88 @@ div.border.border-dashed .editor-image img {
|
|
|
2999
2955
|
}
|
|
3000
2956
|
}
|
|
3001
2957
|
}
|
|
3002
|
-
|
|
2958
|
+
#editor-x .data-\[disabled\]\:pointer-events-none {
|
|
3003
2959
|
#editor-x &[data-disabled] {
|
|
3004
2960
|
pointer-events: none;
|
|
3005
2961
|
}
|
|
3006
2962
|
}
|
|
3007
|
-
|
|
2963
|
+
#editor-x .data-\[disabled\]\:opacity-50 {
|
|
3008
2964
|
#editor-x &[data-disabled] {
|
|
3009
2965
|
opacity: 50%;
|
|
3010
2966
|
}
|
|
3011
2967
|
}
|
|
3012
|
-
|
|
2968
|
+
#editor-x .data-\[disabled\=true\]\:pointer-events-none {
|
|
3013
2969
|
#editor-x &[data-disabled="true"] {
|
|
3014
2970
|
pointer-events: none;
|
|
3015
2971
|
}
|
|
3016
2972
|
}
|
|
3017
|
-
|
|
2973
|
+
#editor-x .data-\[disabled\=true\]\:opacity-50 {
|
|
3018
2974
|
#editor-x &[data-disabled="true"] {
|
|
3019
2975
|
opacity: 50%;
|
|
3020
2976
|
}
|
|
3021
2977
|
}
|
|
3022
|
-
|
|
2978
|
+
#editor-x .data-\[orientation\=vertical\]\:h-auto {
|
|
3023
2979
|
#editor-x &[data-orientation="vertical"] {
|
|
3024
2980
|
height: auto;
|
|
3025
2981
|
}
|
|
3026
2982
|
}
|
|
3027
|
-
|
|
2983
|
+
#editor-x .data-\[placeholder\]\:text-muted-foreground {
|
|
3028
2984
|
#editor-x &[data-placeholder] {
|
|
3029
2985
|
color: var(--muted-foreground);
|
|
3030
2986
|
}
|
|
3031
2987
|
}
|
|
3032
|
-
|
|
2988
|
+
#editor-x .data-\[selected\=true\]\:bg-accent {
|
|
3033
2989
|
#editor-x &[data-selected="true"] {
|
|
3034
2990
|
background-color: var(--accent);
|
|
3035
2991
|
}
|
|
3036
2992
|
}
|
|
3037
|
-
|
|
2993
|
+
#editor-x .data-\[selected\=true\]\:text-accent-foreground {
|
|
3038
2994
|
#editor-x &[data-selected="true"] {
|
|
3039
2995
|
color: var(--accent-foreground);
|
|
3040
2996
|
}
|
|
3041
2997
|
}
|
|
3042
|
-
|
|
2998
|
+
#editor-x .data-\[side\=bottom\]\:translate-y-1 {
|
|
3043
2999
|
#editor-x &[data-side="bottom"] {
|
|
3044
3000
|
--tw-translate-y: calc(var(--spacing) * 1);
|
|
3045
3001
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3046
3002
|
}
|
|
3047
3003
|
}
|
|
3048
|
-
|
|
3004
|
+
#editor-x .data-\[side\=left\]\:-translate-x-1 {
|
|
3049
3005
|
#editor-x &[data-side="left"] {
|
|
3050
3006
|
--tw-translate-x: calc(var(--spacing) * -1);
|
|
3051
3007
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3052
3008
|
}
|
|
3053
3009
|
}
|
|
3054
|
-
|
|
3010
|
+
#editor-x .data-\[side\=right\]\:translate-x-1 {
|
|
3055
3011
|
#editor-x &[data-side="right"] {
|
|
3056
3012
|
--tw-translate-x: calc(var(--spacing) * 1);
|
|
3057
3013
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3058
3014
|
}
|
|
3059
3015
|
}
|
|
3060
|
-
|
|
3016
|
+
#editor-x .data-\[side\=top\]\:-translate-y-1 {
|
|
3061
3017
|
#editor-x &[data-side="top"] {
|
|
3062
3018
|
--tw-translate-y: calc(var(--spacing) * -1);
|
|
3063
3019
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3064
3020
|
}
|
|
3065
3021
|
}
|
|
3066
|
-
|
|
3022
|
+
#editor-x .data-\[size\=default\]\:h-9 {
|
|
3067
3023
|
#editor-x &[data-size="default"] {
|
|
3068
3024
|
height: calc(var(--spacing) * 9);
|
|
3069
3025
|
}
|
|
3070
3026
|
}
|
|
3071
|
-
|
|
3027
|
+
#editor-x .data-\[size\=sm\]\:h-8 {
|
|
3072
3028
|
#editor-x &[data-size="sm"] {
|
|
3073
3029
|
height: calc(var(--spacing) * 8);
|
|
3074
3030
|
}
|
|
3075
3031
|
}
|
|
3076
|
-
|
|
3032
|
+
#editor-x .\*\*\:data-\[slot\=command-input-wrapper\]\:h-12 {
|
|
3077
3033
|
#editor-x :is(& *) {
|
|
3078
3034
|
#editor-x &[data-slot="command-input-wrapper"] {
|
|
3079
3035
|
height: calc(var(--spacing) * 12);
|
|
3080
3036
|
}
|
|
3081
3037
|
}
|
|
3082
3038
|
}
|
|
3083
|
-
|
|
3039
|
+
#editor-x .\*\:data-\[slot\=select-value\]\:line-clamp-1 {
|
|
3084
3040
|
#editor-x :is(& > *) {
|
|
3085
3041
|
#editor-x &[data-slot="select-value"] {
|
|
3086
3042
|
overflow: hidden;
|
|
@@ -3090,39 +3046,39 @@ div.border.border-dashed .editor-image img {
|
|
|
3090
3046
|
}
|
|
3091
3047
|
}
|
|
3092
3048
|
}
|
|
3093
|
-
|
|
3049
|
+
#editor-x .\*\:data-\[slot\=select-value\]\:flex {
|
|
3094
3050
|
#editor-x :is(& > *) {
|
|
3095
3051
|
#editor-x &[data-slot="select-value"] {
|
|
3096
3052
|
display: flex;
|
|
3097
3053
|
}
|
|
3098
3054
|
}
|
|
3099
3055
|
}
|
|
3100
|
-
|
|
3056
|
+
#editor-x .\*\:data-\[slot\=select-value\]\:items-center {
|
|
3101
3057
|
#editor-x :is(& > *) {
|
|
3102
3058
|
#editor-x &[data-slot="select-value"] {
|
|
3103
3059
|
align-items: center;
|
|
3104
3060
|
}
|
|
3105
3061
|
}
|
|
3106
3062
|
}
|
|
3107
|
-
|
|
3063
|
+
#editor-x .\*\:data-\[slot\=select-value\]\:gap-2 {
|
|
3108
3064
|
#editor-x :is(& > *) {
|
|
3109
3065
|
#editor-x &[data-slot="select-value"] {
|
|
3110
3066
|
gap: calc(var(--spacing) * 2);
|
|
3111
3067
|
}
|
|
3112
3068
|
}
|
|
3113
3069
|
}
|
|
3114
|
-
|
|
3070
|
+
#editor-x .data-\[spacing\=0\]\:rounded-none {
|
|
3115
3071
|
#editor-x &[data-spacing="0"] {
|
|
3116
3072
|
border-radius: 0;
|
|
3117
3073
|
}
|
|
3118
3074
|
}
|
|
3119
|
-
|
|
3075
|
+
#editor-x .data-\[spacing\=0\]\:shadow-none {
|
|
3120
3076
|
#editor-x &[data-spacing="0"] {
|
|
3121
3077
|
--tw-shadow: 0 0 #0000;
|
|
3122
3078
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3123
3079
|
}
|
|
3124
3080
|
}
|
|
3125
|
-
|
|
3081
|
+
#editor-x .data-\[spacing\=0\]\:first\:rounded-l-md {
|
|
3126
3082
|
#editor-x &[data-spacing="0"] {
|
|
3127
3083
|
#editor-x &:first-child {
|
|
3128
3084
|
border-top-left-radius: var(--radius-md);
|
|
@@ -3130,7 +3086,7 @@ div.border.border-dashed .editor-image img {
|
|
|
3130
3086
|
}
|
|
3131
3087
|
}
|
|
3132
3088
|
}
|
|
3133
|
-
|
|
3089
|
+
#editor-x .data-\[spacing\=0\]\:last\:rounded-r-md {
|
|
3134
3090
|
#editor-x &[data-spacing="0"] {
|
|
3135
3091
|
#editor-x &:last-child {
|
|
3136
3092
|
border-top-right-radius: var(--radius-md);
|
|
@@ -3138,7 +3094,7 @@ div.border.border-dashed .editor-image img {
|
|
|
3138
3094
|
}
|
|
3139
3095
|
}
|
|
3140
3096
|
}
|
|
3141
|
-
|
|
3097
|
+
#editor-x .data-\[state\=active\]\:border-primary\/20 {
|
|
3142
3098
|
#editor-x &[data-state="active"] {
|
|
3143
3099
|
border-color: var(--primary);
|
|
3144
3100
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -3146,59 +3102,59 @@ div.border.border-dashed .editor-image img {
|
|
|
3146
3102
|
}
|
|
3147
3103
|
}
|
|
3148
3104
|
}
|
|
3149
|
-
|
|
3105
|
+
#editor-x .data-\[state\=active\]\:bg-background {
|
|
3150
3106
|
#editor-x &[data-state="active"] {
|
|
3151
3107
|
background-color: var(--background);
|
|
3152
3108
|
}
|
|
3153
3109
|
}
|
|
3154
|
-
|
|
3110
|
+
#editor-x .data-\[state\=active\]\:font-semibold {
|
|
3155
3111
|
#editor-x &[data-state="active"] {
|
|
3156
3112
|
--tw-font-weight: var(--font-weight-semibold);
|
|
3157
3113
|
font-weight: var(--font-weight-semibold);
|
|
3158
3114
|
}
|
|
3159
3115
|
}
|
|
3160
|
-
|
|
3116
|
+
#editor-x .data-\[state\=active\]\:text-foreground {
|
|
3161
3117
|
#editor-x &[data-state="active"] {
|
|
3162
3118
|
color: var(--foreground);
|
|
3163
3119
|
}
|
|
3164
3120
|
}
|
|
3165
|
-
|
|
3121
|
+
#editor-x .data-\[state\=active\]\:shadow-md {
|
|
3166
3122
|
#editor-x &[data-state="active"] {
|
|
3167
3123
|
--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));
|
|
3168
3124
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3169
3125
|
}
|
|
3170
3126
|
}
|
|
3171
|
-
|
|
3127
|
+
#editor-x .data-\[state\=closed\]\:animate-\[collapsible-up_0\.2s_ease-out\] {
|
|
3172
3128
|
#editor-x &[data-state="closed"] {
|
|
3173
3129
|
animation: collapsible-up 0.2s ease-out;
|
|
3174
3130
|
}
|
|
3175
3131
|
}
|
|
3176
|
-
|
|
3132
|
+
#editor-x .data-\[state\=on\]\:bg-accent {
|
|
3177
3133
|
#editor-x &[data-state="on"] {
|
|
3178
3134
|
background-color: var(--accent);
|
|
3179
3135
|
}
|
|
3180
3136
|
}
|
|
3181
|
-
|
|
3137
|
+
#editor-x .data-\[state\=on\]\:text-accent-foreground {
|
|
3182
3138
|
#editor-x &[data-state="on"] {
|
|
3183
3139
|
color: var(--accent-foreground);
|
|
3184
3140
|
}
|
|
3185
3141
|
}
|
|
3186
|
-
|
|
3142
|
+
#editor-x .data-\[state\=open\]\:animate-\[collapsible-down_0\.2s_ease-out\] {
|
|
3187
3143
|
#editor-x &[data-state="open"] {
|
|
3188
3144
|
animation: collapsible-down 0.2s ease-out;
|
|
3189
3145
|
}
|
|
3190
3146
|
}
|
|
3191
|
-
|
|
3147
|
+
#editor-x .data-\[state\=open\]\:bg-accent {
|
|
3192
3148
|
#editor-x &[data-state="open"] {
|
|
3193
3149
|
background-color: var(--accent);
|
|
3194
3150
|
}
|
|
3195
3151
|
}
|
|
3196
|
-
|
|
3152
|
+
#editor-x .data-\[state\=open\]\:text-muted-foreground {
|
|
3197
3153
|
#editor-x &[data-state="open"] {
|
|
3198
3154
|
color: var(--muted-foreground);
|
|
3199
3155
|
}
|
|
3200
3156
|
}
|
|
3201
|
-
|
|
3157
|
+
#editor-x .data-\[spacing\=0\]\:data-\[variant\=outline\]\:border-l-0 {
|
|
3202
3158
|
#editor-x &[data-spacing="0"] {
|
|
3203
3159
|
#editor-x &[data-variant="outline"] {
|
|
3204
3160
|
border-left-style: var(--tw-border-style);
|
|
@@ -3206,7 +3162,7 @@ div.border.border-dashed .editor-image img {
|
|
|
3206
3162
|
}
|
|
3207
3163
|
}
|
|
3208
3164
|
}
|
|
3209
|
-
|
|
3165
|
+
#editor-x .data-\[spacing\=0\]\:data-\[variant\=outline\]\:first\:border-l {
|
|
3210
3166
|
#editor-x &[data-spacing="0"] {
|
|
3211
3167
|
#editor-x &[data-variant="outline"] {
|
|
3212
3168
|
#editor-x &:first-child {
|
|
@@ -3216,7 +3172,7 @@ div.border.border-dashed .editor-image img {
|
|
|
3216
3172
|
}
|
|
3217
3173
|
}
|
|
3218
3174
|
}
|
|
3219
|
-
|
|
3175
|
+
#editor-x .data-\[spacing\=default\]\:data-\[variant\=outline\]\:shadow-xs {
|
|
3220
3176
|
#editor-x &[data-spacing="default"] {
|
|
3221
3177
|
#editor-x &[data-variant="outline"] {
|
|
3222
3178
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
@@ -3224,7 +3180,7 @@ div.border.border-dashed .editor-image img {
|
|
|
3224
3180
|
}
|
|
3225
3181
|
}
|
|
3226
3182
|
}
|
|
3227
|
-
|
|
3183
|
+
#editor-x .supports-\[backdrop-filter\]\:bg-background\/60 {
|
|
3228
3184
|
@supports (backdrop-filter: var(--tw)) {
|
|
3229
3185
|
background-color: var(--background);
|
|
3230
3186
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -3232,348 +3188,343 @@ div.border.border-dashed .editor-image img {
|
|
|
3232
3188
|
}
|
|
3233
3189
|
}
|
|
3234
3190
|
}
|
|
3235
|
-
|
|
3191
|
+
#editor-x .supports-\[backdrop-filter\]\:backdrop-blur-sm {
|
|
3236
3192
|
@supports (backdrop-filter: var(--tw)) {
|
|
3237
3193
|
--tw-backdrop-blur: blur(var(--blur-sm));
|
|
3238
3194
|
-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,);
|
|
3239
3195
|
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,);
|
|
3240
3196
|
}
|
|
3241
3197
|
}
|
|
3242
|
-
|
|
3198
|
+
#editor-x .sm\:mr-0 {
|
|
3243
3199
|
@media (width >= 40rem) {
|
|
3244
3200
|
margin-right: calc(var(--spacing) * 0);
|
|
3245
3201
|
}
|
|
3246
3202
|
}
|
|
3247
|
-
|
|
3203
|
+
#editor-x .sm\:h-5 {
|
|
3248
3204
|
@media (width >= 40rem) {
|
|
3249
3205
|
height: calc(var(--spacing) * 5);
|
|
3250
3206
|
}
|
|
3251
3207
|
}
|
|
3252
|
-
|
|
3208
|
+
#editor-x .sm\:h-6 {
|
|
3253
3209
|
@media (width >= 40rem) {
|
|
3254
3210
|
height: calc(var(--spacing) * 6);
|
|
3255
3211
|
}
|
|
3256
3212
|
}
|
|
3257
|
-
|
|
3213
|
+
#editor-x .sm\:h-8 {
|
|
3258
3214
|
@media (width >= 40rem) {
|
|
3259
3215
|
height: calc(var(--spacing) * 8);
|
|
3260
3216
|
}
|
|
3261
3217
|
}
|
|
3262
|
-
|
|
3218
|
+
#editor-x .sm\:min-h-\[350px\] {
|
|
3263
3219
|
@media (width >= 40rem) {
|
|
3264
3220
|
min-height: 350px;
|
|
3265
3221
|
}
|
|
3266
3222
|
}
|
|
3267
|
-
|
|
3223
|
+
#editor-x .sm\:w-5 {
|
|
3268
3224
|
@media (width >= 40rem) {
|
|
3269
3225
|
width: calc(var(--spacing) * 5);
|
|
3270
3226
|
}
|
|
3271
3227
|
}
|
|
3272
|
-
|
|
3228
|
+
#editor-x .sm\:w-6 {
|
|
3273
3229
|
@media (width >= 40rem) {
|
|
3274
3230
|
width: calc(var(--spacing) * 6);
|
|
3275
3231
|
}
|
|
3276
3232
|
}
|
|
3277
|
-
|
|
3233
|
+
#editor-x .sm\:w-8 {
|
|
3278
3234
|
@media (width >= 40rem) {
|
|
3279
3235
|
width: calc(var(--spacing) * 8);
|
|
3280
3236
|
}
|
|
3281
3237
|
}
|
|
3282
|
-
|
|
3238
|
+
#editor-x .sm\:max-w-\[800px\] {
|
|
3283
3239
|
@media (width >= 40rem) {
|
|
3284
3240
|
max-width: 800px;
|
|
3285
3241
|
}
|
|
3286
3242
|
}
|
|
3287
|
-
|
|
3243
|
+
#editor-x .sm\:flex-col {
|
|
3288
3244
|
@media (width >= 40rem) {
|
|
3289
3245
|
flex-direction: column;
|
|
3290
3246
|
}
|
|
3291
3247
|
}
|
|
3292
|
-
|
|
3248
|
+
#editor-x .sm\:flex-row {
|
|
3293
3249
|
@media (width >= 40rem) {
|
|
3294
3250
|
flex-direction: row;
|
|
3295
3251
|
}
|
|
3296
3252
|
}
|
|
3297
|
-
|
|
3253
|
+
#editor-x .sm\:justify-end {
|
|
3298
3254
|
@media (width >= 40rem) {
|
|
3299
3255
|
justify-content: flex-end;
|
|
3300
3256
|
}
|
|
3301
3257
|
}
|
|
3302
|
-
|
|
3258
|
+
#editor-x .sm\:gap-4 {
|
|
3303
3259
|
@media (width >= 40rem) {
|
|
3304
3260
|
gap: calc(var(--spacing) * 4);
|
|
3305
3261
|
}
|
|
3306
3262
|
}
|
|
3307
|
-
|
|
3263
|
+
#editor-x .sm\:p-6 {
|
|
3308
3264
|
@media (width >= 40rem) {
|
|
3309
3265
|
padding: calc(var(--spacing) * 6);
|
|
3310
3266
|
}
|
|
3311
3267
|
}
|
|
3312
|
-
|
|
3268
|
+
#editor-x .sm\:px-6 {
|
|
3313
3269
|
@media (width >= 40rem) {
|
|
3314
3270
|
padding-inline: calc(var(--spacing) * 6);
|
|
3315
3271
|
}
|
|
3316
3272
|
}
|
|
3317
|
-
|
|
3273
|
+
#editor-x .sm\:py-6 {
|
|
3318
3274
|
@media (width >= 40rem) {
|
|
3319
3275
|
padding-block: calc(var(--spacing) * 6);
|
|
3320
3276
|
}
|
|
3321
3277
|
}
|
|
3322
|
-
|
|
3323
|
-
@media (width >= 40rem) {
|
|
3324
|
-
text-align: center;
|
|
3325
|
-
}
|
|
3326
|
-
}
|
|
3327
|
-
#editor-x .sm\:text-left {
|
|
3278
|
+
#editor-x .sm\:text-left {
|
|
3328
3279
|
@media (width >= 40rem) {
|
|
3329
3280
|
text-align: left;
|
|
3330
3281
|
}
|
|
3331
3282
|
}
|
|
3332
|
-
|
|
3283
|
+
#editor-x .sm\:text-2xl {
|
|
3333
3284
|
@media (width >= 40rem) {
|
|
3334
3285
|
font-size: var(--text-2xl);
|
|
3335
3286
|
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
3336
3287
|
}
|
|
3337
3288
|
}
|
|
3338
|
-
|
|
3289
|
+
#editor-x .sm\:text-base {
|
|
3339
3290
|
@media (width >= 40rem) {
|
|
3340
3291
|
font-size: var(--text-base);
|
|
3341
3292
|
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
3342
3293
|
}
|
|
3343
3294
|
}
|
|
3344
|
-
|
|
3295
|
+
#editor-x .sm\:text-lg {
|
|
3345
3296
|
@media (width >= 40rem) {
|
|
3346
3297
|
font-size: var(--text-lg);
|
|
3347
3298
|
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
3348
3299
|
}
|
|
3349
3300
|
}
|
|
3350
|
-
|
|
3301
|
+
#editor-x .sm\:text-sm {
|
|
3351
3302
|
@media (width >= 40rem) {
|
|
3352
3303
|
font-size: var(--text-sm);
|
|
3353
3304
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
3354
3305
|
}
|
|
3355
3306
|
}
|
|
3356
|
-
|
|
3307
|
+
#editor-x .sm\:text-xl {
|
|
3357
3308
|
@media (width >= 40rem) {
|
|
3358
3309
|
font-size: var(--text-xl);
|
|
3359
3310
|
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
3360
3311
|
}
|
|
3361
3312
|
}
|
|
3362
|
-
|
|
3313
|
+
#editor-x .sm\:text-xs {
|
|
3363
3314
|
@media (width >= 40rem) {
|
|
3364
3315
|
font-size: var(--text-xs);
|
|
3365
3316
|
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
3366
3317
|
}
|
|
3367
3318
|
}
|
|
3368
|
-
|
|
3319
|
+
#editor-x .md\:flex {
|
|
3369
3320
|
@media (width >= 48rem) {
|
|
3370
3321
|
display: flex;
|
|
3371
3322
|
}
|
|
3372
3323
|
}
|
|
3373
|
-
|
|
3324
|
+
#editor-x .md\:max-w-\[32rem\] {
|
|
3374
3325
|
@media (width >= 48rem) {
|
|
3375
3326
|
max-width: 32rem;
|
|
3376
3327
|
}
|
|
3377
3328
|
}
|
|
3378
|
-
|
|
3329
|
+
#editor-x .md\:grid-cols-3 {
|
|
3379
3330
|
@media (width >= 48rem) {
|
|
3380
3331
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3381
3332
|
}
|
|
3382
3333
|
}
|
|
3383
|
-
|
|
3334
|
+
#editor-x .md\:flex-col {
|
|
3384
3335
|
@media (width >= 48rem) {
|
|
3385
3336
|
flex-direction: column;
|
|
3386
3337
|
}
|
|
3387
3338
|
}
|
|
3388
|
-
|
|
3339
|
+
#editor-x .md\:flex-row {
|
|
3389
3340
|
@media (width >= 48rem) {
|
|
3390
3341
|
flex-direction: row;
|
|
3391
3342
|
}
|
|
3392
3343
|
}
|
|
3393
|
-
|
|
3344
|
+
#editor-x .md\:gap-4 {
|
|
3394
3345
|
@media (width >= 48rem) {
|
|
3395
3346
|
gap: calc(var(--spacing) * 4);
|
|
3396
3347
|
}
|
|
3397
3348
|
}
|
|
3398
|
-
|
|
3349
|
+
#editor-x .md\:gap-5 {
|
|
3399
3350
|
@media (width >= 48rem) {
|
|
3400
3351
|
gap: calc(var(--spacing) * 5);
|
|
3401
3352
|
}
|
|
3402
3353
|
}
|
|
3403
|
-
|
|
3354
|
+
#editor-x .md\:p-8 {
|
|
3404
3355
|
@media (width >= 48rem) {
|
|
3405
3356
|
padding: calc(var(--spacing) * 8);
|
|
3406
3357
|
}
|
|
3407
3358
|
}
|
|
3408
|
-
|
|
3359
|
+
#editor-x .md\:px-7 {
|
|
3409
3360
|
@media (width >= 48rem) {
|
|
3410
3361
|
padding-inline: calc(var(--spacing) * 7);
|
|
3411
3362
|
}
|
|
3412
3363
|
}
|
|
3413
|
-
|
|
3364
|
+
#editor-x .md\:py-6 {
|
|
3414
3365
|
@media (width >= 48rem) {
|
|
3415
3366
|
padding-block: calc(var(--spacing) * 6);
|
|
3416
3367
|
}
|
|
3417
3368
|
}
|
|
3418
|
-
|
|
3369
|
+
#editor-x .md\:text-2xl {
|
|
3419
3370
|
@media (width >= 48rem) {
|
|
3420
3371
|
font-size: var(--text-2xl);
|
|
3421
3372
|
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
3422
3373
|
}
|
|
3423
3374
|
}
|
|
3424
|
-
|
|
3375
|
+
#editor-x .md\:text-3xl {
|
|
3425
3376
|
@media (width >= 48rem) {
|
|
3426
3377
|
font-size: var(--text-3xl);
|
|
3427
3378
|
line-height: var(--tw-leading, var(--text-3xl--line-height));
|
|
3428
3379
|
}
|
|
3429
3380
|
}
|
|
3430
|
-
|
|
3381
|
+
#editor-x .md\:text-base {
|
|
3431
3382
|
@media (width >= 48rem) {
|
|
3432
3383
|
font-size: var(--text-base);
|
|
3433
3384
|
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
3434
3385
|
}
|
|
3435
3386
|
}
|
|
3436
|
-
|
|
3387
|
+
#editor-x .md\:text-lg {
|
|
3437
3388
|
@media (width >= 48rem) {
|
|
3438
3389
|
font-size: var(--text-lg);
|
|
3439
3390
|
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
3440
3391
|
}
|
|
3441
3392
|
}
|
|
3442
|
-
|
|
3393
|
+
#editor-x .md\:text-sm {
|
|
3443
3394
|
@media (width >= 48rem) {
|
|
3444
3395
|
font-size: var(--text-sm);
|
|
3445
3396
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
3446
3397
|
}
|
|
3447
3398
|
}
|
|
3448
|
-
|
|
3399
|
+
#editor-x .md\:text-xl {
|
|
3449
3400
|
@media (width >= 48rem) {
|
|
3450
3401
|
font-size: var(--text-xl);
|
|
3451
3402
|
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
3452
3403
|
}
|
|
3453
3404
|
}
|
|
3454
|
-
|
|
3405
|
+
#editor-x .lg\:min-h-\[400px\] {
|
|
3455
3406
|
@media (width >= 64rem) {
|
|
3456
3407
|
min-height: 400px;
|
|
3457
3408
|
}
|
|
3458
3409
|
}
|
|
3459
|
-
|
|
3410
|
+
#editor-x .lg\:w-1\/3 {
|
|
3460
3411
|
@media (width >= 64rem) {
|
|
3461
3412
|
width: calc(1 / 3 * 100%);
|
|
3462
3413
|
}
|
|
3463
3414
|
}
|
|
3464
|
-
|
|
3415
|
+
#editor-x .lg\:w-2\/3 {
|
|
3465
3416
|
@media (width >= 64rem) {
|
|
3466
3417
|
width: calc(2 / 3 * 100%);
|
|
3467
3418
|
}
|
|
3468
3419
|
}
|
|
3469
|
-
|
|
3420
|
+
#editor-x .lg\:flex-col {
|
|
3470
3421
|
@media (width >= 64rem) {
|
|
3471
3422
|
flex-direction: column;
|
|
3472
3423
|
}
|
|
3473
3424
|
}
|
|
3474
|
-
|
|
3425
|
+
#editor-x .lg\:flex-row {
|
|
3475
3426
|
@media (width >= 64rem) {
|
|
3476
3427
|
flex-direction: row;
|
|
3477
3428
|
}
|
|
3478
3429
|
}
|
|
3479
|
-
|
|
3430
|
+
#editor-x .lg\:items-center {
|
|
3480
3431
|
@media (width >= 64rem) {
|
|
3481
3432
|
align-items: center;
|
|
3482
3433
|
}
|
|
3483
3434
|
}
|
|
3484
|
-
|
|
3435
|
+
#editor-x .lg\:justify-end {
|
|
3485
3436
|
@media (width >= 64rem) {
|
|
3486
3437
|
justify-content: flex-end;
|
|
3487
3438
|
}
|
|
3488
3439
|
}
|
|
3489
|
-
|
|
3440
|
+
#editor-x .lg\:gap-6 {
|
|
3490
3441
|
@media (width >= 64rem) {
|
|
3491
3442
|
gap: calc(var(--spacing) * 6);
|
|
3492
3443
|
}
|
|
3493
3444
|
}
|
|
3494
|
-
|
|
3445
|
+
#editor-x .lg\:gap-8 {
|
|
3495
3446
|
@media (width >= 64rem) {
|
|
3496
3447
|
gap: calc(var(--spacing) * 8);
|
|
3497
3448
|
}
|
|
3498
3449
|
}
|
|
3499
|
-
|
|
3450
|
+
#editor-x .lg\:px-8 {
|
|
3500
3451
|
@media (width >= 64rem) {
|
|
3501
3452
|
padding-inline: calc(var(--spacing) * 8);
|
|
3502
3453
|
}
|
|
3503
3454
|
}
|
|
3504
|
-
|
|
3455
|
+
#editor-x .lg\:py-8 {
|
|
3505
3456
|
@media (width >= 64rem) {
|
|
3506
3457
|
padding-block: calc(var(--spacing) * 8);
|
|
3507
3458
|
}
|
|
3508
3459
|
}
|
|
3509
|
-
|
|
3460
|
+
#editor-x .lg\:text-2xl {
|
|
3510
3461
|
@media (width >= 64rem) {
|
|
3511
3462
|
font-size: var(--text-2xl);
|
|
3512
3463
|
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
3513
3464
|
}
|
|
3514
3465
|
}
|
|
3515
|
-
|
|
3466
|
+
#editor-x .lg\:text-3xl {
|
|
3516
3467
|
@media (width >= 64rem) {
|
|
3517
3468
|
font-size: var(--text-3xl);
|
|
3518
3469
|
line-height: var(--tw-leading, var(--text-3xl--line-height));
|
|
3519
3470
|
}
|
|
3520
3471
|
}
|
|
3521
|
-
|
|
3472
|
+
#editor-x .lg\:text-4xl {
|
|
3522
3473
|
@media (width >= 64rem) {
|
|
3523
3474
|
font-size: var(--text-4xl);
|
|
3524
3475
|
line-height: var(--tw-leading, var(--text-4xl--line-height));
|
|
3525
3476
|
}
|
|
3526
3477
|
}
|
|
3527
|
-
|
|
3478
|
+
#editor-x .lg\:text-5xl {
|
|
3528
3479
|
@media (width >= 64rem) {
|
|
3529
3480
|
font-size: var(--text-5xl);
|
|
3530
3481
|
line-height: var(--tw-leading, var(--text-5xl--line-height));
|
|
3531
3482
|
}
|
|
3532
3483
|
}
|
|
3533
|
-
|
|
3484
|
+
#editor-x .lg\:text-base {
|
|
3534
3485
|
@media (width >= 64rem) {
|
|
3535
3486
|
font-size: var(--text-base);
|
|
3536
3487
|
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
3537
3488
|
}
|
|
3538
3489
|
}
|
|
3539
|
-
|
|
3490
|
+
#editor-x .lg\:text-lg {
|
|
3540
3491
|
@media (width >= 64rem) {
|
|
3541
3492
|
font-size: var(--text-lg);
|
|
3542
3493
|
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
3543
3494
|
}
|
|
3544
3495
|
}
|
|
3545
|
-
|
|
3496
|
+
#editor-x .lg\:text-xl {
|
|
3546
3497
|
@media (width >= 64rem) {
|
|
3547
3498
|
font-size: var(--text-xl);
|
|
3548
3499
|
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
3549
3500
|
}
|
|
3550
3501
|
}
|
|
3551
|
-
|
|
3502
|
+
#editor-x .xl\:px-9 {
|
|
3552
3503
|
@media (width >= 80rem) {
|
|
3553
3504
|
padding-inline: calc(var(--spacing) * 9);
|
|
3554
3505
|
}
|
|
3555
3506
|
}
|
|
3556
|
-
|
|
3507
|
+
#editor-x .xl\:py-10 {
|
|
3557
3508
|
@media (width >= 80rem) {
|
|
3558
3509
|
padding-block: calc(var(--spacing) * 10);
|
|
3559
3510
|
}
|
|
3560
3511
|
}
|
|
3561
|
-
|
|
3512
|
+
#editor-x .\32 xl\:px-10 {
|
|
3562
3513
|
@media (width >= 96rem) {
|
|
3563
3514
|
padding-inline: calc(var(--spacing) * 10);
|
|
3564
3515
|
}
|
|
3565
3516
|
}
|
|
3566
|
-
|
|
3517
|
+
#editor-x .\32 xl\:py-10 {
|
|
3567
3518
|
@media (width >= 96rem) {
|
|
3568
3519
|
padding-block: calc(var(--spacing) * 10);
|
|
3569
3520
|
}
|
|
3570
3521
|
}
|
|
3571
|
-
|
|
3522
|
+
#editor-x .dark\:bg-gray-800 {
|
|
3572
3523
|
@media (prefers-color-scheme: dark) {
|
|
3573
3524
|
background-color: var(--color-gray-800);
|
|
3574
3525
|
}
|
|
3575
3526
|
}
|
|
3576
|
-
|
|
3527
|
+
#editor-x .dark\:bg-green-900\/30 {
|
|
3577
3528
|
@media (prefers-color-scheme: dark) {
|
|
3578
3529
|
background-color: color-mix(in srgb, oklch(39.3% 0.095 152.535) 30%, transparent);
|
|
3579
3530
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -3581,7 +3532,7 @@ div.border.border-dashed .editor-image img {
|
|
|
3581
3532
|
}
|
|
3582
3533
|
}
|
|
3583
3534
|
}
|
|
3584
|
-
|
|
3535
|
+
#editor-x .dark\:bg-input\/30 {
|
|
3585
3536
|
@media (prefers-color-scheme: dark) {
|
|
3586
3537
|
background-color: var(--input);
|
|
3587
3538
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -3589,7 +3540,7 @@ div.border.border-dashed .editor-image img {
|
|
|
3589
3540
|
}
|
|
3590
3541
|
}
|
|
3591
3542
|
}
|
|
3592
|
-
|
|
3543
|
+
#editor-x .dark\:bg-muted\/60 {
|
|
3593
3544
|
@media (prefers-color-scheme: dark) {
|
|
3594
3545
|
background-color: var(--muted);
|
|
3595
3546
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -3597,7 +3548,7 @@ div.border.border-dashed .editor-image img {
|
|
|
3597
3548
|
}
|
|
3598
3549
|
}
|
|
3599
3550
|
}
|
|
3600
|
-
|
|
3551
|
+
#editor-x .dark\:bg-primary\/20 {
|
|
3601
3552
|
@media (prefers-color-scheme: dark) {
|
|
3602
3553
|
background-color: var(--primary);
|
|
3603
3554
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -3605,7 +3556,7 @@ div.border.border-dashed .editor-image img {
|
|
|
3605
3556
|
}
|
|
3606
3557
|
}
|
|
3607
3558
|
}
|
|
3608
|
-
|
|
3559
|
+
#editor-x .dark\:bg-secondary\/15 {
|
|
3609
3560
|
@media (prefers-color-scheme: dark) {
|
|
3610
3561
|
background-color: var(--secondary);
|
|
3611
3562
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -3613,34 +3564,34 @@ div.border.border-dashed .editor-image img {
|
|
|
3613
3564
|
}
|
|
3614
3565
|
}
|
|
3615
3566
|
}
|
|
3616
|
-
|
|
3567
|
+
#editor-x .dark\:text-gray-300 {
|
|
3617
3568
|
@media (prefers-color-scheme: dark) {
|
|
3618
3569
|
color: var(--color-gray-300);
|
|
3619
3570
|
}
|
|
3620
3571
|
}
|
|
3621
|
-
|
|
3572
|
+
#editor-x .dark\:text-green-400 {
|
|
3622
3573
|
@media (prefers-color-scheme: dark) {
|
|
3623
3574
|
color: var(--color-green-400);
|
|
3624
3575
|
}
|
|
3625
3576
|
}
|
|
3626
|
-
|
|
3577
|
+
#editor-x .dark\:text-muted-foreground {
|
|
3627
3578
|
@media (prefers-color-scheme: dark) {
|
|
3628
3579
|
color: var(--muted-foreground);
|
|
3629
3580
|
}
|
|
3630
3581
|
}
|
|
3631
|
-
|
|
3582
|
+
#editor-x .dark\:brightness-\[0\.2\] {
|
|
3632
3583
|
@media (prefers-color-scheme: dark) {
|
|
3633
3584
|
--tw-brightness: brightness(0.2);
|
|
3634
3585
|
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,);
|
|
3635
3586
|
}
|
|
3636
3587
|
}
|
|
3637
|
-
|
|
3588
|
+
#editor-x .dark\:grayscale {
|
|
3638
3589
|
@media (prefers-color-scheme: dark) {
|
|
3639
3590
|
--tw-grayscale: grayscale(100%);
|
|
3640
3591
|
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,);
|
|
3641
3592
|
}
|
|
3642
3593
|
}
|
|
3643
|
-
|
|
3594
|
+
#editor-x .dark\:hover\:bg-input\/50 {
|
|
3644
3595
|
@media (prefers-color-scheme: dark) {
|
|
3645
3596
|
#editor-x &:hover {
|
|
3646
3597
|
@media (hover: hover) {
|
|
@@ -3652,7 +3603,7 @@ div.border.border-dashed .editor-image img {
|
|
|
3652
3603
|
}
|
|
3653
3604
|
}
|
|
3654
3605
|
}
|
|
3655
|
-
|
|
3606
|
+
#editor-x .dark\:aria-invalid\:ring-destructive\/40 {
|
|
3656
3607
|
@media (prefers-color-scheme: dark) {
|
|
3657
3608
|
#editor-x &[aria-invalid="true"] {
|
|
3658
3609
|
--tw-ring-color: var(--destructive);
|
|
@@ -3662,7 +3613,7 @@ div.border.border-dashed .editor-image img {
|
|
|
3662
3613
|
}
|
|
3663
3614
|
}
|
|
3664
3615
|
}
|
|
3665
|
-
|
|
3616
|
+
#editor-x .dark\:data-\[state\=active\]\:border-primary\/30 {
|
|
3666
3617
|
@media (prefers-color-scheme: dark) {
|
|
3667
3618
|
#editor-x &[data-state="active"] {
|
|
3668
3619
|
border-color: var(--primary);
|
|
@@ -3672,14 +3623,14 @@ div.border.border-dashed .editor-image img {
|
|
|
3672
3623
|
}
|
|
3673
3624
|
}
|
|
3674
3625
|
}
|
|
3675
|
-
|
|
3626
|
+
#editor-x .dark\:data-\[state\=active\]\:bg-background {
|
|
3676
3627
|
@media (prefers-color-scheme: dark) {
|
|
3677
3628
|
#editor-x &[data-state="active"] {
|
|
3678
3629
|
background-color: var(--background);
|
|
3679
3630
|
}
|
|
3680
3631
|
}
|
|
3681
3632
|
}
|
|
3682
|
-
|
|
3633
|
+
#editor-x .dark\:data-\[state\=active\]\:bg-primary\/10 {
|
|
3683
3634
|
@media (prefers-color-scheme: dark) {
|
|
3684
3635
|
#editor-x &[data-state="active"] {
|
|
3685
3636
|
background-color: var(--primary);
|
|
@@ -3689,78 +3640,78 @@ div.border.border-dashed .editor-image img {
|
|
|
3689
3640
|
}
|
|
3690
3641
|
}
|
|
3691
3642
|
}
|
|
3692
|
-
|
|
3643
|
+
#editor-x .\[\&_\[cmdk-group-heading\]\]\:px-2 {
|
|
3693
3644
|
#editor-x & [cmdk-group-heading] {
|
|
3694
3645
|
padding-inline: calc(var(--spacing) * 2);
|
|
3695
3646
|
}
|
|
3696
3647
|
}
|
|
3697
|
-
|
|
3648
|
+
#editor-x .\[\&_\[cmdk-group-heading\]\]\:py-1\.5 {
|
|
3698
3649
|
#editor-x & [cmdk-group-heading] {
|
|
3699
3650
|
padding-block: calc(var(--spacing) * 1.5);
|
|
3700
3651
|
}
|
|
3701
3652
|
}
|
|
3702
|
-
|
|
3653
|
+
#editor-x .\[\&_\[cmdk-group-heading\]\]\:font-medium {
|
|
3703
3654
|
#editor-x & [cmdk-group-heading] {
|
|
3704
3655
|
--tw-font-weight: var(--font-weight-medium);
|
|
3705
3656
|
font-weight: var(--font-weight-medium);
|
|
3706
3657
|
}
|
|
3707
3658
|
}
|
|
3708
|
-
|
|
3659
|
+
#editor-x .\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground {
|
|
3709
3660
|
#editor-x & [cmdk-group-heading] {
|
|
3710
3661
|
color: var(--muted-foreground);
|
|
3711
3662
|
}
|
|
3712
3663
|
}
|
|
3713
|
-
|
|
3664
|
+
#editor-x .\[\&_\[cmdk-group\]\]\:px-2 {
|
|
3714
3665
|
#editor-x & [cmdk-group] {
|
|
3715
3666
|
padding-inline: calc(var(--spacing) * 2);
|
|
3716
3667
|
}
|
|
3717
3668
|
}
|
|
3718
|
-
|
|
3669
|
+
#editor-x .\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 {
|
|
3719
3670
|
#editor-x & [cmdk-group]:not([hidden]) ~[cmdk-group] {
|
|
3720
3671
|
padding-top: calc(var(--spacing) * 0);
|
|
3721
3672
|
}
|
|
3722
3673
|
}
|
|
3723
|
-
|
|
3674
|
+
#editor-x .\[\&_\[cmdk-input\]\]\:h-12 {
|
|
3724
3675
|
#editor-x & [cmdk-input] {
|
|
3725
3676
|
height: calc(var(--spacing) * 12);
|
|
3726
3677
|
}
|
|
3727
3678
|
}
|
|
3728
|
-
|
|
3679
|
+
#editor-x .\[\&_\[cmdk-item\]\]\:px-2 {
|
|
3729
3680
|
#editor-x & [cmdk-item] {
|
|
3730
3681
|
padding-inline: calc(var(--spacing) * 2);
|
|
3731
3682
|
}
|
|
3732
3683
|
}
|
|
3733
|
-
|
|
3684
|
+
#editor-x .\[\&_\[cmdk-item\]\]\:py-3 {
|
|
3734
3685
|
#editor-x & [cmdk-item] {
|
|
3735
3686
|
padding-block: calc(var(--spacing) * 3);
|
|
3736
3687
|
}
|
|
3737
3688
|
}
|
|
3738
|
-
|
|
3689
|
+
#editor-x .\[\&_svg\]\:pointer-events-none {
|
|
3739
3690
|
#editor-x & svg {
|
|
3740
3691
|
pointer-events: none;
|
|
3741
3692
|
}
|
|
3742
3693
|
}
|
|
3743
|
-
|
|
3694
|
+
#editor-x .\[\&_svg\]\:shrink-0 {
|
|
3744
3695
|
#editor-x & svg {
|
|
3745
3696
|
flex-shrink: 0;
|
|
3746
3697
|
}
|
|
3747
3698
|
}
|
|
3748
|
-
|
|
3699
|
+
#editor-x .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:h-4 {
|
|
3749
3700
|
#editor-x & svg:not([class*='size-']) {
|
|
3750
3701
|
height: calc(var(--spacing) * 4);
|
|
3751
3702
|
}
|
|
3752
3703
|
}
|
|
3753
|
-
|
|
3704
|
+
#editor-x .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:w-4 {
|
|
3754
3705
|
#editor-x & svg:not([class*='size-']) {
|
|
3755
3706
|
width: calc(var(--spacing) * 4);
|
|
3756
3707
|
}
|
|
3757
3708
|
}
|
|
3758
|
-
|
|
3709
|
+
#editor-x .\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground {
|
|
3759
3710
|
#editor-x & svg:not([class*='text-']) {
|
|
3760
3711
|
color: var(--muted-foreground);
|
|
3761
3712
|
}
|
|
3762
3713
|
}
|
|
3763
|
-
|
|
3714
|
+
#editor-x .hover\:\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-foreground {
|
|
3764
3715
|
#editor-x &:hover {
|
|
3765
3716
|
@media (hover: hover) {
|
|
3766
3717
|
#editor-x & svg:not([class*='text-']) {
|
|
@@ -3769,46 +3720,46 @@ div.border.border-dashed .editor-image img {
|
|
|
3769
3720
|
}
|
|
3770
3721
|
}
|
|
3771
3722
|
}
|
|
3772
|
-
|
|
3723
|
+
#editor-x .focus\:\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-accent-foreground {
|
|
3773
3724
|
#editor-x &:focus {
|
|
3774
3725
|
#editor-x & svg:not([class*='text-']) {
|
|
3775
3726
|
color: var(--accent-foreground);
|
|
3776
3727
|
}
|
|
3777
3728
|
}
|
|
3778
3729
|
}
|
|
3779
|
-
|
|
3730
|
+
#editor-x .data-\[selected\=true\]\:\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-accent-foreground {
|
|
3780
3731
|
#editor-x &[data-selected="true"] {
|
|
3781
3732
|
#editor-x & svg:not([class*='text-']) {
|
|
3782
3733
|
color: var(--accent-foreground);
|
|
3783
3734
|
}
|
|
3784
3735
|
}
|
|
3785
3736
|
}
|
|
3786
|
-
|
|
3737
|
+
#editor-x .\[\&\:\:-webkit-inner-spin-button\]\:m-0 {
|
|
3787
3738
|
#editor-x &::-webkit-inner-spin-button {
|
|
3788
3739
|
margin: calc(var(--spacing) * 0);
|
|
3789
3740
|
}
|
|
3790
3741
|
}
|
|
3791
|
-
|
|
3742
|
+
#editor-x .\[\&\:\:-webkit-inner-spin-button\]\:appearance-none {
|
|
3792
3743
|
#editor-x &::-webkit-inner-spin-button {
|
|
3793
3744
|
appearance: none;
|
|
3794
3745
|
}
|
|
3795
3746
|
}
|
|
3796
|
-
|
|
3747
|
+
#editor-x .\[\&\:\:-webkit-outer-spin-button\]\:m-0 {
|
|
3797
3748
|
#editor-x &::-webkit-outer-spin-button {
|
|
3798
3749
|
margin: calc(var(--spacing) * 0);
|
|
3799
3750
|
}
|
|
3800
3751
|
}
|
|
3801
|
-
|
|
3752
|
+
#editor-x .\[\&\:\:-webkit-outer-spin-button\]\:appearance-none {
|
|
3802
3753
|
#editor-x &::-webkit-outer-spin-button {
|
|
3803
3754
|
appearance: none;
|
|
3804
3755
|
}
|
|
3805
3756
|
}
|
|
3806
|
-
|
|
3757
|
+
#editor-x .\[\&\:has\(\*\)\]\:z-10 {
|
|
3807
3758
|
#editor-x &:has(*) {
|
|
3808
3759
|
z-index: 10;
|
|
3809
3760
|
}
|
|
3810
3761
|
}
|
|
3811
|
-
|
|
3762
|
+
#editor-x .\*\:\[span\]\:last\:flex {
|
|
3812
3763
|
#editor-x :is(& > *) {
|
|
3813
3764
|
#editor-x &:is(span) {
|
|
3814
3765
|
#editor-x &:last-child {
|
|
@@ -3817,7 +3768,7 @@ div.border.border-dashed .editor-image img {
|
|
|
3817
3768
|
}
|
|
3818
3769
|
}
|
|
3819
3770
|
}
|
|
3820
|
-
|
|
3771
|
+
#editor-x .\*\:\[span\]\:last\:items-center {
|
|
3821
3772
|
#editor-x :is(& > *) {
|
|
3822
3773
|
#editor-x &:is(span) {
|
|
3823
3774
|
#editor-x &:last-child {
|
|
@@ -3826,7 +3777,7 @@ div.border.border-dashed .editor-image img {
|
|
|
3826
3777
|
}
|
|
3827
3778
|
}
|
|
3828
3779
|
}
|
|
3829
|
-
|
|
3780
|
+
#editor-x .\*\:\[span\]\:last\:gap-2 {
|
|
3830
3781
|
#editor-x :is(& > *) {
|
|
3831
3782
|
#editor-x &:is(span) {
|
|
3832
3783
|
#editor-x &:last-child {
|
|
@@ -3835,74 +3786,74 @@ div.border.border-dashed .editor-image img {
|
|
|
3835
3786
|
}
|
|
3836
3787
|
}
|
|
3837
3788
|
}
|
|
3838
|
-
|
|
3789
|
+
#editor-x .\[\&\:not\(\:first-child\)\]\:mt-2 {
|
|
3839
3790
|
#editor-x &:not(:first-child) {
|
|
3840
3791
|
margin-top: calc(var(--spacing) * 2);
|
|
3841
3792
|
}
|
|
3842
3793
|
}
|
|
3843
|
-
|
|
3794
|
+
#editor-x .\[\&\:read-only\]\:opacity-100 {
|
|
3844
3795
|
#editor-x &:read-only {
|
|
3845
3796
|
opacity: 100%;
|
|
3846
3797
|
}
|
|
3847
3798
|
}
|
|
3848
|
-
|
|
3799
|
+
#editor-x .\[\&\:read-only\]\:disabled\:opacity-100 {
|
|
3849
3800
|
#editor-x &:read-only {
|
|
3850
3801
|
#editor-x &:disabled {
|
|
3851
3802
|
opacity: 100%;
|
|
3852
3803
|
}
|
|
3853
3804
|
}
|
|
3854
3805
|
}
|
|
3855
|
-
|
|
3806
|
+
#editor-x .\[\&\>\*\]\:focus-visible\:relative {
|
|
3856
3807
|
#editor-x &>* {
|
|
3857
3808
|
#editor-x &:focus-visible {
|
|
3858
3809
|
position: relative;
|
|
3859
3810
|
}
|
|
3860
3811
|
}
|
|
3861
3812
|
}
|
|
3862
|
-
|
|
3813
|
+
#editor-x .\[\&\>\*\]\:focus-visible\:z-10 {
|
|
3863
3814
|
#editor-x &>* {
|
|
3864
3815
|
#editor-x &:focus-visible {
|
|
3865
3816
|
z-index: 10;
|
|
3866
3817
|
}
|
|
3867
3818
|
}
|
|
3868
3819
|
}
|
|
3869
|
-
|
|
3820
|
+
#editor-x .\[\&\>\*\:not\(\:first-child\)\]\:rounded-t-none {
|
|
3870
3821
|
#editor-x &>*:not(:first-child) {
|
|
3871
3822
|
border-top-left-radius: 0;
|
|
3872
3823
|
border-top-right-radius: 0;
|
|
3873
3824
|
}
|
|
3874
3825
|
}
|
|
3875
|
-
|
|
3826
|
+
#editor-x .\[\&\>\*\:not\(\:first-child\)\]\:rounded-l-none {
|
|
3876
3827
|
#editor-x &>*:not(:first-child) {
|
|
3877
3828
|
border-top-left-radius: 0;
|
|
3878
3829
|
border-bottom-left-radius: 0;
|
|
3879
3830
|
}
|
|
3880
3831
|
}
|
|
3881
|
-
|
|
3832
|
+
#editor-x .\[\&\>\*\:not\(\:first-child\)\]\:border-t-0 {
|
|
3882
3833
|
#editor-x &>*:not(:first-child) {
|
|
3883
3834
|
border-top-style: var(--tw-border-style);
|
|
3884
3835
|
border-top-width: 0px;
|
|
3885
3836
|
}
|
|
3886
3837
|
}
|
|
3887
|
-
|
|
3838
|
+
#editor-x .\[\&\>\*\:not\(\:first-child\)\]\:border-l-0 {
|
|
3888
3839
|
#editor-x &>*:not(:first-child) {
|
|
3889
3840
|
border-left-style: var(--tw-border-style);
|
|
3890
3841
|
border-left-width: 0px;
|
|
3891
3842
|
}
|
|
3892
3843
|
}
|
|
3893
|
-
|
|
3844
|
+
#editor-x .\[\&\>\*\:not\(\:last-child\)\]\:rounded-r-none {
|
|
3894
3845
|
#editor-x &>*:not(:last-child) {
|
|
3895
3846
|
border-top-right-radius: 0;
|
|
3896
3847
|
border-bottom-right-radius: 0;
|
|
3897
3848
|
}
|
|
3898
3849
|
}
|
|
3899
|
-
|
|
3850
|
+
#editor-x .\[\&\>\*\:not\(\:last-child\)\]\:rounded-b-none {
|
|
3900
3851
|
#editor-x &>*:not(:last-child) {
|
|
3901
3852
|
border-bottom-right-radius: 0;
|
|
3902
3853
|
border-bottom-left-radius: 0;
|
|
3903
3854
|
}
|
|
3904
3855
|
}
|
|
3905
|
-
|
|
3856
|
+
#editor-x .has-\[select\[aria-hidden\=true\]\:last-child\]\:\[\&\>\[data-slot\=select-trigger\]\:last-of-type\]\:rounded-r-md {
|
|
3906
3857
|
#editor-x &:has(*:is(select[aria-hidden=true]:last-child)) {
|
|
3907
3858
|
#editor-x &>[data-slot=select-trigger]:last-of-type {
|
|
3908
3859
|
border-top-right-radius: var(--radius-md);
|
|
@@ -3910,38 +3861,37 @@ div.border.border-dashed .editor-image img {
|
|
|
3910
3861
|
}
|
|
3911
3862
|
}
|
|
3912
3863
|
}
|
|
3913
|
-
|
|
3864
|
+
#editor-x .\[\&\>\[data-slot\=select-trigger\]\:not\(\[class\*\=\'w-\'\]\)\]\:w-fit {
|
|
3914
3865
|
#editor-x &>[data-slot=select-trigger]:not([class*='w-']) {
|
|
3915
3866
|
width: fit-content;
|
|
3916
3867
|
}
|
|
3917
3868
|
}
|
|
3918
|
-
|
|
3869
|
+
#editor-x .\[\&\>div\]\:outline-none {
|
|
3919
3870
|
#editor-x &>div {
|
|
3920
3871
|
--tw-outline-style: none;
|
|
3921
3872
|
outline-style: none;
|
|
3922
3873
|
}
|
|
3923
3874
|
}
|
|
3924
|
-
|
|
3875
|
+
#editor-x .\[\&\>input\]\:flex-1 {
|
|
3925
3876
|
#editor-x &>input {
|
|
3926
3877
|
flex: 1;
|
|
3927
3878
|
}
|
|
3928
3879
|
}
|
|
3929
|
-
|
|
3880
|
+
#editor-x .\[\&\>li\]\:mt-2 {
|
|
3930
3881
|
#editor-x &>li {
|
|
3931
3882
|
margin-top: calc(var(--spacing) * 2);
|
|
3932
3883
|
}
|
|
3933
3884
|
}
|
|
3934
|
-
|
|
3885
|
+
#editor-x .\[\&\[align\=center\]\]\:text-center {
|
|
3935
3886
|
#editor-x &[align=center] {
|
|
3936
3887
|
text-align: center;
|
|
3937
3888
|
}
|
|
3938
3889
|
}
|
|
3939
|
-
|
|
3890
|
+
#editor-x .\[\&\[align\=right\]\]\:text-right {
|
|
3940
3891
|
#editor-x &[align=right] {
|
|
3941
3892
|
text-align: right;
|
|
3942
3893
|
}
|
|
3943
3894
|
}
|
|
3944
|
-
}
|
|
3945
3895
|
@property --tw-translate-x {
|
|
3946
3896
|
syntax: "*";
|
|
3947
3897
|
inherits: false;
|
|
@@ -4244,8 +4194,7 @@ div.border.border-dashed .editor-image img {
|
|
|
4244
4194
|
opacity: 0.5;
|
|
4245
4195
|
}
|
|
4246
4196
|
}
|
|
4247
|
-
@
|
|
4248
|
-
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
4197
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
4249
4198
|
#editor-x *, #editor-x ::before, #editor-x ::after, #editor-x ::backdrop {
|
|
4250
4199
|
--tw-translate-x: 0;
|
|
4251
4200
|
--tw-translate-y: 0;
|
|
@@ -4315,7 +4264,4 @@ div.border.border-dashed .editor-image img {
|
|
|
4315
4264
|
--tw-duration: initial;
|
|
4316
4265
|
--tw-content: "";
|
|
4317
4266
|
}
|
|
4318
|
-
}
|
|
4319
|
-
}
|
|
4320
|
-
|
|
4321
|
-
}
|
|
4267
|
+
}
|