@turtleclub/earn-widget 0.3.0-beta.2 → 0.3.0-beta.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1648 -155
- package/package.json +4 -4
package/dist/styles.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.
|
|
1
|
+
/*! tailwindcss v4.1.13 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer theme {
|
|
@@ -8,11 +8,17 @@
|
|
|
8
8
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
9
9
|
"Courier New", monospace;
|
|
10
10
|
--color-red-600: oklch(57.7% 0.245 27.325);
|
|
11
|
+
--color-amber-600: oklch(66.6% 0.179 58.318);
|
|
11
12
|
--color-yellow-600: oklch(68.1% 0.162 75.834);
|
|
12
13
|
--color-green-500: oklch(72.3% 0.219 149.579);
|
|
13
14
|
--color-green-600: oklch(62.7% 0.194 149.214);
|
|
15
|
+
--color-black: #000;
|
|
14
16
|
--color-white: #fff;
|
|
15
17
|
--spacing: 0.25rem;
|
|
18
|
+
--container-xs: 20rem;
|
|
19
|
+
--container-md: 28rem;
|
|
20
|
+
--container-lg: 32rem;
|
|
21
|
+
--container-6xl: 72rem;
|
|
16
22
|
--text-xs: 0.75rem;
|
|
17
23
|
--text-xs--line-height: calc(1 / 0.75);
|
|
18
24
|
--text-sm: 0.875rem;
|
|
@@ -43,11 +49,16 @@
|
|
|
43
49
|
--font-weight-bold: 700;
|
|
44
50
|
--tracking-tight: -0.025em;
|
|
45
51
|
--tracking-wider: 0.05em;
|
|
52
|
+
--tracking-widest: 0.1em;
|
|
53
|
+
--radius-xs: 0.125rem;
|
|
46
54
|
--radius-md: 0.375rem;
|
|
47
55
|
--radius-lg: 0.5rem;
|
|
48
56
|
--radius-xl: 0.75rem;
|
|
57
|
+
--drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15);
|
|
49
58
|
--animate-spin: spin 1s linear infinite;
|
|
50
59
|
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
60
|
+
--blur-lg: 16px;
|
|
61
|
+
--aspect-video: 16 / 9;
|
|
51
62
|
--default-transition-duration: 150ms;
|
|
52
63
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
53
64
|
--default-font-family: var(--font-sans);
|
|
@@ -186,6 +197,9 @@
|
|
|
186
197
|
.turtle-widget-root ::-webkit-datetime-edit, .turtle-widget-root ::-webkit-datetime-edit-year-field, .turtle-widget-root ::-webkit-datetime-edit-month-field, .turtle-widget-root ::-webkit-datetime-edit-day-field, .turtle-widget-root ::-webkit-datetime-edit-hour-field, .turtle-widget-root ::-webkit-datetime-edit-minute-field, .turtle-widget-root ::-webkit-datetime-edit-second-field, .turtle-widget-root ::-webkit-datetime-edit-millisecond-field, .turtle-widget-root ::-webkit-datetime-edit-meridiem-field {
|
|
187
198
|
padding-block: 0;
|
|
188
199
|
}
|
|
200
|
+
.turtle-widget-root ::-webkit-calendar-picker-indicator {
|
|
201
|
+
line-height: 1;
|
|
202
|
+
}
|
|
189
203
|
.turtle-widget-root :-moz-ui-invalid {
|
|
190
204
|
box-shadow: none;
|
|
191
205
|
}
|
|
@@ -203,6 +217,9 @@
|
|
|
203
217
|
.turtle-widget-root .pointer-events-none {
|
|
204
218
|
pointer-events: none;
|
|
205
219
|
}
|
|
220
|
+
.turtle-widget-root .visible {
|
|
221
|
+
visibility: visible;
|
|
222
|
+
}
|
|
206
223
|
.turtle-widget-root .absolute {
|
|
207
224
|
position: absolute;
|
|
208
225
|
}
|
|
@@ -215,6 +232,9 @@
|
|
|
215
232
|
.turtle-widget-root .sticky {
|
|
216
233
|
position: sticky;
|
|
217
234
|
}
|
|
235
|
+
.turtle-widget-root .inset-0 {
|
|
236
|
+
inset: calc(var(--spacing) * 0);
|
|
237
|
+
}
|
|
218
238
|
.turtle-widget-root .top-1\/2 {
|
|
219
239
|
top: calc(1/2 * 100%);
|
|
220
240
|
}
|
|
@@ -278,6 +298,9 @@
|
|
|
278
298
|
.turtle-widget-root .flex {
|
|
279
299
|
display: flex;
|
|
280
300
|
}
|
|
301
|
+
.turtle-widget-root .grid {
|
|
302
|
+
display: grid;
|
|
303
|
+
}
|
|
281
304
|
.turtle-widget-root .hidden {
|
|
282
305
|
display: none;
|
|
283
306
|
}
|
|
@@ -360,6 +383,9 @@
|
|
|
360
383
|
.turtle-widget-root .max-w-\[120px\] {
|
|
361
384
|
max-width: 120px;
|
|
362
385
|
}
|
|
386
|
+
.turtle-widget-root .min-w-\[140px\] {
|
|
387
|
+
min-width: 140px;
|
|
388
|
+
}
|
|
363
389
|
.turtle-widget-root .flex-1 {
|
|
364
390
|
flex: 1;
|
|
365
391
|
}
|
|
@@ -386,6 +412,9 @@
|
|
|
386
412
|
.turtle-widget-root .cursor-pointer {
|
|
387
413
|
cursor: pointer;
|
|
388
414
|
}
|
|
415
|
+
.turtle-widget-root .grid-cols-1 {
|
|
416
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
417
|
+
}
|
|
389
418
|
.turtle-widget-root .flex-col {
|
|
390
419
|
flex-direction: column;
|
|
391
420
|
}
|
|
@@ -602,6 +631,9 @@
|
|
|
602
631
|
-webkit-font-smoothing: antialiased;
|
|
603
632
|
-moz-osx-font-smoothing: grayscale;
|
|
604
633
|
}
|
|
634
|
+
.turtle-widget-root .opacity-0 {
|
|
635
|
+
opacity: 0%;
|
|
636
|
+
}
|
|
605
637
|
.turtle-widget-root .opacity-30 {
|
|
606
638
|
opacity: 30%;
|
|
607
639
|
}
|
|
@@ -622,6 +654,11 @@
|
|
|
622
654
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
623
655
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
624
656
|
}
|
|
657
|
+
.turtle-widget-root .transition-opacity {
|
|
658
|
+
transition-property: opacity;
|
|
659
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
660
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
661
|
+
}
|
|
625
662
|
.turtle-widget-root .duration-700 {
|
|
626
663
|
--tw-duration: 700ms;
|
|
627
664
|
transition-duration: 700ms;
|
|
@@ -630,6 +667,20 @@
|
|
|
630
667
|
--tw-ease: linear;
|
|
631
668
|
transition-timing-function: linear;
|
|
632
669
|
}
|
|
670
|
+
.turtle-widget-root .group-hover\:invisible {
|
|
671
|
+
&:is(:where(.group):hover *) {
|
|
672
|
+
@media (hover: hover) {
|
|
673
|
+
visibility: hidden;
|
|
674
|
+
}
|
|
675
|
+
}
|
|
676
|
+
}
|
|
677
|
+
.turtle-widget-root .group-hover\:opacity-100 {
|
|
678
|
+
&:is(:where(.group):hover *) {
|
|
679
|
+
@media (hover: hover) {
|
|
680
|
+
opacity: 100%;
|
|
681
|
+
}
|
|
682
|
+
}
|
|
683
|
+
}
|
|
633
684
|
.turtle-widget-root .focus\:border-transparent {
|
|
634
685
|
&:focus {
|
|
635
686
|
border-color: transparent;
|
|
@@ -668,14 +719,22 @@
|
|
|
668
719
|
}
|
|
669
720
|
}
|
|
670
721
|
}
|
|
671
|
-
/*! tailwindcss v4.1.
|
|
722
|
+
/*! tailwindcss v4.1.13 | MIT License | https://tailwindcss.com */
|
|
672
723
|
@layer properties {
|
|
673
724
|
@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))) {
|
|
674
725
|
.turtle-widget-root *, .turtle-widget-root :before, .turtle-widget-root :after, .turtle-widget-root ::backdrop {
|
|
726
|
+
--tw-border-spacing-x: 0;
|
|
727
|
+
--tw-border-spacing-y: 0;
|
|
675
728
|
--tw-translate-x: 0;
|
|
676
729
|
--tw-translate-y: 0;
|
|
677
730
|
--tw-translate-z: 0;
|
|
731
|
+
--tw-rotate-x: initial;
|
|
732
|
+
--tw-rotate-y: initial;
|
|
733
|
+
--tw-rotate-z: initial;
|
|
734
|
+
--tw-skew-x: initial;
|
|
735
|
+
--tw-skew-y: initial;
|
|
678
736
|
--tw-space-y-reverse: 0;
|
|
737
|
+
--tw-space-x-reverse: 0;
|
|
679
738
|
--tw-border-style: solid;
|
|
680
739
|
--tw-gradient-position: initial;
|
|
681
740
|
--tw-gradient-from: #0000;
|
|
@@ -689,6 +748,11 @@
|
|
|
689
748
|
--tw-leading: initial;
|
|
690
749
|
--tw-font-weight: initial;
|
|
691
750
|
--tw-tracking: initial;
|
|
751
|
+
--tw-ordinal: initial;
|
|
752
|
+
--tw-slashed-zero: initial;
|
|
753
|
+
--tw-numeric-figure: initial;
|
|
754
|
+
--tw-numeric-spacing: initial;
|
|
755
|
+
--tw-numeric-fraction: initial;
|
|
692
756
|
--tw-shadow: 0 0 #0000;
|
|
693
757
|
--tw-shadow-color: initial;
|
|
694
758
|
--tw-shadow-alpha: 100%;
|
|
@@ -704,6 +768,28 @@
|
|
|
704
768
|
--tw-ring-offset-color: #fff;
|
|
705
769
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
706
770
|
--tw-outline-style: solid;
|
|
771
|
+
--tw-blur: initial;
|
|
772
|
+
--tw-brightness: initial;
|
|
773
|
+
--tw-contrast: initial;
|
|
774
|
+
--tw-grayscale: initial;
|
|
775
|
+
--tw-hue-rotate: initial;
|
|
776
|
+
--tw-invert: initial;
|
|
777
|
+
--tw-opacity: initial;
|
|
778
|
+
--tw-saturate: initial;
|
|
779
|
+
--tw-sepia: initial;
|
|
780
|
+
--tw-drop-shadow: initial;
|
|
781
|
+
--tw-drop-shadow-color: initial;
|
|
782
|
+
--tw-drop-shadow-alpha: 100%;
|
|
783
|
+
--tw-drop-shadow-size: initial;
|
|
784
|
+
--tw-backdrop-blur: initial;
|
|
785
|
+
--tw-backdrop-brightness: initial;
|
|
786
|
+
--tw-backdrop-contrast: initial;
|
|
787
|
+
--tw-backdrop-grayscale: initial;
|
|
788
|
+
--tw-backdrop-hue-rotate: initial;
|
|
789
|
+
--tw-backdrop-invert: initial;
|
|
790
|
+
--tw-backdrop-opacity: initial;
|
|
791
|
+
--tw-backdrop-saturate: initial;
|
|
792
|
+
--tw-backdrop-sepia: initial;
|
|
707
793
|
--tw-duration: initial;
|
|
708
794
|
--tw-content: "";
|
|
709
795
|
--tw-animation-delay: 0s;
|
|
@@ -711,11 +797,13 @@
|
|
|
711
797
|
--tw-animation-duration: initial;
|
|
712
798
|
--tw-animation-fill-mode: none;
|
|
713
799
|
--tw-animation-iteration-count: 1;
|
|
800
|
+
--tw-enter-blur: 0;
|
|
714
801
|
--tw-enter-opacity: 1;
|
|
715
802
|
--tw-enter-rotate: 0;
|
|
716
803
|
--tw-enter-scale: 1;
|
|
717
804
|
--tw-enter-translate-x: 0;
|
|
718
805
|
--tw-enter-translate-y: 0;
|
|
806
|
+
--tw-exit-blur: 0;
|
|
719
807
|
--tw-exit-opacity: 1;
|
|
720
808
|
--tw-exit-rotate: 0;
|
|
721
809
|
--tw-exit-scale: 1;
|
|
@@ -729,11 +817,17 @@
|
|
|
729
817
|
--font-sans: ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
730
818
|
--font-mono: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
|
|
731
819
|
--color-red-600: oklch(57.7% .245 27.325);
|
|
820
|
+
--color-amber-600: oklch(66.6% .179 58.318);
|
|
732
821
|
--color-yellow-600: oklch(68.1% .162 75.834);
|
|
733
822
|
--color-green-500: oklch(72.3% .219 149.579);
|
|
734
823
|
--color-green-600: oklch(62.7% .194 149.214);
|
|
824
|
+
--color-black: #000;
|
|
735
825
|
--color-white: #fff;
|
|
736
826
|
--spacing: .25rem;
|
|
827
|
+
--container-xs: 20rem;
|
|
828
|
+
--container-md: 28rem;
|
|
829
|
+
--container-lg: 32rem;
|
|
830
|
+
--container-6xl: 72rem;
|
|
737
831
|
--text-xs: .75rem;
|
|
738
832
|
--text-xs--line-height: calc(1/.75);
|
|
739
833
|
--text-sm: .875rem;
|
|
@@ -763,15 +857,26 @@
|
|
|
763
857
|
--font-weight-semibold: 600;
|
|
764
858
|
--font-weight-bold: 700;
|
|
765
859
|
--tracking-tight: -.025em;
|
|
860
|
+
--tracking-widest: .1em;
|
|
861
|
+
--radius-xs: .125rem;
|
|
766
862
|
--radius-md: calc(var(--radius) - 2px);
|
|
767
863
|
--radius-lg: var(--radius);
|
|
768
864
|
--radius-xl: calc(var(--radius) + 4px);
|
|
865
|
+
--drop-shadow-lg: 0 4px 4px #00000026;
|
|
769
866
|
--animate-spin: spin 1s linear infinite;
|
|
770
867
|
--animate-pulse: pulse 2s cubic-bezier(.4,0,.6,1)infinite;
|
|
868
|
+
--blur-lg: 16px;
|
|
869
|
+
--aspect-video: 16/9;
|
|
771
870
|
--default-transition-duration: .15s;
|
|
772
871
|
--default-transition-timing-function: cubic-bezier(.4,0,.2,1);
|
|
773
872
|
--default-font-family: var(--font-sans);
|
|
774
873
|
--default-mono-font-family: var(--font-mono);
|
|
874
|
+
--radius-turtle: var(--radius-turtle);
|
|
875
|
+
--radius-info-card: var(--radius-info-card);
|
|
876
|
+
--color-neutral-alpha-2: var(--color-neutral-alpha-2);
|
|
877
|
+
--color-neutral-alpha-5: var(--color-neutral-alpha-5);
|
|
878
|
+
--color-neutral-alpha-10: var(--color-neutral-alpha-10);
|
|
879
|
+
--color-border: var(--border);
|
|
775
880
|
}
|
|
776
881
|
}
|
|
777
882
|
@layer base {
|
|
@@ -952,6 +1057,9 @@
|
|
|
952
1057
|
.turtle-widget-root ::-webkit-datetime-edit-meridiem-field {
|
|
953
1058
|
padding-block: 0;
|
|
954
1059
|
}
|
|
1060
|
+
.turtle-widget-root ::-webkit-calendar-picker-indicator {
|
|
1061
|
+
line-height: 1;
|
|
1062
|
+
}
|
|
955
1063
|
.turtle-widget-root :-moz-ui-invalid {
|
|
956
1064
|
box-shadow: none;
|
|
957
1065
|
}
|
|
@@ -974,18 +1082,6 @@
|
|
|
974
1082
|
.turtle-widget-root [hidden]:where(:not([hidden=until-found])) {
|
|
975
1083
|
display: none !important;
|
|
976
1084
|
}
|
|
977
|
-
.turtle-widget-root * {
|
|
978
|
-
border-color: var(--border);
|
|
979
|
-
outline-color: var(--ring);
|
|
980
|
-
}
|
|
981
|
-
@supports (color:color-mix(in lab,red,red)) {
|
|
982
|
-
.turtle-widget-root * {
|
|
983
|
-
outline-color: var(--ring);
|
|
984
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
985
|
-
outline-color: color-mix(in oklab,var(--ring)50%,transparent);
|
|
986
|
-
}
|
|
987
|
-
}
|
|
988
|
-
}
|
|
989
1085
|
.turtle-widget-root, .turtle-widget-root {
|
|
990
1086
|
width: 100%;
|
|
991
1087
|
height: 100%;
|
|
@@ -1069,6 +1165,17 @@
|
|
|
1069
1165
|
.turtle-widget-root .pointer-events-none {
|
|
1070
1166
|
pointer-events: none;
|
|
1071
1167
|
}
|
|
1168
|
+
.turtle-widget-root .sr-only {
|
|
1169
|
+
clip-path: inset(50%);
|
|
1170
|
+
white-space: nowrap;
|
|
1171
|
+
border-width: 0;
|
|
1172
|
+
width: 1px;
|
|
1173
|
+
height: 1px;
|
|
1174
|
+
margin: -1px;
|
|
1175
|
+
padding: 0;
|
|
1176
|
+
position: absolute;
|
|
1177
|
+
overflow: hidden;
|
|
1178
|
+
}
|
|
1072
1179
|
.turtle-widget-root .absolute {
|
|
1073
1180
|
position: absolute;
|
|
1074
1181
|
}
|
|
@@ -1081,18 +1188,108 @@
|
|
|
1081
1188
|
.turtle-widget-root .inset-0 {
|
|
1082
1189
|
inset: calc(var(--spacing)*0);
|
|
1083
1190
|
}
|
|
1191
|
+
.turtle-widget-root .inset-0\.5 {
|
|
1192
|
+
inset: calc(var(--spacing)*.5);
|
|
1193
|
+
}
|
|
1194
|
+
.turtle-widget-root .inset-y-0 {
|
|
1195
|
+
inset-block: calc(var(--spacing)*0);
|
|
1196
|
+
}
|
|
1197
|
+
.turtle-widget-root .top-0 {
|
|
1198
|
+
top: calc(var(--spacing)*0);
|
|
1199
|
+
}
|
|
1200
|
+
.turtle-widget-root .top-1\/2 {
|
|
1201
|
+
top: 50%;
|
|
1202
|
+
}
|
|
1203
|
+
.turtle-widget-root .top-4 {
|
|
1204
|
+
top: calc(var(--spacing)*4);
|
|
1205
|
+
}
|
|
1206
|
+
.turtle-widget-root .top-\[-15px\] {
|
|
1207
|
+
top: -15px;
|
|
1208
|
+
}
|
|
1209
|
+
.turtle-widget-root .top-\[-50px\] {
|
|
1210
|
+
top: -50px;
|
|
1211
|
+
}
|
|
1212
|
+
.turtle-widget-root .top-\[-300px\] {
|
|
1213
|
+
top: -300px;
|
|
1214
|
+
}
|
|
1215
|
+
.turtle-widget-root .top-\[1px\] {
|
|
1216
|
+
top: 1px;
|
|
1217
|
+
}
|
|
1218
|
+
.turtle-widget-root .top-\[50\%\] {
|
|
1219
|
+
top: 50%;
|
|
1220
|
+
}
|
|
1221
|
+
.turtle-widget-root .top-\[60\%\] {
|
|
1222
|
+
top: 60%;
|
|
1223
|
+
}
|
|
1224
|
+
.turtle-widget-root .top-full {
|
|
1225
|
+
top: 100%;
|
|
1226
|
+
}
|
|
1227
|
+
.turtle-widget-root .-right-1 {
|
|
1228
|
+
right: calc(var(--spacing)*-1);
|
|
1229
|
+
}
|
|
1230
|
+
.turtle-widget-root .right-1 {
|
|
1231
|
+
right: calc(var(--spacing)*1);
|
|
1232
|
+
}
|
|
1084
1233
|
.turtle-widget-root .right-2 {
|
|
1085
1234
|
right: calc(var(--spacing)*2);
|
|
1086
1235
|
}
|
|
1236
|
+
.turtle-widget-root .right-4 {
|
|
1237
|
+
right: calc(var(--spacing)*4);
|
|
1238
|
+
}
|
|
1239
|
+
.turtle-widget-root .right-\[-150px\] {
|
|
1240
|
+
right: -150px;
|
|
1241
|
+
}
|
|
1242
|
+
.turtle-widget-root .right-\[-220px\] {
|
|
1243
|
+
right: -220px;
|
|
1244
|
+
}
|
|
1245
|
+
.turtle-widget-root .right-\[70px\] {
|
|
1246
|
+
right: 70px;
|
|
1247
|
+
}
|
|
1248
|
+
.turtle-widget-root .-bottom-1 {
|
|
1249
|
+
bottom: calc(var(--spacing)*-1);
|
|
1250
|
+
}
|
|
1087
1251
|
.turtle-widget-root .bottom-0 {
|
|
1088
1252
|
bottom: calc(var(--spacing)*0);
|
|
1089
1253
|
}
|
|
1254
|
+
.turtle-widget-root .bottom-\[-200px\] {
|
|
1255
|
+
bottom: -200px;
|
|
1256
|
+
}
|
|
1257
|
+
.turtle-widget-root .bottom-\[-280px\] {
|
|
1258
|
+
bottom: -280px;
|
|
1259
|
+
}
|
|
1260
|
+
.turtle-widget-root .bottom-\[-300px\] {
|
|
1261
|
+
bottom: -300px;
|
|
1262
|
+
}
|
|
1263
|
+
.turtle-widget-root .left-0 {
|
|
1264
|
+
left: calc(var(--spacing)*0);
|
|
1265
|
+
}
|
|
1266
|
+
.turtle-widget-root .left-2 {
|
|
1267
|
+
left: calc(var(--spacing)*2);
|
|
1268
|
+
}
|
|
1269
|
+
.turtle-widget-root .left-\[-15px\] {
|
|
1270
|
+
left: -15px;
|
|
1271
|
+
}
|
|
1272
|
+
.turtle-widget-root .left-\[-240px\] {
|
|
1273
|
+
left: -240px;
|
|
1274
|
+
}
|
|
1275
|
+
.turtle-widget-root .left-\[50\%\] {
|
|
1276
|
+
left: 50%;
|
|
1277
|
+
}
|
|
1278
|
+
.turtle-widget-root .left-full {
|
|
1279
|
+
left: 100%;
|
|
1280
|
+
}
|
|
1281
|
+
.turtle-widget-root .isolate {
|
|
1282
|
+
isolation: isolate;
|
|
1283
|
+
}
|
|
1090
1284
|
.turtle-widget-root .z-10 {
|
|
1091
1285
|
z-index: 10;
|
|
1092
1286
|
}
|
|
1093
1287
|
.turtle-widget-root .z-50 {
|
|
1094
1288
|
z-index: 50;
|
|
1095
1289
|
}
|
|
1290
|
+
.turtle-widget-root .z-\[-1\] {
|
|
1291
|
+
z-index: -1;
|
|
1292
|
+
}
|
|
1096
1293
|
.turtle-widget-root .z-\[1\] {
|
|
1097
1294
|
z-index: 1;
|
|
1098
1295
|
}
|
|
@@ -1127,9 +1324,39 @@
|
|
|
1127
1324
|
.turtle-widget-root .-mx-1 {
|
|
1128
1325
|
margin-inline: calc(var(--spacing)*-1);
|
|
1129
1326
|
}
|
|
1327
|
+
.turtle-widget-root .mx-auto {
|
|
1328
|
+
margin-inline: auto;
|
|
1329
|
+
}
|
|
1330
|
+
.turtle-widget-root .my-0\.5 {
|
|
1331
|
+
margin-block: calc(var(--spacing)*.5);
|
|
1332
|
+
}
|
|
1130
1333
|
.turtle-widget-root .my-1 {
|
|
1131
1334
|
margin-block: calc(var(--spacing)*1);
|
|
1132
1335
|
}
|
|
1336
|
+
.turtle-widget-root .mt-1\.5 {
|
|
1337
|
+
margin-top: calc(var(--spacing)*1.5);
|
|
1338
|
+
}
|
|
1339
|
+
.turtle-widget-root .mt-2 {
|
|
1340
|
+
margin-top: calc(var(--spacing)*2);
|
|
1341
|
+
}
|
|
1342
|
+
.turtle-widget-root .mt-4 {
|
|
1343
|
+
margin-top: calc(var(--spacing)*4);
|
|
1344
|
+
}
|
|
1345
|
+
.turtle-widget-root .mr-1 {
|
|
1346
|
+
margin-right: calc(var(--spacing)*1);
|
|
1347
|
+
}
|
|
1348
|
+
.turtle-widget-root .mb-1 {
|
|
1349
|
+
margin-bottom: calc(var(--spacing)*1);
|
|
1350
|
+
}
|
|
1351
|
+
.turtle-widget-root .mb-2 {
|
|
1352
|
+
margin-bottom: calc(var(--spacing)*2);
|
|
1353
|
+
}
|
|
1354
|
+
.turtle-widget-root .mb-4 {
|
|
1355
|
+
margin-bottom: calc(var(--spacing)*4);
|
|
1356
|
+
}
|
|
1357
|
+
.turtle-widget-root .ml-1 {
|
|
1358
|
+
margin-left: calc(var(--spacing)*1);
|
|
1359
|
+
}
|
|
1133
1360
|
.turtle-widget-root .ml-2 {
|
|
1134
1361
|
margin-left: calc(var(--spacing)*2);
|
|
1135
1362
|
}
|
|
@@ -1145,12 +1372,37 @@
|
|
|
1145
1372
|
.turtle-widget-root .grid {
|
|
1146
1373
|
display: grid;
|
|
1147
1374
|
}
|
|
1375
|
+
.turtle-widget-root .hidden {
|
|
1376
|
+
display: none;
|
|
1377
|
+
}
|
|
1148
1378
|
.turtle-widget-root .inline-flex {
|
|
1149
1379
|
display: inline-flex;
|
|
1150
1380
|
}
|
|
1151
|
-
.turtle-widget-root .
|
|
1152
|
-
|
|
1153
|
-
|
|
1381
|
+
.turtle-widget-root .table {
|
|
1382
|
+
display: table;
|
|
1383
|
+
}
|
|
1384
|
+
.turtle-widget-root .table-caption {
|
|
1385
|
+
display: table-caption;
|
|
1386
|
+
}
|
|
1387
|
+
.turtle-widget-root .table-cell {
|
|
1388
|
+
display: table-cell;
|
|
1389
|
+
}
|
|
1390
|
+
.turtle-widget-root .table-row {
|
|
1391
|
+
display: table-row;
|
|
1392
|
+
}
|
|
1393
|
+
.turtle-widget-root .aspect-square {
|
|
1394
|
+
aspect-ratio: 1;
|
|
1395
|
+
}
|
|
1396
|
+
.turtle-widget-root .aspect-video {
|
|
1397
|
+
aspect-ratio: var(--aspect-video);
|
|
1398
|
+
}
|
|
1399
|
+
.turtle-widget-root .size-2 {
|
|
1400
|
+
width: calc(var(--spacing)*2);
|
|
1401
|
+
height: calc(var(--spacing)*2);
|
|
1402
|
+
}
|
|
1403
|
+
.turtle-widget-root .size-3 {
|
|
1404
|
+
width: calc(var(--spacing)*3);
|
|
1405
|
+
height: calc(var(--spacing)*3);
|
|
1154
1406
|
}
|
|
1155
1407
|
.turtle-widget-root .size-3\.5 {
|
|
1156
1408
|
width: calc(var(--spacing)*3.5);
|
|
@@ -1160,10 +1412,41 @@
|
|
|
1160
1412
|
width: calc(var(--spacing)*4);
|
|
1161
1413
|
height: calc(var(--spacing)*4);
|
|
1162
1414
|
}
|
|
1415
|
+
.turtle-widget-root .size-6 {
|
|
1416
|
+
width: calc(var(--spacing)*6);
|
|
1417
|
+
height: calc(var(--spacing)*6);
|
|
1418
|
+
}
|
|
1419
|
+
.turtle-widget-root .size-8 {
|
|
1420
|
+
width: calc(var(--spacing)*8);
|
|
1421
|
+
height: calc(var(--spacing)*8);
|
|
1422
|
+
}
|
|
1163
1423
|
.turtle-widget-root .size-9 {
|
|
1164
1424
|
width: calc(var(--spacing)*9);
|
|
1165
1425
|
height: calc(var(--spacing)*9);
|
|
1166
1426
|
}
|
|
1427
|
+
.turtle-widget-root .size-10 {
|
|
1428
|
+
width: calc(var(--spacing)*10);
|
|
1429
|
+
height: calc(var(--spacing)*10);
|
|
1430
|
+
}
|
|
1431
|
+
.turtle-widget-root .size-12 {
|
|
1432
|
+
width: calc(var(--spacing)*12);
|
|
1433
|
+
height: calc(var(--spacing)*12);
|
|
1434
|
+
}
|
|
1435
|
+
.turtle-widget-root .size-\[18px\] {
|
|
1436
|
+
width: 18px;
|
|
1437
|
+
height: 18px;
|
|
1438
|
+
}
|
|
1439
|
+
.turtle-widget-root .size-\[400px\] {
|
|
1440
|
+
width: 400px;
|
|
1441
|
+
height: 400px;
|
|
1442
|
+
}
|
|
1443
|
+
.turtle-widget-root .size-full {
|
|
1444
|
+
width: 100%;
|
|
1445
|
+
height: 100%;
|
|
1446
|
+
}
|
|
1447
|
+
.turtle-widget-root .h-1\.5 {
|
|
1448
|
+
height: calc(var(--spacing)*1.5);
|
|
1449
|
+
}
|
|
1167
1450
|
.turtle-widget-root .h-2 {
|
|
1168
1451
|
height: calc(var(--spacing)*2);
|
|
1169
1452
|
}
|
|
@@ -1206,11 +1489,23 @@
|
|
|
1206
1489
|
.turtle-widget-root .h-20 {
|
|
1207
1490
|
height: calc(var(--spacing)*20);
|
|
1208
1491
|
}
|
|
1492
|
+
.turtle-widget-root .h-24 {
|
|
1493
|
+
height: calc(var(--spacing)*24);
|
|
1494
|
+
}
|
|
1209
1495
|
.turtle-widget-root .h-\[1\.15rem\] {
|
|
1210
1496
|
height: 1.15rem;
|
|
1211
1497
|
}
|
|
1212
|
-
.turtle-widget-root .h-\[
|
|
1213
|
-
height:
|
|
1498
|
+
.turtle-widget-root .h-\[70px\] {
|
|
1499
|
+
height: 70px;
|
|
1500
|
+
}
|
|
1501
|
+
.turtle-widget-root .h-\[200px\] {
|
|
1502
|
+
height: 200px;
|
|
1503
|
+
}
|
|
1504
|
+
.turtle-widget-root .h-\[400px\] {
|
|
1505
|
+
height: 400px;
|
|
1506
|
+
}
|
|
1507
|
+
.turtle-widget-root .h-\[var\(--radix-navigation-menu-viewport-height\)\] {
|
|
1508
|
+
height: var(--radix-navigation-menu-viewport-height);
|
|
1214
1509
|
}
|
|
1215
1510
|
.turtle-widget-root .h-auto {
|
|
1216
1511
|
height: auto;
|
|
@@ -1221,12 +1516,42 @@
|
|
|
1221
1516
|
.turtle-widget-root .h-px {
|
|
1222
1517
|
height: 1px;
|
|
1223
1518
|
}
|
|
1519
|
+
.turtle-widget-root .h-screen {
|
|
1520
|
+
height: 100vh;
|
|
1521
|
+
}
|
|
1522
|
+
.turtle-widget-root .max-h-\(--radix-dropdown-menu-content-available-height\) {
|
|
1523
|
+
max-height: var(--radix-dropdown-menu-content-available-height);
|
|
1524
|
+
}
|
|
1224
1525
|
.turtle-widget-root .max-h-\(--radix-select-content-available-height\) {
|
|
1225
1526
|
max-height: var(--radix-select-content-available-height);
|
|
1226
1527
|
}
|
|
1227
1528
|
.turtle-widget-root .max-h-\[600px\] {
|
|
1228
1529
|
max-height: 600px;
|
|
1229
1530
|
}
|
|
1531
|
+
.turtle-widget-root .min-h-0 {
|
|
1532
|
+
min-height: calc(var(--spacing)*0);
|
|
1533
|
+
}
|
|
1534
|
+
.turtle-widget-root .min-h-28 {
|
|
1535
|
+
min-height: calc(var(--spacing)*28);
|
|
1536
|
+
}
|
|
1537
|
+
.turtle-widget-root .min-h-\[calc\(100svh-20px\)\] {
|
|
1538
|
+
min-height: calc(100svh - 20px);
|
|
1539
|
+
}
|
|
1540
|
+
.turtle-widget-root .min-h-\[calc\(100svh-22px\)\] {
|
|
1541
|
+
min-height: calc(100svh - 22px);
|
|
1542
|
+
}
|
|
1543
|
+
.turtle-widget-root .min-h-\[calc\(var\(--radix-select-trigger-height\)\*2\)\] {
|
|
1544
|
+
min-height: calc(var(--radix-select-trigger-height)*2);
|
|
1545
|
+
}
|
|
1546
|
+
.turtle-widget-root .min-h-svh {
|
|
1547
|
+
min-height: 100svh;
|
|
1548
|
+
}
|
|
1549
|
+
.turtle-widget-root .w-0 {
|
|
1550
|
+
width: calc(var(--spacing)*0);
|
|
1551
|
+
}
|
|
1552
|
+
.turtle-widget-root .w-1 {
|
|
1553
|
+
width: calc(var(--spacing)*1);
|
|
1554
|
+
}
|
|
1230
1555
|
.turtle-widget-root .w-2 {
|
|
1231
1556
|
width: calc(var(--spacing)*2);
|
|
1232
1557
|
}
|
|
@@ -1263,6 +1588,27 @@
|
|
|
1263
1588
|
.turtle-widget-root .w-20 {
|
|
1264
1589
|
width: calc(var(--spacing)*20);
|
|
1265
1590
|
}
|
|
1591
|
+
.turtle-widget-root .w-64 {
|
|
1592
|
+
width: calc(var(--spacing)*64);
|
|
1593
|
+
}
|
|
1594
|
+
.turtle-widget-root .w-72 {
|
|
1595
|
+
width: calc(var(--spacing)*72);
|
|
1596
|
+
}
|
|
1597
|
+
.turtle-widget-root .w-\[400px\] {
|
|
1598
|
+
width: 400px;
|
|
1599
|
+
}
|
|
1600
|
+
.turtle-widget-root .w-\[450px\] {
|
|
1601
|
+
width: 450px;
|
|
1602
|
+
}
|
|
1603
|
+
.turtle-widget-root .w-\[600px\] {
|
|
1604
|
+
width: 600px;
|
|
1605
|
+
}
|
|
1606
|
+
.turtle-widget-root .w-\[var\(--radix-dropdown-menu-trigger-width\)\] {
|
|
1607
|
+
width: var(--radix-dropdown-menu-trigger-width);
|
|
1608
|
+
}
|
|
1609
|
+
.turtle-widget-root .w-\[var\(--radix-select-trigger-width\)\] {
|
|
1610
|
+
width: var(--radix-select-trigger-width);
|
|
1611
|
+
}
|
|
1266
1612
|
.turtle-widget-root .w-auto {
|
|
1267
1613
|
width: auto;
|
|
1268
1614
|
}
|
|
@@ -1272,6 +1618,24 @@
|
|
|
1272
1618
|
.turtle-widget-root .w-full {
|
|
1273
1619
|
width: 100%;
|
|
1274
1620
|
}
|
|
1621
|
+
.turtle-widget-root .w-max {
|
|
1622
|
+
width: max-content;
|
|
1623
|
+
}
|
|
1624
|
+
.turtle-widget-root .w-px {
|
|
1625
|
+
width: 1px;
|
|
1626
|
+
}
|
|
1627
|
+
.turtle-widget-root .max-w-6xl {
|
|
1628
|
+
max-width: var(--container-6xl);
|
|
1629
|
+
}
|
|
1630
|
+
.turtle-widget-root .max-w-\[calc\(100\%-2rem\)\] {
|
|
1631
|
+
max-width: calc(100% - 2rem);
|
|
1632
|
+
}
|
|
1633
|
+
.turtle-widget-root .max-w-md {
|
|
1634
|
+
max-width: var(--container-md);
|
|
1635
|
+
}
|
|
1636
|
+
.turtle-widget-root .max-w-xs {
|
|
1637
|
+
max-width: var(--container-xs);
|
|
1638
|
+
}
|
|
1275
1639
|
.turtle-widget-root .min-w-0 {
|
|
1276
1640
|
min-width: calc(var(--spacing)*0);
|
|
1277
1641
|
}
|
|
@@ -1293,31 +1657,68 @@
|
|
|
1293
1657
|
.turtle-widget-root .min-w-\[80px\] {
|
|
1294
1658
|
min-width: 80px;
|
|
1295
1659
|
}
|
|
1296
|
-
.turtle-widget-root .min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
1297
|
-
min-width: var(--radix-select-trigger-width);
|
|
1298
|
-
}
|
|
1299
1660
|
.turtle-widget-root .flex-1 {
|
|
1300
1661
|
flex: 1;
|
|
1301
1662
|
}
|
|
1302
1663
|
.turtle-widget-root .flex-shrink-0, .turtle-widget-root .shrink-0 {
|
|
1303
1664
|
flex-shrink: 0;
|
|
1304
1665
|
}
|
|
1666
|
+
.turtle-widget-root .grow {
|
|
1667
|
+
flex-grow: 1;
|
|
1668
|
+
}
|
|
1669
|
+
.turtle-widget-root .caption-bottom {
|
|
1670
|
+
caption-side: bottom;
|
|
1671
|
+
}
|
|
1672
|
+
.turtle-widget-root .border-separate {
|
|
1673
|
+
border-collapse: separate;
|
|
1674
|
+
}
|
|
1675
|
+
.turtle-widget-root .border-spacing-y-2 {
|
|
1676
|
+
--tw-border-spacing-y: calc(var(--spacing)*2);
|
|
1677
|
+
border-spacing: var(--tw-border-spacing-x)var(--tw-border-spacing-y);
|
|
1678
|
+
}
|
|
1679
|
+
.turtle-widget-root .origin-\(--radix-dropdown-menu-content-transform-origin\) {
|
|
1680
|
+
transform-origin: var(--radix-dropdown-menu-content-transform-origin);
|
|
1681
|
+
}
|
|
1682
|
+
.turtle-widget-root .origin-\(--radix-hover-card-content-transform-origin\) {
|
|
1683
|
+
transform-origin: var(--radix-hover-card-content-transform-origin);
|
|
1684
|
+
}
|
|
1305
1685
|
.turtle-widget-root .origin-\(--radix-select-content-transform-origin\) {
|
|
1306
1686
|
transform-origin: var(--radix-select-content-transform-origin);
|
|
1307
1687
|
}
|
|
1308
1688
|
.turtle-widget-root .origin-\(--radix-tooltip-content-transform-origin\) {
|
|
1309
1689
|
transform-origin: var(--radix-tooltip-content-transform-origin);
|
|
1310
1690
|
}
|
|
1691
|
+
.turtle-widget-root .origin-center {
|
|
1692
|
+
transform-origin: 50%;
|
|
1693
|
+
}
|
|
1311
1694
|
.turtle-widget-root .origin-left {
|
|
1312
1695
|
transform-origin: 0;
|
|
1313
1696
|
}
|
|
1314
|
-
.turtle-widget-root .translate-
|
|
1315
|
-
--tw-translate-
|
|
1697
|
+
.turtle-widget-root .translate-x-\[-50\%\] {
|
|
1698
|
+
--tw-translate-x: -50%;
|
|
1699
|
+
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
1700
|
+
}
|
|
1701
|
+
.turtle-widget-root .translate-x-\[-75\%\] {
|
|
1702
|
+
--tw-translate-x: -75%;
|
|
1703
|
+
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
1704
|
+
}
|
|
1705
|
+
.turtle-widget-root .-translate-y-1\/2 {
|
|
1706
|
+
--tw-translate-y: -50%;
|
|
1707
|
+
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
1708
|
+
}
|
|
1709
|
+
.turtle-widget-root .translate-y-\[-50\%\] {
|
|
1710
|
+
--tw-translate-y: -50%;
|
|
1316
1711
|
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
1317
1712
|
}
|
|
1318
1713
|
.turtle-widget-root .rotate-45 {
|
|
1319
1714
|
rotate: 45deg;
|
|
1320
1715
|
}
|
|
1716
|
+
.turtle-widget-root .rotate-180 {
|
|
1717
|
+
rotate: 180deg;
|
|
1718
|
+
}
|
|
1719
|
+
.turtle-widget-root .transform {
|
|
1720
|
+
transform: var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,);
|
|
1721
|
+
}
|
|
1321
1722
|
.turtle-widget-root .animate-in {
|
|
1322
1723
|
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
1323
1724
|
}
|
|
@@ -1345,12 +1746,24 @@
|
|
|
1345
1746
|
.turtle-widget-root .scroll-my-1 {
|
|
1346
1747
|
scroll-margin-block: calc(var(--spacing)*1);
|
|
1347
1748
|
}
|
|
1749
|
+
.turtle-widget-root .list-none {
|
|
1750
|
+
list-style-type: none;
|
|
1751
|
+
}
|
|
1752
|
+
.turtle-widget-root .auto-cols-fr {
|
|
1753
|
+
grid-auto-columns: minmax(0,1fr);
|
|
1754
|
+
}
|
|
1755
|
+
.turtle-widget-root .grid-flow-col {
|
|
1756
|
+
grid-auto-flow: column;
|
|
1757
|
+
}
|
|
1348
1758
|
.turtle-widget-root .grid-cols-3 {
|
|
1349
1759
|
grid-template-columns: repeat(3,minmax(0,1fr));
|
|
1350
1760
|
}
|
|
1351
1761
|
.turtle-widget-root .flex-col {
|
|
1352
1762
|
flex-direction: column;
|
|
1353
1763
|
}
|
|
1764
|
+
.turtle-widget-root .flex-col-reverse {
|
|
1765
|
+
flex-direction: column-reverse;
|
|
1766
|
+
}
|
|
1354
1767
|
.turtle-widget-root .flex-row {
|
|
1355
1768
|
flex-direction: row;
|
|
1356
1769
|
}
|
|
@@ -1363,9 +1776,15 @@
|
|
|
1363
1776
|
.turtle-widget-root .items-center {
|
|
1364
1777
|
align-items: center;
|
|
1365
1778
|
}
|
|
1779
|
+
.turtle-widget-root .items-end {
|
|
1780
|
+
align-items: flex-end;
|
|
1781
|
+
}
|
|
1366
1782
|
.turtle-widget-root .items-start {
|
|
1367
1783
|
align-items: flex-start;
|
|
1368
1784
|
}
|
|
1785
|
+
.turtle-widget-root .items-stretch {
|
|
1786
|
+
align-items: stretch;
|
|
1787
|
+
}
|
|
1369
1788
|
.turtle-widget-root .justify-between {
|
|
1370
1789
|
justify-content: space-between;
|
|
1371
1790
|
}
|
|
@@ -1384,22 +1803,23 @@
|
|
|
1384
1803
|
.turtle-widget-root .gap-2 {
|
|
1385
1804
|
gap: calc(var(--spacing)*2);
|
|
1386
1805
|
}
|
|
1806
|
+
.turtle-widget-root .gap-2\.5 {
|
|
1807
|
+
gap: calc(var(--spacing)*2.5);
|
|
1808
|
+
}
|
|
1387
1809
|
.turtle-widget-root .gap-3 {
|
|
1388
1810
|
gap: calc(var(--spacing)*3);
|
|
1389
1811
|
}
|
|
1390
1812
|
.turtle-widget-root .gap-4 {
|
|
1391
1813
|
gap: calc(var(--spacing)*4);
|
|
1392
1814
|
}
|
|
1815
|
+
.turtle-widget-root .gap-6 {
|
|
1816
|
+
gap: calc(var(--spacing)*6);
|
|
1817
|
+
}
|
|
1393
1818
|
.turtle-widget-root :where(.space-y-1>:not(:last-child)) {
|
|
1394
1819
|
--tw-space-y-reverse: 0;
|
|
1395
1820
|
margin-block-start: calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));
|
|
1396
1821
|
margin-block-end: calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)));
|
|
1397
1822
|
}
|
|
1398
|
-
.turtle-widget-root :where(.space-y-1\.5>:not(:last-child)) {
|
|
1399
|
-
--tw-space-y-reverse: 0;
|
|
1400
|
-
margin-block-start: calc(calc(var(--spacing)*1.5)*var(--tw-space-y-reverse));
|
|
1401
|
-
margin-block-end: calc(calc(var(--spacing)*1.5)*calc(1 - var(--tw-space-y-reverse)));
|
|
1402
|
-
}
|
|
1403
1823
|
.turtle-widget-root :where(.space-y-2>:not(:last-child)) {
|
|
1404
1824
|
--tw-space-y-reverse: 0;
|
|
1405
1825
|
margin-block-start: calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));
|
|
@@ -1415,10 +1835,10 @@
|
|
|
1415
1835
|
margin-block-start: calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));
|
|
1416
1836
|
margin-block-end: calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)));
|
|
1417
1837
|
}
|
|
1418
|
-
.turtle-widget-root
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1838
|
+
.turtle-widget-root :where(.-space-x-1>:not(:last-child)) {
|
|
1839
|
+
--tw-space-x-reverse: 0;
|
|
1840
|
+
margin-inline-start: calc(calc(var(--spacing)*-1)*var(--tw-space-x-reverse));
|
|
1841
|
+
margin-inline-end: calc(calc(var(--spacing)*-1)*calc(1 - var(--tw-space-x-reverse)));
|
|
1422
1842
|
}
|
|
1423
1843
|
.turtle-widget-root .overflow-auto {
|
|
1424
1844
|
overflow: auto;
|
|
@@ -1447,6 +1867,9 @@
|
|
|
1447
1867
|
.turtle-widget-root .rounded-full {
|
|
1448
1868
|
border-radius: 3.40282e38px;
|
|
1449
1869
|
}
|
|
1870
|
+
.turtle-widget-root .rounded-info-card {
|
|
1871
|
+
border-radius: var(--radius-info-card);
|
|
1872
|
+
}
|
|
1450
1873
|
.turtle-widget-root .rounded-lg {
|
|
1451
1874
|
border-radius: var(--radius);
|
|
1452
1875
|
}
|
|
@@ -1459,10 +1882,27 @@
|
|
|
1459
1882
|
.turtle-widget-root .rounded-sm {
|
|
1460
1883
|
border-radius: calc(var(--radius) - 4px);
|
|
1461
1884
|
}
|
|
1885
|
+
.turtle-widget-root .rounded-turtle {
|
|
1886
|
+
border-radius: var(--radius-turtle);
|
|
1887
|
+
}
|
|
1462
1888
|
.turtle-widget-root .rounded-xl {
|
|
1463
1889
|
border-radius: calc(var(--radius) + 4px);
|
|
1464
1890
|
}
|
|
1465
|
-
.turtle-widget-root .
|
|
1891
|
+
.turtle-widget-root .rounded-xs {
|
|
1892
|
+
border-radius: var(--radius-xs);
|
|
1893
|
+
}
|
|
1894
|
+
.turtle-widget-root .rounded-t-none {
|
|
1895
|
+
border-top-left-radius: 0;
|
|
1896
|
+
border-top-right-radius: 0;
|
|
1897
|
+
}
|
|
1898
|
+
.turtle-widget-root .rounded-tl-sm {
|
|
1899
|
+
border-top-left-radius: calc(var(--radius) - 4px);
|
|
1900
|
+
}
|
|
1901
|
+
.turtle-widget-root .rounded-b-turtle {
|
|
1902
|
+
border-bottom-right-radius: var(--radius-turtle);
|
|
1903
|
+
border-bottom-left-radius: var(--radius-turtle);
|
|
1904
|
+
}
|
|
1905
|
+
.turtle-widget-root .border {
|
|
1466
1906
|
border-style: var(--tw-border-style);
|
|
1467
1907
|
border-width: 1px;
|
|
1468
1908
|
}
|
|
@@ -1470,6 +1910,10 @@
|
|
|
1470
1910
|
border-style: var(--tw-border-style);
|
|
1471
1911
|
border-width: 2px;
|
|
1472
1912
|
}
|
|
1913
|
+
.turtle-widget-root .border-\[1\.5px\] {
|
|
1914
|
+
border-style: var(--tw-border-style);
|
|
1915
|
+
border-width: 1.5px;
|
|
1916
|
+
}
|
|
1473
1917
|
.turtle-widget-root .border-t {
|
|
1474
1918
|
border-top-style: var(--tw-border-style);
|
|
1475
1919
|
border-top-width: 1px;
|
|
@@ -1478,21 +1922,28 @@
|
|
|
1478
1922
|
border-left-style: var(--tw-border-style);
|
|
1479
1923
|
border-left-width: 1px;
|
|
1480
1924
|
}
|
|
1925
|
+
.turtle-widget-root .border-dashed {
|
|
1926
|
+
--tw-border-style: dashed;
|
|
1927
|
+
border-style: dashed;
|
|
1928
|
+
}
|
|
1481
1929
|
.turtle-widget-root .border-none {
|
|
1482
1930
|
--tw-border-style: none;
|
|
1483
1931
|
border-style: none;
|
|
1484
1932
|
}
|
|
1485
|
-
.turtle-widget-root .border-border {
|
|
1486
|
-
border-color: var(--border);
|
|
1933
|
+
.turtle-widget-root .border-\(--color-border\) {
|
|
1934
|
+
border-color: var(--color-border);
|
|
1935
|
+
}
|
|
1936
|
+
.turtle-widget-root .border-background {
|
|
1937
|
+
border-color: var(--background);
|
|
1487
1938
|
}
|
|
1488
|
-
.turtle-widget-root .border-
|
|
1489
|
-
border-color: var(--
|
|
1939
|
+
.turtle-widget-root .border-border, .turtle-widget-root .border-border\/50 {
|
|
1940
|
+
border-color: var(--border);
|
|
1490
1941
|
}
|
|
1491
1942
|
@supports (color:color-mix(in lab,red,red)) {
|
|
1492
|
-
.turtle-widget-root .border-
|
|
1493
|
-
border-color: var(--
|
|
1943
|
+
.turtle-widget-root .border-border\/50 {
|
|
1944
|
+
border-color: var(--border);
|
|
1494
1945
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1495
|
-
border-color: color-mix(in oklab,var(--
|
|
1946
|
+
border-color: color-mix(in oklab,var(--border)50%,transparent);
|
|
1496
1947
|
}
|
|
1497
1948
|
}
|
|
1498
1949
|
}
|
|
@@ -1516,9 +1967,6 @@
|
|
|
1516
1967
|
.turtle-widget-root .border-primary {
|
|
1517
1968
|
border-color: var(--primary);
|
|
1518
1969
|
}
|
|
1519
|
-
.turtle-widget-root .border-secondary {
|
|
1520
|
-
border-color: var(--secondary);
|
|
1521
|
-
}
|
|
1522
1970
|
.turtle-widget-root .border-transparent {
|
|
1523
1971
|
border-color: #0000;
|
|
1524
1972
|
}
|
|
@@ -1528,16 +1976,36 @@
|
|
|
1528
1976
|
.turtle-widget-root .border-l-transparent {
|
|
1529
1977
|
border-left-color: #0000;
|
|
1530
1978
|
}
|
|
1979
|
+
.turtle-widget-root .bg-\(--color-bg\) {
|
|
1980
|
+
background-color: var(--color-bg);
|
|
1981
|
+
}
|
|
1531
1982
|
.turtle-widget-root .bg-background {
|
|
1532
1983
|
background-color: var(--background);
|
|
1533
1984
|
}
|
|
1985
|
+
.turtle-widget-root .bg-black\/50 {
|
|
1986
|
+
background-color: #00000080;
|
|
1987
|
+
}
|
|
1988
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
1989
|
+
.turtle-widget-root .bg-black\/50 {
|
|
1990
|
+
background-color: color-mix(in srgb,#00050%,transparent);
|
|
1991
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1992
|
+
background-color: color-mix(in oklab,var(--color-black)50%,transparent);
|
|
1993
|
+
}
|
|
1994
|
+
}
|
|
1995
|
+
}
|
|
1534
1996
|
.turtle-widget-root .bg-border {
|
|
1535
1997
|
background-color: var(--border);
|
|
1536
1998
|
}
|
|
1999
|
+
.turtle-widget-root .bg-card {
|
|
2000
|
+
background-color: var(--card);
|
|
2001
|
+
}
|
|
2002
|
+
.turtle-widget-root .bg-foreground {
|
|
2003
|
+
background-color: var(--foreground);
|
|
2004
|
+
}
|
|
1537
2005
|
.turtle-widget-root .bg-muted {
|
|
1538
2006
|
background-color: var(--muted);
|
|
1539
2007
|
}
|
|
1540
|
-
.turtle-widget-root .bg-muted-foreground\/30 {
|
|
2008
|
+
.turtle-widget-root .bg-muted-foreground, .turtle-widget-root .bg-muted-foreground\/30 {
|
|
1541
2009
|
background-color: var(--muted-foreground);
|
|
1542
2010
|
}
|
|
1543
2011
|
@supports (color:color-mix(in lab,red,red)) {
|
|
@@ -1559,18 +2027,16 @@
|
|
|
1559
2027
|
}
|
|
1560
2028
|
}
|
|
1561
2029
|
}
|
|
1562
|
-
.turtle-widget-root .bg-
|
|
1563
|
-
background-color: var(--
|
|
2030
|
+
.turtle-widget-root .bg-neutral-alpha-2 {
|
|
2031
|
+
background-color: var(--color-neutral-alpha-2);
|
|
1564
2032
|
}
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
background-color: var(--primary);
|
|
1568
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1569
|
-
background-color: color-mix(in oklab,var(--primary)10%,transparent);
|
|
1570
|
-
}
|
|
1571
|
-
}
|
|
2033
|
+
.turtle-widget-root .bg-neutral-alpha-5 {
|
|
2034
|
+
background-color: var(--color-neutral-alpha-5);
|
|
1572
2035
|
}
|
|
1573
|
-
.turtle-widget-root .bg-
|
|
2036
|
+
.turtle-widget-root .bg-popover {
|
|
2037
|
+
background-color: var(--popover);
|
|
2038
|
+
}
|
|
2039
|
+
.turtle-widget-root .bg-primary, .turtle-widget-root .bg-primary\/20 {
|
|
1574
2040
|
background-color: var(--primary);
|
|
1575
2041
|
}
|
|
1576
2042
|
@supports (color:color-mix(in lab,red,red)) {
|
|
@@ -1587,25 +2053,112 @@
|
|
|
1587
2053
|
.turtle-widget-root .bg-transparent {
|
|
1588
2054
|
background-color: #0000;
|
|
1589
2055
|
}
|
|
2056
|
+
.turtle-widget-root .bg-gradient-to-b {
|
|
2057
|
+
--tw-gradient-position: to bottom in oklab;
|
|
2058
|
+
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
2059
|
+
}
|
|
2060
|
+
.turtle-widget-root .bg-gradient-to-br {
|
|
2061
|
+
--tw-gradient-position: to bottom right in oklab;
|
|
2062
|
+
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
2063
|
+
}
|
|
1590
2064
|
.turtle-widget-root .bg-gradient-to-r {
|
|
1591
2065
|
--tw-gradient-position: to right in oklab;
|
|
1592
2066
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
1593
2067
|
}
|
|
2068
|
+
.turtle-widget-root .from-foreground\/40 {
|
|
2069
|
+
--tw-gradient-from: var(--foreground);
|
|
2070
|
+
}
|
|
2071
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
2072
|
+
.turtle-widget-root .from-foreground\/40 {
|
|
2073
|
+
--tw-gradient-from: var(--foreground);
|
|
2074
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2075
|
+
--tw-gradient-from: color-mix(in oklab,var(--foreground)40%,transparent);
|
|
2076
|
+
}
|
|
2077
|
+
}
|
|
2078
|
+
}
|
|
2079
|
+
.turtle-widget-root .from-foreground\/40 {
|
|
2080
|
+
--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));
|
|
2081
|
+
}
|
|
2082
|
+
.turtle-widget-root .from-primary {
|
|
2083
|
+
--tw-gradient-from: var(--primary);
|
|
2084
|
+
--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));
|
|
2085
|
+
}
|
|
1594
2086
|
.turtle-widget-root .from-transparent {
|
|
1595
2087
|
--tw-gradient-from: transparent;
|
|
1596
2088
|
--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));
|
|
1597
2089
|
}
|
|
2090
|
+
.turtle-widget-root .via-foreground\/10 {
|
|
2091
|
+
--tw-gradient-via: var(--foreground);
|
|
2092
|
+
}
|
|
2093
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
2094
|
+
.turtle-widget-root .via-foreground\/10 {
|
|
2095
|
+
--tw-gradient-via: var(--foreground);
|
|
2096
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2097
|
+
--tw-gradient-via: color-mix(in oklab,var(--foreground)10%,transparent);
|
|
2098
|
+
}
|
|
2099
|
+
}
|
|
2100
|
+
}
|
|
2101
|
+
.turtle-widget-root .via-foreground\/10 {
|
|
2102
|
+
--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);
|
|
2103
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
2104
|
+
}
|
|
1598
2105
|
.turtle-widget-root .via-primary {
|
|
1599
2106
|
--tw-gradient-via: var(--primary);
|
|
1600
2107
|
--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);
|
|
1601
2108
|
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
1602
2109
|
}
|
|
1603
|
-
.turtle-widget-root .
|
|
1604
|
-
--tw-gradient-
|
|
1605
|
-
|
|
2110
|
+
.turtle-widget-root .via-primary\/20 {
|
|
2111
|
+
--tw-gradient-via: var(--primary);
|
|
2112
|
+
}
|
|
2113
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
2114
|
+
.turtle-widget-root .via-primary\/20 {
|
|
2115
|
+
--tw-gradient-via: var(--primary);
|
|
2116
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2117
|
+
--tw-gradient-via: color-mix(in oklab,var(--primary)20%,transparent);
|
|
2118
|
+
}
|
|
2119
|
+
}
|
|
2120
|
+
}
|
|
2121
|
+
.turtle-widget-root .via-primary\/20 {
|
|
2122
|
+
--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);
|
|
2123
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
2124
|
+
}
|
|
2125
|
+
.turtle-widget-root .to-foreground\/20 {
|
|
2126
|
+
--tw-gradient-to: var(--foreground);
|
|
2127
|
+
}
|
|
2128
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
2129
|
+
.turtle-widget-root .to-foreground\/20 {
|
|
2130
|
+
--tw-gradient-to: var(--foreground);
|
|
2131
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2132
|
+
--tw-gradient-to: color-mix(in oklab,var(--foreground)20%,transparent);
|
|
2133
|
+
}
|
|
2134
|
+
}
|
|
2135
|
+
}
|
|
2136
|
+
.turtle-widget-root .to-foreground\/20 {
|
|
2137
|
+
--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));
|
|
2138
|
+
}
|
|
2139
|
+
.turtle-widget-root .to-primary\/30 {
|
|
2140
|
+
--tw-gradient-to: var(--primary);
|
|
2141
|
+
}
|
|
2142
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
2143
|
+
.turtle-widget-root .to-primary\/30 {
|
|
2144
|
+
--tw-gradient-to: var(--primary);
|
|
2145
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2146
|
+
--tw-gradient-to: color-mix(in oklab,var(--primary)30%,transparent);
|
|
2147
|
+
}
|
|
2148
|
+
}
|
|
2149
|
+
}
|
|
2150
|
+
.turtle-widget-root .to-primary\/30 {
|
|
2151
|
+
--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));
|
|
2152
|
+
}
|
|
2153
|
+
.turtle-widget-root .to-transparent {
|
|
2154
|
+
--tw-gradient-to: transparent;
|
|
2155
|
+
--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));
|
|
2156
|
+
}
|
|
2157
|
+
.turtle-widget-root .bg-clip-padding {
|
|
2158
|
+
background-clip: padding-box;
|
|
1606
2159
|
}
|
|
1607
|
-
.turtle-widget-root .fill-
|
|
1608
|
-
fill:
|
|
2160
|
+
.turtle-widget-root .fill-current {
|
|
2161
|
+
fill: currentColor;
|
|
1609
2162
|
}
|
|
1610
2163
|
.turtle-widget-root .object-contain {
|
|
1611
2164
|
object-fit: contain;
|
|
@@ -1613,12 +2166,18 @@
|
|
|
1613
2166
|
.turtle-widget-root .p-0 {
|
|
1614
2167
|
padding: calc(var(--spacing)*0);
|
|
1615
2168
|
}
|
|
2169
|
+
.turtle-widget-root .p-0\.5 {
|
|
2170
|
+
padding: calc(var(--spacing)*.5);
|
|
2171
|
+
}
|
|
1616
2172
|
.turtle-widget-root .p-1 {
|
|
1617
2173
|
padding: calc(var(--spacing)*1);
|
|
1618
2174
|
}
|
|
1619
2175
|
.turtle-widget-root .p-2 {
|
|
1620
2176
|
padding: calc(var(--spacing)*2);
|
|
1621
2177
|
}
|
|
2178
|
+
.turtle-widget-root .p-2\.5 {
|
|
2179
|
+
padding: calc(var(--spacing)*2.5);
|
|
2180
|
+
}
|
|
1622
2181
|
.turtle-widget-root .p-3 {
|
|
1623
2182
|
padding: calc(var(--spacing)*3);
|
|
1624
2183
|
}
|
|
@@ -1628,8 +2187,8 @@
|
|
|
1628
2187
|
.turtle-widget-root .p-6 {
|
|
1629
2188
|
padding: calc(var(--spacing)*6);
|
|
1630
2189
|
}
|
|
1631
|
-
.turtle-widget-root .p-
|
|
1632
|
-
padding: calc(var(--spacing)*
|
|
2190
|
+
.turtle-widget-root .p-10 {
|
|
2191
|
+
padding: calc(var(--spacing)*10);
|
|
1633
2192
|
}
|
|
1634
2193
|
.turtle-widget-root .p-\[1px\], .turtle-widget-root .p-px {
|
|
1635
2194
|
padding: 1px;
|
|
@@ -1646,12 +2205,27 @@
|
|
|
1646
2205
|
.turtle-widget-root .px-3 {
|
|
1647
2206
|
padding-inline: calc(var(--spacing)*3);
|
|
1648
2207
|
}
|
|
2208
|
+
.turtle-widget-root .px-3\.5 {
|
|
2209
|
+
padding-inline: calc(var(--spacing)*3.5);
|
|
2210
|
+
}
|
|
1649
2211
|
.turtle-widget-root .px-4 {
|
|
1650
2212
|
padding-inline: calc(var(--spacing)*4);
|
|
1651
2213
|
}
|
|
2214
|
+
.turtle-widget-root .px-4\.5 {
|
|
2215
|
+
padding-inline: calc(var(--spacing)*4.5);
|
|
2216
|
+
}
|
|
2217
|
+
.turtle-widget-root .px-5 {
|
|
2218
|
+
padding-inline: calc(var(--spacing)*5);
|
|
2219
|
+
}
|
|
1652
2220
|
.turtle-widget-root .px-6 {
|
|
1653
2221
|
padding-inline: calc(var(--spacing)*6);
|
|
1654
2222
|
}
|
|
2223
|
+
.turtle-widget-root .px-8 {
|
|
2224
|
+
padding-inline: calc(var(--spacing)*8);
|
|
2225
|
+
}
|
|
2226
|
+
.turtle-widget-root .py-0 {
|
|
2227
|
+
padding-block: calc(var(--spacing)*0);
|
|
2228
|
+
}
|
|
1655
2229
|
.turtle-widget-root .py-0\.5 {
|
|
1656
2230
|
padding-block: calc(var(--spacing)*.5);
|
|
1657
2231
|
}
|
|
@@ -1664,30 +2238,84 @@
|
|
|
1664
2238
|
.turtle-widget-root .py-2 {
|
|
1665
2239
|
padding-block: calc(var(--spacing)*2);
|
|
1666
2240
|
}
|
|
2241
|
+
.turtle-widget-root .py-2\.5 {
|
|
2242
|
+
padding-block: calc(var(--spacing)*2.5);
|
|
2243
|
+
}
|
|
1667
2244
|
.turtle-widget-root .py-3 {
|
|
1668
2245
|
padding-block: calc(var(--spacing)*3);
|
|
1669
2246
|
}
|
|
2247
|
+
.turtle-widget-root .py-3\.5 {
|
|
2248
|
+
padding-block: calc(var(--spacing)*3.5);
|
|
2249
|
+
}
|
|
1670
2250
|
.turtle-widget-root .py-4 {
|
|
1671
2251
|
padding-block: calc(var(--spacing)*4);
|
|
1672
2252
|
}
|
|
2253
|
+
.turtle-widget-root .py-4\.5 {
|
|
2254
|
+
padding-block: calc(var(--spacing)*4.5);
|
|
2255
|
+
}
|
|
2256
|
+
.turtle-widget-root .py-6\.5 {
|
|
2257
|
+
padding-block: calc(var(--spacing)*6.5);
|
|
2258
|
+
}
|
|
1673
2259
|
.turtle-widget-root .py-8 {
|
|
1674
2260
|
padding-block: calc(var(--spacing)*8);
|
|
1675
2261
|
}
|
|
2262
|
+
.turtle-widget-root .py-8\.5 {
|
|
2263
|
+
padding-block: calc(var(--spacing)*8.5);
|
|
2264
|
+
}
|
|
2265
|
+
.turtle-widget-root .py-10 {
|
|
2266
|
+
padding-block: calc(var(--spacing)*10);
|
|
2267
|
+
}
|
|
2268
|
+
.turtle-widget-root .\!pt-6 {
|
|
2269
|
+
padding-top: calc(var(--spacing)*6) !important;
|
|
2270
|
+
}
|
|
1676
2271
|
.turtle-widget-root .pt-0 {
|
|
1677
2272
|
padding-top: calc(var(--spacing)*0);
|
|
1678
2273
|
}
|
|
1679
2274
|
.turtle-widget-root .pt-2 {
|
|
1680
2275
|
padding-top: calc(var(--spacing)*2);
|
|
1681
2276
|
}
|
|
2277
|
+
.turtle-widget-root .pt-3 {
|
|
2278
|
+
padding-top: calc(var(--spacing)*3);
|
|
2279
|
+
}
|
|
2280
|
+
.turtle-widget-root .pt-6\! {
|
|
2281
|
+
padding-top: calc(var(--spacing)*6) !important;
|
|
2282
|
+
}
|
|
2283
|
+
.turtle-widget-root .pr-2 {
|
|
2284
|
+
padding-right: calc(var(--spacing)*2);
|
|
2285
|
+
}
|
|
2286
|
+
.turtle-widget-root .pr-2\.5 {
|
|
2287
|
+
padding-right: calc(var(--spacing)*2.5);
|
|
2288
|
+
}
|
|
2289
|
+
.turtle-widget-root .pr-3 {
|
|
2290
|
+
padding-right: calc(var(--spacing)*3);
|
|
2291
|
+
}
|
|
1682
2292
|
.turtle-widget-root .pr-8 {
|
|
1683
2293
|
padding-right: calc(var(--spacing)*8);
|
|
1684
2294
|
}
|
|
2295
|
+
.turtle-widget-root .pr-12 {
|
|
2296
|
+
padding-right: calc(var(--spacing)*12);
|
|
2297
|
+
}
|
|
2298
|
+
.turtle-widget-root .pb-2 {
|
|
2299
|
+
padding-bottom: calc(var(--spacing)*2);
|
|
2300
|
+
}
|
|
1685
2301
|
.turtle-widget-root .pb-3 {
|
|
1686
2302
|
padding-bottom: calc(var(--spacing)*3);
|
|
1687
2303
|
}
|
|
2304
|
+
.turtle-widget-root .pl-0 {
|
|
2305
|
+
padding-left: calc(var(--spacing)*0);
|
|
2306
|
+
}
|
|
1688
2307
|
.turtle-widget-root .pl-2 {
|
|
1689
2308
|
padding-left: calc(var(--spacing)*2);
|
|
1690
2309
|
}
|
|
2310
|
+
.turtle-widget-root .pl-3 {
|
|
2311
|
+
padding-left: calc(var(--spacing)*3);
|
|
2312
|
+
}
|
|
2313
|
+
.turtle-widget-root .pl-4 {
|
|
2314
|
+
padding-left: calc(var(--spacing)*4);
|
|
2315
|
+
}
|
|
2316
|
+
.turtle-widget-root .pl-8 {
|
|
2317
|
+
padding-left: calc(var(--spacing)*8);
|
|
2318
|
+
}
|
|
1691
2319
|
.turtle-widget-root .text-center {
|
|
1692
2320
|
text-align: center;
|
|
1693
2321
|
}
|
|
@@ -1751,10 +2379,17 @@
|
|
|
1751
2379
|
font-size: var(--text-xs);
|
|
1752
2380
|
line-height: var(--tw-leading,var(--text-xs--line-height));
|
|
1753
2381
|
}
|
|
2382
|
+
.turtle-widget-root .text-\[10px\] {
|
|
2383
|
+
font-size: 10px;
|
|
2384
|
+
}
|
|
1754
2385
|
.turtle-widget-root .leading-none {
|
|
1755
2386
|
--tw-leading: 1;
|
|
1756
2387
|
line-height: 1;
|
|
1757
2388
|
}
|
|
2389
|
+
.turtle-widget-root .font-\[400\] {
|
|
2390
|
+
--tw-font-weight: 400;
|
|
2391
|
+
font-weight: 400;
|
|
2392
|
+
}
|
|
1758
2393
|
.turtle-widget-root .font-bold {
|
|
1759
2394
|
--tw-font-weight: var(--font-weight-bold);
|
|
1760
2395
|
font-weight: var(--font-weight-bold);
|
|
@@ -1775,12 +2410,25 @@
|
|
|
1775
2410
|
--tw-tracking: var(--tracking-tight);
|
|
1776
2411
|
letter-spacing: var(--tracking-tight);
|
|
1777
2412
|
}
|
|
2413
|
+
.turtle-widget-root .tracking-widest {
|
|
2414
|
+
--tw-tracking: var(--tracking-widest);
|
|
2415
|
+
letter-spacing: var(--tracking-widest);
|
|
2416
|
+
}
|
|
1778
2417
|
.turtle-widget-root .text-balance {
|
|
1779
2418
|
text-wrap: balance;
|
|
1780
2419
|
}
|
|
1781
2420
|
.turtle-widget-root .whitespace-nowrap {
|
|
1782
2421
|
white-space: nowrap;
|
|
1783
2422
|
}
|
|
2423
|
+
.turtle-widget-root .text-accent {
|
|
2424
|
+
color: var(--accent);
|
|
2425
|
+
}
|
|
2426
|
+
.turtle-widget-root .text-amber-600 {
|
|
2427
|
+
color: var(--color-amber-600);
|
|
2428
|
+
}
|
|
2429
|
+
.turtle-widget-root .text-current {
|
|
2430
|
+
color: currentColor;
|
|
2431
|
+
}
|
|
1784
2432
|
.turtle-widget-root .text-destructive {
|
|
1785
2433
|
color: var(--destructive);
|
|
1786
2434
|
}
|
|
@@ -1801,6 +2449,9 @@
|
|
|
1801
2449
|
}
|
|
1802
2450
|
}
|
|
1803
2451
|
}
|
|
2452
|
+
.turtle-widget-root .text-popover-foreground {
|
|
2453
|
+
color: var(--popover-foreground);
|
|
2454
|
+
}
|
|
1804
2455
|
.turtle-widget-root .text-primary {
|
|
1805
2456
|
color: var(--primary);
|
|
1806
2457
|
}
|
|
@@ -1827,6 +2478,13 @@
|
|
|
1827
2478
|
.turtle-widget-root .text-yellow-600 {
|
|
1828
2479
|
color: var(--color-yellow-600);
|
|
1829
2480
|
}
|
|
2481
|
+
.turtle-widget-root .capitalize {
|
|
2482
|
+
text-transform: capitalize;
|
|
2483
|
+
}
|
|
2484
|
+
.turtle-widget-root .tabular-nums {
|
|
2485
|
+
--tw-numeric-spacing: tabular-nums;
|
|
2486
|
+
font-variant-numeric: var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,);
|
|
2487
|
+
}
|
|
1830
2488
|
.turtle-widget-root .caret-foreground {
|
|
1831
2489
|
caret-color: var(--foreground);
|
|
1832
2490
|
}
|
|
@@ -1839,23 +2497,25 @@
|
|
|
1839
2497
|
.turtle-widget-root .caret-white {
|
|
1840
2498
|
caret-color: var(--color-white);
|
|
1841
2499
|
}
|
|
2500
|
+
.turtle-widget-root .opacity-20 {
|
|
2501
|
+
opacity: .2;
|
|
2502
|
+
}
|
|
1842
2503
|
.turtle-widget-root .opacity-50 {
|
|
1843
2504
|
opacity: .5;
|
|
1844
2505
|
}
|
|
2506
|
+
.turtle-widget-root .opacity-70 {
|
|
2507
|
+
opacity: .7;
|
|
2508
|
+
}
|
|
1845
2509
|
.turtle-widget-root .shadow {
|
|
1846
2510
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);
|
|
1847
2511
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
1848
2512
|
}
|
|
1849
|
-
.turtle-widget-root .shadow-\[
|
|
1850
|
-
--tw-shadow:
|
|
1851
|
-
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
1852
|
-
}
|
|
1853
|
-
.turtle-widget-root .shadow-\[0_0_20px_0_rgba\(0\,0\,0\,0\.25\)\] {
|
|
1854
|
-
--tw-shadow: 0 0 20px 0 var(--tw-shadow-color,#00000040);
|
|
2513
|
+
.turtle-widget-root .shadow-\[0px_2px_2px_0px\] {
|
|
2514
|
+
--tw-shadow: 0px 2px 2px 0px var(--tw-shadow-color,currentcolor);
|
|
1855
2515
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
1856
2516
|
}
|
|
1857
|
-
.turtle-widget-root .shadow
|
|
1858
|
-
--tw-shadow: 0 4px 4px
|
|
2517
|
+
.turtle-widget-root .shadow-lg {
|
|
2518
|
+
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);
|
|
1859
2519
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
1860
2520
|
}
|
|
1861
2521
|
.turtle-widget-root .shadow-md {
|
|
@@ -1870,6 +2530,10 @@
|
|
|
1870
2530
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);
|
|
1871
2531
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
1872
2532
|
}
|
|
2533
|
+
.turtle-widget-root .shadow-xl {
|
|
2534
|
+
--tw-shadow: 0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);
|
|
2535
|
+
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
2536
|
+
}
|
|
1873
2537
|
.turtle-widget-root .shadow-xs {
|
|
1874
2538
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color,#0000000d);
|
|
1875
2539
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
@@ -1886,13 +2550,49 @@
|
|
|
1886
2550
|
--tw-ring-shadow: var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);
|
|
1887
2551
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
1888
2552
|
}
|
|
2553
|
+
.turtle-widget-root .shadow-black {
|
|
2554
|
+
--tw-shadow-color: #000;
|
|
2555
|
+
}
|
|
2556
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
2557
|
+
.turtle-widget-root .shadow-black {
|
|
2558
|
+
--tw-shadow-color: #000;
|
|
2559
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2560
|
+
--tw-shadow-color: color-mix(in oklab,var(--color-black)var(--tw-shadow-alpha),transparent);
|
|
2561
|
+
}
|
|
2562
|
+
}
|
|
2563
|
+
}
|
|
2564
|
+
.turtle-widget-root .shadow-primary {
|
|
2565
|
+
--tw-shadow-color: var(--primary);
|
|
2566
|
+
}
|
|
2567
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
2568
|
+
.turtle-widget-root .shadow-primary {
|
|
2569
|
+
--tw-shadow-color: var(--primary);
|
|
2570
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2571
|
+
--tw-shadow-color: color-mix(in oklab,var(--primary)var(--tw-shadow-alpha),transparent);
|
|
2572
|
+
}
|
|
2573
|
+
}
|
|
2574
|
+
}
|
|
1889
2575
|
.turtle-widget-root .ring-primary {
|
|
1890
2576
|
--tw-ring-color: var(--primary);
|
|
1891
2577
|
}
|
|
2578
|
+
.turtle-widget-root .ring-ring\/50 {
|
|
2579
|
+
--tw-ring-color: var(--ring);
|
|
2580
|
+
}
|
|
2581
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
2582
|
+
.turtle-widget-root .ring-ring\/50 {
|
|
2583
|
+
--tw-ring-color: var(--ring);
|
|
2584
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2585
|
+
--tw-ring-color: color-mix(in oklab,var(--ring)50%,transparent);
|
|
2586
|
+
}
|
|
2587
|
+
}
|
|
2588
|
+
}
|
|
1892
2589
|
.turtle-widget-root .ring-offset-2 {
|
|
1893
2590
|
--tw-ring-offset-width: 2px;
|
|
1894
2591
|
--tw-ring-offset-shadow: var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color);
|
|
1895
2592
|
}
|
|
2593
|
+
.turtle-widget-root .ring-offset-background {
|
|
2594
|
+
--tw-ring-offset-color: var(--background);
|
|
2595
|
+
}
|
|
1896
2596
|
.turtle-widget-root .outline-hidden {
|
|
1897
2597
|
--tw-outline-style: none;
|
|
1898
2598
|
outline-style: none;
|
|
@@ -1907,6 +2607,24 @@
|
|
|
1907
2607
|
outline-style: var(--tw-outline-style);
|
|
1908
2608
|
outline-width: 1px;
|
|
1909
2609
|
}
|
|
2610
|
+
.turtle-widget-root .drop-shadow-lg {
|
|
2611
|
+
--tw-drop-shadow-size: drop-shadow(0 4px 4px var(--tw-drop-shadow-color,#00000026));
|
|
2612
|
+
--tw-drop-shadow: drop-shadow(var(--drop-shadow-lg));
|
|
2613
|
+
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,);
|
|
2614
|
+
}
|
|
2615
|
+
.turtle-widget-root .filter {
|
|
2616
|
+
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,);
|
|
2617
|
+
}
|
|
2618
|
+
.turtle-widget-root .backdrop-blur-lg {
|
|
2619
|
+
--tw-backdrop-blur: blur(var(--blur-lg));
|
|
2620
|
+
-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,);
|
|
2621
|
+
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,);
|
|
2622
|
+
}
|
|
2623
|
+
.turtle-widget-root .transition {
|
|
2624
|
+
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;
|
|
2625
|
+
transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
|
|
2626
|
+
transition-duration: var(--tw-duration,var(--default-transition-duration));
|
|
2627
|
+
}
|
|
1910
2628
|
.turtle-widget-root .transition-\[color\,box-shadow\] {
|
|
1911
2629
|
transition-property: color,box-shadow;
|
|
1912
2630
|
transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
|
|
@@ -1922,11 +2640,24 @@
|
|
|
1922
2640
|
transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
|
|
1923
2641
|
transition-duration: var(--tw-duration,var(--default-transition-duration));
|
|
1924
2642
|
}
|
|
2643
|
+
.turtle-widget-root .transition-opacity {
|
|
2644
|
+
transition-property: opacity;
|
|
2645
|
+
transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
|
|
2646
|
+
transition-duration: var(--tw-duration,var(--default-transition-duration));
|
|
2647
|
+
}
|
|
2648
|
+
.turtle-widget-root .transition-shadow {
|
|
2649
|
+
transition-property: box-shadow;
|
|
2650
|
+
transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
|
|
2651
|
+
transition-duration: var(--tw-duration,var(--default-transition-duration));
|
|
2652
|
+
}
|
|
1925
2653
|
.turtle-widget-root .transition-transform {
|
|
1926
2654
|
transition-property: transform,translate,scale,rotate;
|
|
1927
2655
|
transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
|
|
1928
2656
|
transition-duration: var(--tw-duration,var(--default-transition-duration));
|
|
1929
2657
|
}
|
|
2658
|
+
.turtle-widget-root .transition-none {
|
|
2659
|
+
transition-property: none;
|
|
2660
|
+
}
|
|
1930
2661
|
.turtle-widget-root .duration-200 {
|
|
1931
2662
|
--tw-duration: .2s;
|
|
1932
2663
|
transition-duration: .2s;
|
|
@@ -1949,12 +2680,51 @@
|
|
|
1949
2680
|
.turtle-widget-root .zoom-in-95 {
|
|
1950
2681
|
--tw-enter-scale: .95;
|
|
1951
2682
|
}
|
|
2683
|
+
.turtle-widget-root .group-disabled\:opacity-80:is(:where(.group):disabled *) {
|
|
2684
|
+
opacity: .8;
|
|
2685
|
+
}
|
|
2686
|
+
.turtle-widget-root .group-data-\[active\=true\]\:block:is(:where(.group)[data-active=true] *) {
|
|
2687
|
+
display: block;
|
|
2688
|
+
}
|
|
1952
2689
|
.turtle-widget-root .group-data-\[disabled\=true\]\:pointer-events-none:is(:where(.group)[data-disabled=true] *) {
|
|
1953
2690
|
pointer-events: none;
|
|
1954
2691
|
}
|
|
1955
2692
|
.turtle-widget-root .group-data-\[disabled\=true\]\:opacity-50:is(:where(.group)[data-disabled=true] *) {
|
|
1956
2693
|
opacity: .5;
|
|
1957
2694
|
}
|
|
2695
|
+
.turtle-widget-root .group-data-\[state\=open\]\:rotate-180:is(:where(.group)[data-state=open] *) {
|
|
2696
|
+
rotate: 180deg;
|
|
2697
|
+
}
|
|
2698
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:top-full:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
|
|
2699
|
+
top: 100%;
|
|
2700
|
+
}
|
|
2701
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:mt-1\.5:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
|
|
2702
|
+
margin-top: calc(var(--spacing)*1.5);
|
|
2703
|
+
}
|
|
2704
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:overflow-hidden:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
|
|
2705
|
+
overflow: hidden;
|
|
2706
|
+
}
|
|
2707
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:rounded-md:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
|
|
2708
|
+
border-radius: calc(var(--radius) - 2px);
|
|
2709
|
+
}
|
|
2710
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:border:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
|
|
2711
|
+
border-style: var(--tw-border-style);
|
|
2712
|
+
border-width: 1px;
|
|
2713
|
+
}
|
|
2714
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:bg-popover:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
|
|
2715
|
+
background-color: var(--popover);
|
|
2716
|
+
}
|
|
2717
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:text-popover-foreground:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
|
|
2718
|
+
color: var(--popover-foreground);
|
|
2719
|
+
}
|
|
2720
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:shadow:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
|
|
2721
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);
|
|
2722
|
+
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
2723
|
+
}
|
|
2724
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:duration-200:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
|
|
2725
|
+
--tw-duration: .2s;
|
|
2726
|
+
transition-duration: .2s;
|
|
2727
|
+
}
|
|
1958
2728
|
.turtle-widget-root .peer-disabled\:cursor-not-allowed:is(:where(.peer):disabled~*) {
|
|
1959
2729
|
cursor: not-allowed;
|
|
1960
2730
|
}
|
|
@@ -2061,41 +2831,36 @@
|
|
|
2061
2831
|
-webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
|
|
2062
2832
|
mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
|
|
2063
2833
|
}
|
|
2834
|
+
.turtle-widget-root .first\:rounded-l-full:first-child {
|
|
2835
|
+
border-top-left-radius: 3.40282e38px;
|
|
2836
|
+
border-bottom-left-radius: 3.40282e38px;
|
|
2837
|
+
}
|
|
2064
2838
|
.turtle-widget-root .first\:rounded-l-md:first-child {
|
|
2065
2839
|
border-top-left-radius: calc(var(--radius) - 2px);
|
|
2066
2840
|
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
2067
2841
|
}
|
|
2842
|
+
.turtle-widget-root .first\:pl-4:first-child {
|
|
2843
|
+
padding-left: calc(var(--spacing)*4);
|
|
2844
|
+
}
|
|
2845
|
+
.turtle-widget-root .last\:rounded-r-full:last-child {
|
|
2846
|
+
border-top-right-radius: 3.40282e38px;
|
|
2847
|
+
border-bottom-right-radius: 3.40282e38px;
|
|
2848
|
+
}
|
|
2068
2849
|
.turtle-widget-root .last\:rounded-r-md:last-child {
|
|
2069
2850
|
border-top-right-radius: calc(var(--radius) - 2px);
|
|
2070
2851
|
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2071
2852
|
}
|
|
2853
|
+
.turtle-widget-root .last\:pr-4:last-child {
|
|
2854
|
+
padding-right: calc(var(--spacing)*4);
|
|
2855
|
+
}
|
|
2072
2856
|
@media (hover:hover) {
|
|
2073
2857
|
.turtle-widget-root .hover\:bg-accent:hover {
|
|
2074
2858
|
background-color: var(--accent);
|
|
2075
2859
|
}
|
|
2076
|
-
.turtle-widget-root .hover\:bg-background
|
|
2860
|
+
.turtle-widget-root .hover\:bg-background:hover {
|
|
2077
2861
|
background-color: var(--background);
|
|
2078
2862
|
}
|
|
2079
|
-
|
|
2080
|
-
.turtle-widget-root .hover\:bg-background\/90:hover {
|
|
2081
|
-
background-color: var(--background);
|
|
2082
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2083
|
-
background-color: color-mix(in oklab,var(--background)90%,transparent);
|
|
2084
|
-
}
|
|
2085
|
-
}
|
|
2086
|
-
}
|
|
2087
|
-
.turtle-widget-root .hover\:bg-muted:hover, .turtle-widget-root .hover\:bg-muted\/50:hover {
|
|
2088
|
-
background-color: var(--muted);
|
|
2089
|
-
}
|
|
2090
|
-
@supports (color:color-mix(in lab,red,red)) {
|
|
2091
|
-
.turtle-widget-root .hover\:bg-muted\/50:hover {
|
|
2092
|
-
background-color: var(--muted);
|
|
2093
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2094
|
-
background-color: color-mix(in oklab,var(--muted)50%,transparent);
|
|
2095
|
-
}
|
|
2096
|
-
}
|
|
2097
|
-
}
|
|
2098
|
-
.turtle-widget-root .hover\:bg-muted\/80:hover {
|
|
2863
|
+
.turtle-widget-root .hover\:bg-muted:hover, .turtle-widget-root .hover\:bg-muted\/80:hover {
|
|
2099
2864
|
background-color: var(--muted);
|
|
2100
2865
|
}
|
|
2101
2866
|
@supports (color:color-mix(in lab,red,red)) {
|
|
@@ -2117,7 +2882,7 @@
|
|
|
2117
2882
|
}
|
|
2118
2883
|
}
|
|
2119
2884
|
}
|
|
2120
|
-
.turtle-widget-root .hover\:bg-secondary\/80:hover {
|
|
2885
|
+
.turtle-widget-root .hover\:bg-secondary:hover, .turtle-widget-root .hover\:bg-secondary\/80:hover {
|
|
2121
2886
|
background-color: var(--secondary);
|
|
2122
2887
|
}
|
|
2123
2888
|
@supports (color:color-mix(in lab,red,red)) {
|
|
@@ -2154,14 +2919,17 @@
|
|
|
2154
2919
|
}
|
|
2155
2920
|
}
|
|
2156
2921
|
}
|
|
2157
|
-
.turtle-widget-root .hover\:
|
|
2158
|
-
|
|
2159
|
-
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
2922
|
+
.turtle-widget-root .hover\:opacity-100:hover {
|
|
2923
|
+
opacity: 1;
|
|
2160
2924
|
}
|
|
2161
2925
|
.turtle-widget-root .hover\:shadow-md:hover {
|
|
2162
2926
|
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);
|
|
2163
2927
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
2164
2928
|
}
|
|
2929
|
+
.turtle-widget-root .hover\:ring-4:hover {
|
|
2930
|
+
--tw-ring-shadow: var(--tw-ring-inset,)0 0 0 calc(4px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);
|
|
2931
|
+
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
2932
|
+
}
|
|
2165
2933
|
}
|
|
2166
2934
|
.turtle-widget-root .focus\:z-10:focus {
|
|
2167
2935
|
z-index: 10;
|
|
@@ -2173,16 +2941,26 @@
|
|
|
2173
2941
|
.turtle-widget-root .focus\:border-primary:focus {
|
|
2174
2942
|
border-color: var(--primary);
|
|
2175
2943
|
}
|
|
2176
|
-
.turtle-widget-root .focus\:
|
|
2177
|
-
|
|
2944
|
+
.turtle-widget-root .focus\:border-transparent:focus {
|
|
2945
|
+
border-color: #0000;
|
|
2178
2946
|
}
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2947
|
+
.turtle-widget-root .focus\:bg-accent:focus {
|
|
2948
|
+
background-color: var(--accent);
|
|
2949
|
+
}
|
|
2950
|
+
.turtle-widget-root .focus\:bg-neutral-alpha-2:focus {
|
|
2951
|
+
background-color: var(--color-neutral-alpha-2);
|
|
2952
|
+
}
|
|
2953
|
+
.turtle-widget-root .focus\:bg-secondary:focus {
|
|
2954
|
+
background-color: var(--secondary);
|
|
2955
|
+
}
|
|
2956
|
+
.turtle-widget-root .focus\:text-accent-foreground:focus {
|
|
2957
|
+
color: var(--accent-foreground);
|
|
2958
|
+
}
|
|
2959
|
+
.turtle-widget-root .focus\:text-foreground:focus {
|
|
2960
|
+
color: var(--foreground);
|
|
2961
|
+
}
|
|
2962
|
+
.turtle-widget-root .focus\:text-secondary-foreground:focus {
|
|
2963
|
+
color: var(--secondary-foreground);
|
|
2186
2964
|
}
|
|
2187
2965
|
.turtle-widget-root .focus\:ring-0:focus {
|
|
2188
2966
|
--tw-ring-shadow: var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);
|
|
@@ -2192,7 +2970,7 @@
|
|
|
2192
2970
|
--tw-ring-shadow: var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);
|
|
2193
2971
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
2194
2972
|
}
|
|
2195
|
-
.turtle-widget-root .focus\:ring-primary\/20:focus {
|
|
2973
|
+
.turtle-widget-root .focus\:ring-primary:focus, .turtle-widget-root .focus\:ring-primary\/20:focus {
|
|
2196
2974
|
--tw-ring-color: var(--primary);
|
|
2197
2975
|
}
|
|
2198
2976
|
@supports (color:color-mix(in lab,red,red)) {
|
|
@@ -2203,6 +2981,23 @@
|
|
|
2203
2981
|
}
|
|
2204
2982
|
}
|
|
2205
2983
|
}
|
|
2984
|
+
.turtle-widget-root .focus\:ring-ring:focus {
|
|
2985
|
+
--tw-ring-color: var(--ring);
|
|
2986
|
+
}
|
|
2987
|
+
.turtle-widget-root .focus\:ring-offset-2:focus {
|
|
2988
|
+
--tw-ring-offset-width: 2px;
|
|
2989
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color);
|
|
2990
|
+
}
|
|
2991
|
+
.turtle-widget-root .focus\:outline-hidden:focus {
|
|
2992
|
+
--tw-outline-style: none;
|
|
2993
|
+
outline-style: none;
|
|
2994
|
+
}
|
|
2995
|
+
@media (forced-colors:active) {
|
|
2996
|
+
.turtle-widget-root .focus\:outline-hidden:focus {
|
|
2997
|
+
outline-offset: 2px;
|
|
2998
|
+
outline: 2px solid #0000;
|
|
2999
|
+
}
|
|
3000
|
+
}
|
|
2206
3001
|
.turtle-widget-root .focus\:outline-none:focus {
|
|
2207
3002
|
--tw-outline-style: none;
|
|
2208
3003
|
outline-style: none;
|
|
@@ -2213,10 +3008,25 @@
|
|
|
2213
3008
|
.turtle-widget-root .focus-visible\:border-ring:focus-visible {
|
|
2214
3009
|
border-color: var(--ring);
|
|
2215
3010
|
}
|
|
3011
|
+
.turtle-widget-root .focus-visible\:ring-4:focus-visible {
|
|
3012
|
+
--tw-ring-shadow: var(--tw-ring-inset,)0 0 0 calc(4px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);
|
|
3013
|
+
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
3014
|
+
}
|
|
2216
3015
|
.turtle-widget-root .focus-visible\:ring-\[3px\]:focus-visible {
|
|
2217
3016
|
--tw-ring-shadow: var(--tw-ring-inset,)0 0 0 calc(3px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);
|
|
2218
3017
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
2219
3018
|
}
|
|
3019
|
+
.turtle-widget-root .focus-visible\:ring-destructive\/20:focus-visible {
|
|
3020
|
+
--tw-ring-color: var(--destructive);
|
|
3021
|
+
}
|
|
3022
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3023
|
+
.turtle-widget-root .focus-visible\:ring-destructive\/20:focus-visible {
|
|
3024
|
+
--tw-ring-color: var(--destructive);
|
|
3025
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3026
|
+
--tw-ring-color: color-mix(in oklab,var(--destructive)20%,transparent);
|
|
3027
|
+
}
|
|
3028
|
+
}
|
|
3029
|
+
}
|
|
2220
3030
|
.turtle-widget-root .focus-visible\:ring-ring\/50:focus-visible {
|
|
2221
3031
|
--tw-ring-color: var(--ring);
|
|
2222
3032
|
}
|
|
@@ -2228,19 +3038,69 @@
|
|
|
2228
3038
|
}
|
|
2229
3039
|
}
|
|
2230
3040
|
}
|
|
3041
|
+
.turtle-widget-root .focus-visible\:outline-hidden:focus-visible {
|
|
3042
|
+
--tw-outline-style: none;
|
|
3043
|
+
outline-style: none;
|
|
3044
|
+
}
|
|
3045
|
+
@media (forced-colors:active) {
|
|
3046
|
+
.turtle-widget-root .focus-visible\:outline-hidden:focus-visible {
|
|
3047
|
+
outline-offset: 2px;
|
|
3048
|
+
outline: 2px solid #0000;
|
|
3049
|
+
}
|
|
3050
|
+
}
|
|
2231
3051
|
.turtle-widget-root .focus-visible\:outline-1:focus-visible {
|
|
2232
3052
|
outline-style: var(--tw-outline-style);
|
|
2233
3053
|
outline-width: 1px;
|
|
2234
3054
|
}
|
|
3055
|
+
.turtle-widget-root .active\:from-primary:active {
|
|
3056
|
+
--tw-gradient-from: var(--primary);
|
|
3057
|
+
--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));
|
|
3058
|
+
}
|
|
3059
|
+
.turtle-widget-root .active\:via-primary\/20:active {
|
|
3060
|
+
--tw-gradient-via: var(--primary);
|
|
3061
|
+
}
|
|
3062
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3063
|
+
.turtle-widget-root .active\:via-primary\/20:active {
|
|
3064
|
+
--tw-gradient-via: var(--primary);
|
|
3065
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3066
|
+
--tw-gradient-via: color-mix(in oklab,var(--primary)20%,transparent);
|
|
3067
|
+
}
|
|
3068
|
+
}
|
|
3069
|
+
}
|
|
3070
|
+
.turtle-widget-root .active\:via-primary\/20:active {
|
|
3071
|
+
--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);
|
|
3072
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
3073
|
+
}
|
|
3074
|
+
.turtle-widget-root .active\:to-primary\/30:active {
|
|
3075
|
+
--tw-gradient-to: var(--primary);
|
|
3076
|
+
}
|
|
3077
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3078
|
+
.turtle-widget-root .active\:to-primary\/30:active {
|
|
3079
|
+
--tw-gradient-to: var(--primary);
|
|
3080
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3081
|
+
--tw-gradient-to: color-mix(in oklab,var(--primary)30%,transparent);
|
|
3082
|
+
}
|
|
3083
|
+
}
|
|
3084
|
+
}
|
|
3085
|
+
.turtle-widget-root .active\:to-primary\/30:active {
|
|
3086
|
+
--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));
|
|
3087
|
+
}
|
|
2235
3088
|
.turtle-widget-root .disabled\:pointer-events-none:disabled {
|
|
2236
3089
|
pointer-events: none;
|
|
2237
3090
|
}
|
|
2238
3091
|
.turtle-widget-root .disabled\:cursor-not-allowed:disabled {
|
|
2239
3092
|
cursor: not-allowed;
|
|
2240
3093
|
}
|
|
3094
|
+
.turtle-widget-root .disabled\:text-muted-foreground:disabled {
|
|
3095
|
+
color: var(--muted-foreground);
|
|
3096
|
+
}
|
|
2241
3097
|
.turtle-widget-root .disabled\:opacity-50:disabled {
|
|
2242
3098
|
opacity: .5;
|
|
2243
3099
|
}
|
|
3100
|
+
.turtle-widget-root .disabled\:grayscale-100:disabled {
|
|
3101
|
+
--tw-grayscale: grayscale(100%);
|
|
3102
|
+
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,);
|
|
3103
|
+
}
|
|
2244
3104
|
.turtle-widget-root .has-\[\>svg\]\:px-2\.5:has(>svg) {
|
|
2245
3105
|
padding-inline: calc(var(--spacing)*2.5);
|
|
2246
3106
|
}
|
|
@@ -2264,70 +3124,162 @@
|
|
|
2264
3124
|
}
|
|
2265
3125
|
}
|
|
2266
3126
|
}
|
|
2267
|
-
.turtle-widget-root .data-\[
|
|
2268
|
-
|
|
3127
|
+
.turtle-widget-root .data-\[active\=true\]\:bg-neutral-alpha-10[data-active=true] {
|
|
3128
|
+
background-color: var(--color-neutral-alpha-10);
|
|
2269
3129
|
}
|
|
2270
|
-
.turtle-widget-root .data-\[
|
|
2271
|
-
|
|
3130
|
+
.turtle-widget-root .data-\[active\=true\]\:bg-gradient-to-b[data-active=true] {
|
|
3131
|
+
--tw-gradient-position: to bottom in oklab;
|
|
3132
|
+
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
2272
3133
|
}
|
|
2273
|
-
.turtle-widget-root .data-\[
|
|
2274
|
-
|
|
3134
|
+
.turtle-widget-root .data-\[active\=true\]\:from-primary[data-active=true] {
|
|
3135
|
+
--tw-gradient-from: var(--primary);
|
|
3136
|
+
--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));
|
|
2275
3137
|
}
|
|
2276
|
-
.turtle-widget-root .data-\[
|
|
2277
|
-
|
|
3138
|
+
.turtle-widget-root .data-\[active\=true\]\:via-primary\/20[data-active=true] {
|
|
3139
|
+
--tw-gradient-via: var(--primary);
|
|
2278
3140
|
}
|
|
2279
|
-
|
|
2280
|
-
|
|
3141
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3142
|
+
.turtle-widget-root .data-\[active\=true\]\:via-primary\/20[data-active=true] {
|
|
3143
|
+
--tw-gradient-via: var(--primary);
|
|
3144
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3145
|
+
--tw-gradient-via: color-mix(in oklab,var(--primary)20%,transparent);
|
|
3146
|
+
}
|
|
3147
|
+
}
|
|
2281
3148
|
}
|
|
2282
|
-
.turtle-widget-root .data-\[
|
|
2283
|
-
|
|
3149
|
+
.turtle-widget-root .data-\[active\=true\]\:via-primary\/20[data-active=true] {
|
|
3150
|
+
--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);
|
|
3151
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
2284
3152
|
}
|
|
2285
|
-
.turtle-widget-root .data-\[
|
|
2286
|
-
|
|
3153
|
+
.turtle-widget-root .data-\[active\=true\]\:to-primary\/30[data-active=true] {
|
|
3154
|
+
--tw-gradient-to: var(--primary);
|
|
3155
|
+
}
|
|
3156
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3157
|
+
.turtle-widget-root .data-\[active\=true\]\:to-primary\/30[data-active=true] {
|
|
3158
|
+
--tw-gradient-to: var(--primary);
|
|
3159
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3160
|
+
--tw-gradient-to: color-mix(in oklab,var(--primary)30%,transparent);
|
|
3161
|
+
}
|
|
3162
|
+
}
|
|
3163
|
+
}
|
|
3164
|
+
.turtle-widget-root .data-\[active\=true\]\:to-primary\/30[data-active=true] {
|
|
3165
|
+
--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));
|
|
3166
|
+
}
|
|
3167
|
+
.turtle-widget-root .data-\[active\=true\]\:text-foreground[data-active=true] {
|
|
3168
|
+
color: var(--foreground);
|
|
3169
|
+
}
|
|
3170
|
+
.turtle-widget-root .data-\[active\=true\]\:text-primary[data-active=true] {
|
|
3171
|
+
color: var(--primary);
|
|
3172
|
+
}
|
|
3173
|
+
.turtle-widget-root .data-\[disabled\]\:pointer-events-none[data-disabled] {
|
|
3174
|
+
pointer-events: none;
|
|
3175
|
+
}
|
|
3176
|
+
.turtle-widget-root .data-\[disabled\]\:opacity-50[data-disabled] {
|
|
3177
|
+
opacity: .5;
|
|
3178
|
+
}
|
|
3179
|
+
.turtle-widget-root .data-\[inset\]\:pl-8[data-inset] {
|
|
3180
|
+
padding-left: calc(var(--spacing)*8);
|
|
3181
|
+
}
|
|
3182
|
+
.turtle-widget-root .data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion=from-end] {
|
|
3183
|
+
--tw-enter-translate-x: calc(var(--spacing)*52);
|
|
3184
|
+
}
|
|
3185
|
+
.turtle-widget-root .data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion=from-start] {
|
|
3186
|
+
--tw-enter-translate-x: calc(var(--spacing)*52*-1);
|
|
3187
|
+
}
|
|
3188
|
+
.turtle-widget-root .data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion=to-end] {
|
|
3189
|
+
--tw-exit-translate-x: calc(var(--spacing)*52);
|
|
3190
|
+
}
|
|
3191
|
+
.turtle-widget-root .data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion=to-start] {
|
|
3192
|
+
--tw-exit-translate-x: calc(var(--spacing)*52*-1);
|
|
3193
|
+
}
|
|
3194
|
+
.turtle-widget-root .data-\[motion\^\=from-\]\:animate-in[data-motion^=from-] {
|
|
3195
|
+
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
3196
|
+
}
|
|
3197
|
+
.turtle-widget-root .data-\[motion\^\=from-\]\:fade-in[data-motion^=from-] {
|
|
3198
|
+
--tw-enter-opacity: 0;
|
|
3199
|
+
}
|
|
3200
|
+
.turtle-widget-root .data-\[motion\^\=to-\]\:animate-out[data-motion^=to-] {
|
|
3201
|
+
animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
3202
|
+
}
|
|
3203
|
+
.turtle-widget-root .data-\[motion\^\=to-\]\:fade-out[data-motion^=to-] {
|
|
3204
|
+
--tw-exit-opacity: 0;
|
|
3205
|
+
}
|
|
3206
|
+
.turtle-widget-root .data-\[orientation\=horizontal\]\:h-1\.5[data-orientation=horizontal] {
|
|
3207
|
+
height: calc(var(--spacing)*1.5);
|
|
3208
|
+
}
|
|
3209
|
+
.turtle-widget-root .data-\[orientation\=horizontal\]\:h-full[data-orientation=horizontal] {
|
|
3210
|
+
height: 100%;
|
|
3211
|
+
}
|
|
3212
|
+
.turtle-widget-root .data-\[orientation\=horizontal\]\:h-px[data-orientation=horizontal] {
|
|
3213
|
+
height: 1px;
|
|
3214
|
+
}
|
|
3215
|
+
.turtle-widget-root .data-\[orientation\=horizontal\]\:w-full[data-orientation=horizontal] {
|
|
3216
|
+
width: 100%;
|
|
3217
|
+
}
|
|
3218
|
+
.turtle-widget-root .data-\[orientation\=vertical\]\:h-full[data-orientation=vertical] {
|
|
3219
|
+
height: 100%;
|
|
3220
|
+
}
|
|
3221
|
+
.turtle-widget-root .data-\[orientation\=vertical\]\:min-h-44[data-orientation=vertical] {
|
|
3222
|
+
min-height: calc(var(--spacing)*44);
|
|
3223
|
+
}
|
|
3224
|
+
.turtle-widget-root .data-\[orientation\=vertical\]\:w-1\.5[data-orientation=vertical] {
|
|
3225
|
+
width: calc(var(--spacing)*1.5);
|
|
3226
|
+
}
|
|
3227
|
+
.turtle-widget-root .data-\[orientation\=vertical\]\:w-auto[data-orientation=vertical] {
|
|
3228
|
+
width: auto;
|
|
3229
|
+
}
|
|
3230
|
+
.turtle-widget-root .data-\[orientation\=vertical\]\:w-full[data-orientation=vertical] {
|
|
3231
|
+
width: 100%;
|
|
3232
|
+
}
|
|
3233
|
+
.turtle-widget-root .data-\[orientation\=vertical\]\:w-px[data-orientation=vertical] {
|
|
3234
|
+
width: 1px;
|
|
3235
|
+
}
|
|
3236
|
+
.turtle-widget-root .data-\[orientation\=vertical\]\:flex-col[data-orientation=vertical] {
|
|
3237
|
+
flex-direction: column;
|
|
3238
|
+
}
|
|
3239
|
+
.turtle-widget-root .data-\[placeholder\]\:text-muted-foreground[data-placeholder] {
|
|
3240
|
+
color: var(--muted-foreground);
|
|
2287
3241
|
}
|
|
2288
3242
|
.turtle-widget-root .data-\[side\=bottom\]\:translate-y-1[data-side=bottom] {
|
|
2289
3243
|
--tw-translate-y: calc(var(--spacing)*1);
|
|
2290
3244
|
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
2291
3245
|
}
|
|
2292
3246
|
.turtle-widget-root .data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom] {
|
|
2293
|
-
--tw-enter-translate-y: calc(
|
|
3247
|
+
--tw-enter-translate-y: calc(var(--spacing)*2*-1);
|
|
2294
3248
|
}
|
|
2295
3249
|
.turtle-widget-root .data-\[side\=left\]\:-translate-x-1[data-side=left] {
|
|
2296
3250
|
--tw-translate-x: calc(var(--spacing)*-1);
|
|
2297
3251
|
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
2298
3252
|
}
|
|
2299
3253
|
.turtle-widget-root .data-\[side\=left\]\:slide-in-from-right-2[data-side=left] {
|
|
2300
|
-
--tw-enter-translate-x: calc(
|
|
3254
|
+
--tw-enter-translate-x: calc(var(--spacing)*2);
|
|
2301
3255
|
}
|
|
2302
3256
|
.turtle-widget-root .data-\[side\=right\]\:translate-x-1[data-side=right] {
|
|
2303
3257
|
--tw-translate-x: calc(var(--spacing)*1);
|
|
2304
3258
|
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
2305
3259
|
}
|
|
2306
3260
|
.turtle-widget-root .data-\[side\=right\]\:slide-in-from-left-2[data-side=right] {
|
|
2307
|
-
--tw-enter-translate-x: calc(
|
|
3261
|
+
--tw-enter-translate-x: calc(var(--spacing)*2*-1);
|
|
2308
3262
|
}
|
|
2309
3263
|
.turtle-widget-root .data-\[side\=top\]\:-translate-y-1[data-side=top] {
|
|
2310
3264
|
--tw-translate-y: calc(var(--spacing)*-1);
|
|
2311
3265
|
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
2312
3266
|
}
|
|
2313
3267
|
.turtle-widget-root .data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top] {
|
|
2314
|
-
--tw-enter-translate-y: calc(
|
|
3268
|
+
--tw-enter-translate-y: calc(var(--spacing)*2);
|
|
2315
3269
|
}
|
|
2316
|
-
.turtle-widget-root .data-\[size\=default\]\:h-
|
|
2317
|
-
height: calc(var(--spacing)*
|
|
3270
|
+
.turtle-widget-root .data-\[size\=default\]\:h-10[data-size=default] {
|
|
3271
|
+
height: calc(var(--spacing)*10);
|
|
2318
3272
|
}
|
|
2319
|
-
.turtle-widget-root .data-\[size\=sm\]\:h-8[data-size=sm]
|
|
3273
|
+
.turtle-widget-root .data-\[size\=sm\]\:h-8[data-size=sm] {
|
|
2320
3274
|
height: calc(var(--spacing)*8);
|
|
2321
3275
|
}
|
|
2322
|
-
.turtle-widget-root
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
.turtle-widget-root .data-\[size\=xs\]\:py-2[data-size=xs] {
|
|
2326
|
-
padding-block: calc(var(--spacing)*2);
|
|
3276
|
+
.turtle-widget-root :is(.\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:ring-0 *)[data-slot=navigation-menu-link]:focus {
|
|
3277
|
+
--tw-ring-shadow: var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);
|
|
3278
|
+
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
2327
3279
|
}
|
|
2328
|
-
.turtle-widget-root
|
|
2329
|
-
|
|
2330
|
-
|
|
3280
|
+
.turtle-widget-root :is(.\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:outline-none *)[data-slot=navigation-menu-link]:focus {
|
|
3281
|
+
--tw-outline-style: none;
|
|
3282
|
+
outline-style: none;
|
|
2331
3283
|
}
|
|
2332
3284
|
.turtle-widget-root :is(.\*\:data-\[slot\=select-value\]\:line-clamp-1>*)[data-slot=select-value] {
|
|
2333
3285
|
-webkit-line-clamp: 1;
|
|
@@ -2348,9 +3300,25 @@
|
|
|
2348
3300
|
--tw-translate-x: calc(100% - 2px);
|
|
2349
3301
|
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
2350
3302
|
}
|
|
3303
|
+
.turtle-widget-root .data-\[state\=checked\]\:border[data-state=checked] {
|
|
3304
|
+
border-style: var(--tw-border-style);
|
|
3305
|
+
border-width: 1px;
|
|
3306
|
+
}
|
|
3307
|
+
.turtle-widget-root .data-\[state\=checked\]\:border-border[data-state=checked] {
|
|
3308
|
+
border-color: var(--border);
|
|
3309
|
+
}
|
|
3310
|
+
.turtle-widget-root .data-\[state\=checked\]\:border-primary[data-state=checked] {
|
|
3311
|
+
border-color: var(--primary);
|
|
3312
|
+
}
|
|
3313
|
+
.turtle-widget-root .data-\[state\=checked\]\:bg-neutral-alpha-2[data-state=checked] {
|
|
3314
|
+
background-color: var(--color-neutral-alpha-2);
|
|
3315
|
+
}
|
|
2351
3316
|
.turtle-widget-root .data-\[state\=checked\]\:bg-primary[data-state=checked] {
|
|
2352
3317
|
background-color: var(--primary);
|
|
2353
3318
|
}
|
|
3319
|
+
.turtle-widget-root .data-\[state\=checked\]\:text-primary-foreground[data-state=checked] {
|
|
3320
|
+
color: var(--primary-foreground);
|
|
3321
|
+
}
|
|
2354
3322
|
.turtle-widget-root .data-\[state\=closed\]\:animate-out[data-state=closed] {
|
|
2355
3323
|
animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
2356
3324
|
}
|
|
@@ -2360,6 +3328,21 @@
|
|
|
2360
3328
|
.turtle-widget-root .data-\[state\=closed\]\:zoom-out-95[data-state=closed] {
|
|
2361
3329
|
--tw-exit-scale: .95;
|
|
2362
3330
|
}
|
|
3331
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:animate-out:is(:where(.group\/navigation-menu)[data-viewport=false] *)[data-state=closed] {
|
|
3332
|
+
animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
3333
|
+
}
|
|
3334
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:fade-out-0:is(:where(.group\/navigation-menu)[data-viewport=false] *)[data-state=closed] {
|
|
3335
|
+
--tw-exit-opacity: 0;
|
|
3336
|
+
}
|
|
3337
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:zoom-out-95:is(:where(.group\/navigation-menu)[data-viewport=false] *)[data-state=closed] {
|
|
3338
|
+
--tw-exit-scale: .95;
|
|
3339
|
+
}
|
|
3340
|
+
.turtle-widget-root .data-\[state\=hidden\]\:animate-out[data-state=hidden] {
|
|
3341
|
+
animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
3342
|
+
}
|
|
3343
|
+
.turtle-widget-root .data-\[state\=hidden\]\:fade-out[data-state=hidden] {
|
|
3344
|
+
--tw-exit-opacity: 0;
|
|
3345
|
+
}
|
|
2363
3346
|
.turtle-widget-root .data-\[state\=on\]\:bg-accent[data-state=on] {
|
|
2364
3347
|
background-color: var(--accent);
|
|
2365
3348
|
}
|
|
@@ -2369,12 +3352,52 @@
|
|
|
2369
3352
|
.turtle-widget-root .data-\[state\=open\]\:animate-in[data-state=open] {
|
|
2370
3353
|
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
2371
3354
|
}
|
|
3355
|
+
.turtle-widget-root .data-\[state\=open\]\:bg-accent[data-state=open], .turtle-widget-root .data-\[state\=open\]\:bg-accent\/50[data-state=open] {
|
|
3356
|
+
background-color: var(--accent);
|
|
3357
|
+
}
|
|
3358
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3359
|
+
.turtle-widget-root .data-\[state\=open\]\:bg-accent\/50[data-state=open] {
|
|
3360
|
+
background-color: var(--accent);
|
|
3361
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3362
|
+
background-color: color-mix(in oklab,var(--accent)50%,transparent);
|
|
3363
|
+
}
|
|
3364
|
+
}
|
|
3365
|
+
}
|
|
3366
|
+
.turtle-widget-root .data-\[state\=open\]\:text-accent-foreground[data-state=open] {
|
|
3367
|
+
color: var(--accent-foreground);
|
|
3368
|
+
}
|
|
3369
|
+
.turtle-widget-root .data-\[state\=open\]\:text-muted-foreground[data-state=open] {
|
|
3370
|
+
color: var(--muted-foreground);
|
|
3371
|
+
}
|
|
2372
3372
|
.turtle-widget-root .data-\[state\=open\]\:fade-in-0[data-state=open] {
|
|
2373
3373
|
--tw-enter-opacity: 0;
|
|
2374
3374
|
}
|
|
3375
|
+
.turtle-widget-root .data-\[state\=open\]\:zoom-in-90[data-state=open] {
|
|
3376
|
+
--tw-enter-scale: .9;
|
|
3377
|
+
}
|
|
2375
3378
|
.turtle-widget-root .data-\[state\=open\]\:zoom-in-95[data-state=open] {
|
|
2376
3379
|
--tw-enter-scale: .95;
|
|
2377
3380
|
}
|
|
3381
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:animate-in:is(:where(.group\/navigation-menu)[data-viewport=false] *)[data-state=open] {
|
|
3382
|
+
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
3383
|
+
}
|
|
3384
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:fade-in-0:is(:where(.group\/navigation-menu)[data-viewport=false] *)[data-state=open] {
|
|
3385
|
+
--tw-enter-opacity: 0;
|
|
3386
|
+
}
|
|
3387
|
+
.turtle-widget-root .group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:zoom-in-95:is(:where(.group\/navigation-menu)[data-viewport=false] *)[data-state=open] {
|
|
3388
|
+
--tw-enter-scale: .95;
|
|
3389
|
+
}
|
|
3390
|
+
@media (hover:hover) {
|
|
3391
|
+
.turtle-widget-root .data-\[state\=open\]\:hover\:bg-accent[data-state=open]:hover {
|
|
3392
|
+
background-color: var(--accent);
|
|
3393
|
+
}
|
|
3394
|
+
}
|
|
3395
|
+
.turtle-widget-root .data-\[state\=open\]\:focus\:bg-accent[data-state=open]:focus {
|
|
3396
|
+
background-color: var(--accent);
|
|
3397
|
+
}
|
|
3398
|
+
.turtle-widget-root .data-\[state\=selected\]\:bg-neutral-alpha-10[data-state=selected] {
|
|
3399
|
+
background-color: var(--color-neutral-alpha-10);
|
|
3400
|
+
}
|
|
2378
3401
|
.turtle-widget-root .data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked] {
|
|
2379
3402
|
--tw-translate-x: calc(var(--spacing)*0);
|
|
2380
3403
|
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
@@ -2382,6 +3405,29 @@
|
|
|
2382
3405
|
.turtle-widget-root .data-\[state\=unchecked\]\:bg-input[data-state=unchecked] {
|
|
2383
3406
|
background-color: var(--input);
|
|
2384
3407
|
}
|
|
3408
|
+
.turtle-widget-root .data-\[state\=visible\]\:animate-in[data-state=visible] {
|
|
3409
|
+
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
3410
|
+
}
|
|
3411
|
+
.turtle-widget-root .data-\[state\=visible\]\:fade-in[data-state=visible] {
|
|
3412
|
+
--tw-enter-opacity: 0;
|
|
3413
|
+
}
|
|
3414
|
+
.turtle-widget-root .data-\[variant\=destructive\]\:text-destructive[data-variant=destructive] {
|
|
3415
|
+
color: var(--destructive);
|
|
3416
|
+
}
|
|
3417
|
+
.turtle-widget-root .data-\[variant\=destructive\]\:focus\:bg-destructive\/10[data-variant=destructive]:focus {
|
|
3418
|
+
background-color: var(--destructive);
|
|
3419
|
+
}
|
|
3420
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3421
|
+
.turtle-widget-root .data-\[variant\=destructive\]\:focus\:bg-destructive\/10[data-variant=destructive]:focus {
|
|
3422
|
+
background-color: var(--destructive);
|
|
3423
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3424
|
+
background-color: color-mix(in oklab,var(--destructive)10%,transparent);
|
|
3425
|
+
}
|
|
3426
|
+
}
|
|
3427
|
+
}
|
|
3428
|
+
.turtle-widget-root .data-\[variant\=destructive\]\:focus\:text-destructive[data-variant=destructive]:focus {
|
|
3429
|
+
color: var(--destructive);
|
|
3430
|
+
}
|
|
2385
3431
|
.turtle-widget-root .data-\[variant\=outline\]\:border-l-0[data-variant=outline] {
|
|
2386
3432
|
border-left-style: var(--tw-border-style);
|
|
2387
3433
|
border-left-width: 0;
|
|
@@ -2394,6 +3440,174 @@
|
|
|
2394
3440
|
border-left-style: var(--tw-border-style);
|
|
2395
3441
|
border-left-width: 1px;
|
|
2396
3442
|
}
|
|
3443
|
+
@media not all and (min-width:64rem) {
|
|
3444
|
+
.turtle-widget-root .max-lg\:hidden {
|
|
3445
|
+
display: none;
|
|
3446
|
+
}
|
|
3447
|
+
.turtle-widget-root .max-lg\:flex-col {
|
|
3448
|
+
flex-direction: column;
|
|
3449
|
+
}
|
|
3450
|
+
}
|
|
3451
|
+
@media (min-width:40rem) {
|
|
3452
|
+
.turtle-widget-root .sm\:left-1\/2 {
|
|
3453
|
+
left: 50%;
|
|
3454
|
+
}
|
|
3455
|
+
.turtle-widget-root .sm\:w-\[750px\] {
|
|
3456
|
+
width: 750px;
|
|
3457
|
+
}
|
|
3458
|
+
.turtle-widget-root .sm\:max-w-lg {
|
|
3459
|
+
max-width: var(--container-lg);
|
|
3460
|
+
}
|
|
3461
|
+
.turtle-widget-root .sm\:grow-0 {
|
|
3462
|
+
flex-grow: 0;
|
|
3463
|
+
}
|
|
3464
|
+
.turtle-widget-root .sm\:translate-x-\[-90\%\] {
|
|
3465
|
+
--tw-translate-x: -90%;
|
|
3466
|
+
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
3467
|
+
}
|
|
3468
|
+
.turtle-widget-root .sm\:flex-row {
|
|
3469
|
+
flex-direction: row;
|
|
3470
|
+
}
|
|
3471
|
+
.turtle-widget-root .sm\:justify-end {
|
|
3472
|
+
justify-content: flex-end;
|
|
3473
|
+
}
|
|
3474
|
+
.turtle-widget-root .sm\:justify-evenly {
|
|
3475
|
+
justify-content: space-evenly;
|
|
3476
|
+
}
|
|
3477
|
+
.turtle-widget-root .sm\:text-left {
|
|
3478
|
+
text-align: left;
|
|
3479
|
+
}
|
|
3480
|
+
}
|
|
3481
|
+
@media (min-width:48rem) {
|
|
3482
|
+
.turtle-widget-root .md\:absolute {
|
|
3483
|
+
position: absolute;
|
|
3484
|
+
}
|
|
3485
|
+
.turtle-widget-root .md\:top-1\/2 {
|
|
3486
|
+
top: 50%;
|
|
3487
|
+
}
|
|
3488
|
+
.turtle-widget-root .md\:top-\[-100px\] {
|
|
3489
|
+
top: -100px;
|
|
3490
|
+
}
|
|
3491
|
+
.turtle-widget-root .md\:top-\[-250px\] {
|
|
3492
|
+
top: -250px;
|
|
3493
|
+
}
|
|
3494
|
+
.turtle-widget-root .md\:right-\[-400px\] {
|
|
3495
|
+
right: -400px;
|
|
3496
|
+
}
|
|
3497
|
+
.turtle-widget-root .md\:bottom-\[-450px\] {
|
|
3498
|
+
bottom: -450px;
|
|
3499
|
+
}
|
|
3500
|
+
.turtle-widget-root .md\:left-1\/2 {
|
|
3501
|
+
left: 50%;
|
|
3502
|
+
}
|
|
3503
|
+
.turtle-widget-root .md\:left-\[-190px\] {
|
|
3504
|
+
left: -190px;
|
|
3505
|
+
}
|
|
3506
|
+
.turtle-widget-root .md\:z-0 {
|
|
3507
|
+
z-index: 0;
|
|
3508
|
+
}
|
|
3509
|
+
.turtle-widget-root .md\:size-\[600px\] {
|
|
3510
|
+
width: 600px;
|
|
3511
|
+
height: 600px;
|
|
3512
|
+
}
|
|
3513
|
+
.turtle-widget-root .md\:w-\[300px\] {
|
|
3514
|
+
width: 300px;
|
|
3515
|
+
}
|
|
3516
|
+
.turtle-widget-root .md\:w-\[800px\] {
|
|
3517
|
+
width: 800px;
|
|
3518
|
+
}
|
|
3519
|
+
.turtle-widget-root .md\:w-\[1000px\] {
|
|
3520
|
+
width: 1000px;
|
|
3521
|
+
}
|
|
3522
|
+
.turtle-widget-root .md\:w-\[var\(--radix-navigation-menu-viewport-width\)\] {
|
|
3523
|
+
width: var(--radix-navigation-menu-viewport-width);
|
|
3524
|
+
}
|
|
3525
|
+
.turtle-widget-root .md\:w-auto {
|
|
3526
|
+
width: auto;
|
|
3527
|
+
}
|
|
3528
|
+
.turtle-widget-root .md\:-translate-x-full {
|
|
3529
|
+
--tw-translate-x: -100%;
|
|
3530
|
+
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
3531
|
+
}
|
|
3532
|
+
.turtle-widget-root .md\:-translate-y-full {
|
|
3533
|
+
--tw-translate-y: -100%;
|
|
3534
|
+
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
3535
|
+
}
|
|
3536
|
+
.turtle-widget-root .md\:rotate-0 {
|
|
3537
|
+
rotate: none;
|
|
3538
|
+
}
|
|
3539
|
+
}
|
|
3540
|
+
@media (min-width:64rem) {
|
|
3541
|
+
.turtle-widget-root .lg\:bottom-\[-350px\] {
|
|
3542
|
+
bottom: -350px;
|
|
3543
|
+
}
|
|
3544
|
+
.turtle-widget-root .lg\:left-\[-150px\] {
|
|
3545
|
+
left: -150px;
|
|
3546
|
+
}
|
|
3547
|
+
.turtle-widget-root .lg\:hidden {
|
|
3548
|
+
display: none;
|
|
3549
|
+
}
|
|
3550
|
+
.turtle-widget-root .lg\:min-w-0 {
|
|
3551
|
+
min-width: calc(var(--spacing)*0);
|
|
3552
|
+
}
|
|
3553
|
+
.turtle-widget-root .lg\:rounded-lg {
|
|
3554
|
+
border-radius: var(--radius);
|
|
3555
|
+
}
|
|
3556
|
+
.turtle-widget-root .lg\:bg-background {
|
|
3557
|
+
background-color: var(--background);
|
|
3558
|
+
}
|
|
3559
|
+
.turtle-widget-root .lg\:p-10 {
|
|
3560
|
+
padding: calc(var(--spacing)*10);
|
|
3561
|
+
}
|
|
3562
|
+
.turtle-widget-root .lg\:pt-2 {
|
|
3563
|
+
padding-top: calc(var(--spacing)*2);
|
|
3564
|
+
}
|
|
3565
|
+
.turtle-widget-root .lg\:pr-2 {
|
|
3566
|
+
padding-right: calc(var(--spacing)*2);
|
|
3567
|
+
}
|
|
3568
|
+
.turtle-widget-root .lg\:pl-64 {
|
|
3569
|
+
padding-left: calc(var(--spacing)*64);
|
|
3570
|
+
}
|
|
3571
|
+
.turtle-widget-root .lg\:shadow-xs {
|
|
3572
|
+
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color,#0000000d);
|
|
3573
|
+
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
3574
|
+
}
|
|
3575
|
+
.turtle-widget-root .lg\:ring-1 {
|
|
3576
|
+
--tw-ring-shadow: var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);
|
|
3577
|
+
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
3578
|
+
}
|
|
3579
|
+
.turtle-widget-root .lg\:ring-border {
|
|
3580
|
+
--tw-ring-color: var(--border);
|
|
3581
|
+
}
|
|
3582
|
+
}
|
|
3583
|
+
.turtle-widget-root .dark\:bg-destructive\/60:is(.dark *) {
|
|
3584
|
+
background-color: var(--destructive);
|
|
3585
|
+
}
|
|
3586
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3587
|
+
.turtle-widget-root .dark\:bg-destructive\/60:is(.dark *) {
|
|
3588
|
+
background-color: var(--destructive);
|
|
3589
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3590
|
+
background-color: color-mix(in oklab,var(--destructive)60%,transparent);
|
|
3591
|
+
}
|
|
3592
|
+
}
|
|
3593
|
+
}
|
|
3594
|
+
.turtle-widget-root .dark\:bg-input\/30:is(.dark *) {
|
|
3595
|
+
background-color: var(--input);
|
|
3596
|
+
}
|
|
3597
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3598
|
+
.turtle-widget-root .dark\:bg-input\/30:is(.dark *) {
|
|
3599
|
+
background-color: var(--input);
|
|
3600
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3601
|
+
background-color: color-mix(in oklab,var(--input)30%,transparent);
|
|
3602
|
+
}
|
|
3603
|
+
}
|
|
3604
|
+
}
|
|
3605
|
+
.turtle-widget-root .dark\:group-data-\[state\=checked\]\:bg-primary:is(.dark *):is(:where(.group)[data-state=checked] *) {
|
|
3606
|
+
background-color: var(--primary);
|
|
3607
|
+
}
|
|
3608
|
+
.turtle-widget-root .dark\:group-data-\[state\=unchecked\]\:bg-foreground:is(.dark *):is(:where(.group)[data-state=unchecked] *) {
|
|
3609
|
+
background-color: var(--foreground);
|
|
3610
|
+
}
|
|
2397
3611
|
.turtle-widget-root .dark\:before\:from-white\/40:is(.dark *):before {
|
|
2398
3612
|
content: var(--tw-content);
|
|
2399
3613
|
--tw-gradient-from: #fff6;
|
|
@@ -2424,6 +3638,30 @@
|
|
|
2424
3638
|
.turtle-widget-root .dark\:before\:to-white\/10:is(.dark *):before {
|
|
2425
3639
|
--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));
|
|
2426
3640
|
}
|
|
3641
|
+
@media (hover:hover) {
|
|
3642
|
+
.turtle-widget-root .dark\:hover\:bg-input\/50:is(.dark *):hover {
|
|
3643
|
+
background-color: var(--input);
|
|
3644
|
+
}
|
|
3645
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3646
|
+
.turtle-widget-root .dark\:hover\:bg-input\/50:is(.dark *):hover {
|
|
3647
|
+
background-color: var(--input);
|
|
3648
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3649
|
+
background-color: color-mix(in oklab,var(--input)50%,transparent);
|
|
3650
|
+
}
|
|
3651
|
+
}
|
|
3652
|
+
}
|
|
3653
|
+
}
|
|
3654
|
+
.turtle-widget-root .dark\:focus-visible\:ring-destructive\/40:is(.dark *):focus-visible {
|
|
3655
|
+
--tw-ring-color: var(--destructive);
|
|
3656
|
+
}
|
|
3657
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3658
|
+
.turtle-widget-root .dark\:focus-visible\:ring-destructive\/40:is(.dark *):focus-visible {
|
|
3659
|
+
--tw-ring-color: var(--destructive);
|
|
3660
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3661
|
+
--tw-ring-color: color-mix(in oklab,var(--destructive)40%,transparent);
|
|
3662
|
+
}
|
|
3663
|
+
}
|
|
3664
|
+
}
|
|
2427
3665
|
.turtle-widget-root .dark\:aria-invalid\:ring-destructive\/40:is(.dark *)[aria-invalid=true] {
|
|
2428
3666
|
--tw-ring-color: var(--destructive);
|
|
2429
3667
|
}
|
|
@@ -2435,11 +3673,8 @@
|
|
|
2435
3673
|
}
|
|
2436
3674
|
}
|
|
2437
3675
|
}
|
|
2438
|
-
.turtle-widget-root .dark\:data-\[state\=checked\]\:bg-primary
|
|
2439
|
-
background-color: var(--primary
|
|
2440
|
-
}
|
|
2441
|
-
.turtle-widget-root .dark\:data-\[state\=unchecked\]\:bg-foreground:is(.dark *)[data-state=unchecked] {
|
|
2442
|
-
background-color: var(--foreground);
|
|
3676
|
+
.turtle-widget-root .dark\:data-\[state\=checked\]\:bg-primary:is(.dark *)[data-state=checked] {
|
|
3677
|
+
background-color: var(--primary);
|
|
2443
3678
|
}
|
|
2444
3679
|
.turtle-widget-root .dark\:data-\[state\=unchecked\]\:bg-input\/80:is(.dark *)[data-state=unchecked] {
|
|
2445
3680
|
background-color: var(--input);
|
|
@@ -2452,19 +3687,95 @@
|
|
|
2452
3687
|
}
|
|
2453
3688
|
}
|
|
2454
3689
|
}
|
|
3690
|
+
.turtle-widget-root .dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20:is(.dark *)[data-variant=destructive]:focus {
|
|
3691
|
+
background-color: var(--destructive);
|
|
3692
|
+
}
|
|
3693
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3694
|
+
.turtle-widget-root .dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20:is(.dark *)[data-variant=destructive]:focus {
|
|
3695
|
+
background-color: var(--destructive);
|
|
3696
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3697
|
+
background-color: color-mix(in oklab,var(--destructive)20%,transparent);
|
|
3698
|
+
}
|
|
3699
|
+
}
|
|
3700
|
+
}
|
|
3701
|
+
.turtle-widget-root .\[\&_\.recharts-cartesian-axis-tick_text\]\:fill-muted-foreground .recharts-cartesian-axis-tick text {
|
|
3702
|
+
fill: var(--muted-foreground);
|
|
3703
|
+
}
|
|
3704
|
+
.turtle-widget-root .\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 .recharts-cartesian-grid line[stroke="#ccc"] {
|
|
3705
|
+
stroke: var(--border);
|
|
3706
|
+
}
|
|
3707
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3708
|
+
.turtle-widget-root .\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 .recharts-cartesian-grid line[stroke="#ccc"] {
|
|
3709
|
+
stroke: var(--border);
|
|
3710
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3711
|
+
stroke: color-mix(in oklab,var(--border)50%,transparent);
|
|
3712
|
+
}
|
|
3713
|
+
}
|
|
3714
|
+
}
|
|
3715
|
+
.turtle-widget-root .\[\&_\.recharts-curve\.recharts-tooltip-cursor\]\:stroke-border .recharts-curve.recharts-tooltip-cursor {
|
|
3716
|
+
stroke: var(--border);
|
|
3717
|
+
}
|
|
3718
|
+
.turtle-widget-root .\[\&_\.recharts-dot\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-dot[stroke="#fff"] {
|
|
3719
|
+
stroke: #0000;
|
|
3720
|
+
}
|
|
3721
|
+
.turtle-widget-root .\[\&_\.recharts-layer\]\:outline-hidden .recharts-layer {
|
|
3722
|
+
--tw-outline-style: none;
|
|
3723
|
+
outline-style: none;
|
|
3724
|
+
}
|
|
3725
|
+
@media (forced-colors:active) {
|
|
3726
|
+
.turtle-widget-root .\[\&_\.recharts-layer\]\:outline-hidden .recharts-layer {
|
|
3727
|
+
outline-offset: 2px;
|
|
3728
|
+
outline: 2px solid #0000;
|
|
3729
|
+
}
|
|
3730
|
+
}
|
|
3731
|
+
.turtle-widget-root .\[\&_\.recharts-polar-grid_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-polar-grid [stroke="#ccc"] {
|
|
3732
|
+
stroke: var(--border);
|
|
3733
|
+
}
|
|
3734
|
+
.turtle-widget-root .\[\&_\.recharts-radial-bar-background-sector\]\:fill-muted .recharts-radial-bar-background-sector, .turtle-widget-root .\[\&_\.recharts-rectangle\.recharts-tooltip-cursor\]\:fill-muted .recharts-rectangle.recharts-tooltip-cursor {
|
|
3735
|
+
fill: var(--muted);
|
|
3736
|
+
}
|
|
3737
|
+
.turtle-widget-root .\[\&_\.recharts-reference-line_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-reference-line [stroke="#ccc"] {
|
|
3738
|
+
stroke: var(--border);
|
|
3739
|
+
}
|
|
3740
|
+
.turtle-widget-root .\[\&_\.recharts-sector\]\:outline-hidden .recharts-sector {
|
|
3741
|
+
--tw-outline-style: none;
|
|
3742
|
+
outline-style: none;
|
|
3743
|
+
}
|
|
3744
|
+
@media (forced-colors:active) {
|
|
3745
|
+
.turtle-widget-root .\[\&_\.recharts-sector\]\:outline-hidden .recharts-sector {
|
|
3746
|
+
outline-offset: 2px;
|
|
3747
|
+
outline: 2px solid #0000;
|
|
3748
|
+
}
|
|
3749
|
+
}
|
|
3750
|
+
.turtle-widget-root .\[\&_\.recharts-sector\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-sector[stroke="#fff"] {
|
|
3751
|
+
stroke: #0000;
|
|
3752
|
+
}
|
|
3753
|
+
.turtle-widget-root .\[\&_\.recharts-surface\]\:outline-hidden .recharts-surface {
|
|
3754
|
+
--tw-outline-style: none;
|
|
3755
|
+
outline-style: none;
|
|
3756
|
+
}
|
|
3757
|
+
@media (forced-colors:active) {
|
|
3758
|
+
.turtle-widget-root .\[\&_\.recharts-surface\]\:outline-hidden .recharts-surface {
|
|
3759
|
+
outline-offset: 2px;
|
|
3760
|
+
outline: 2px solid #0000;
|
|
3761
|
+
}
|
|
3762
|
+
}
|
|
2455
3763
|
.turtle-widget-root .\[\&_svg\]\:pointer-events-none svg {
|
|
2456
3764
|
pointer-events: none;
|
|
2457
3765
|
}
|
|
2458
3766
|
.turtle-widget-root .\[\&_svg\]\:shrink-0 svg {
|
|
2459
3767
|
flex-shrink: 0;
|
|
2460
3768
|
}
|
|
2461
|
-
.turtle-widget-root .\[\&_svg\]\:text-muted-foreground svg {
|
|
2462
|
-
color: var(--muted-foreground);
|
|
2463
|
-
}
|
|
2464
3769
|
.turtle-widget-root .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*=size-]) {
|
|
2465
3770
|
width: calc(var(--spacing)*4);
|
|
2466
3771
|
height: calc(var(--spacing)*4);
|
|
2467
3772
|
}
|
|
3773
|
+
.turtle-widget-root .\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground svg:not([class*=text-]) {
|
|
3774
|
+
color: var(--muted-foreground);
|
|
3775
|
+
}
|
|
3776
|
+
.turtle-widget-root .\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]) {
|
|
3777
|
+
padding-right: calc(var(--spacing)*0);
|
|
3778
|
+
}
|
|
2468
3779
|
.turtle-widget-root :is(.\*\:\[span\]\:last\:flex>*):is(span):last-child {
|
|
2469
3780
|
display: flex;
|
|
2470
3781
|
}
|
|
@@ -2474,6 +3785,88 @@
|
|
|
2474
3785
|
.turtle-widget-root :is(.\*\:\[span\]\:last\:gap-2>*):is(span):last-child {
|
|
2475
3786
|
gap: calc(var(--spacing)*2);
|
|
2476
3787
|
}
|
|
3788
|
+
.turtle-widget-root :is(.data-\[variant\=destructive\]\:\*\:\[svg\]\:\!text-destructive[data-variant=destructive]>*):is(svg) {
|
|
3789
|
+
color: var(--destructive) !important;
|
|
3790
|
+
}
|
|
3791
|
+
@media (hover:hover) {
|
|
3792
|
+
.turtle-widget-root .hover\:\[\&\>\[data-slot\=\"table-cell\"\]\]\:bg-neutral-alpha-5:hover>[data-slot=table-cell] {
|
|
3793
|
+
background-color: var(--color-neutral-alpha-5);
|
|
3794
|
+
}
|
|
3795
|
+
}
|
|
3796
|
+
.turtle-widget-root .\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\]>[role=checkbox] {
|
|
3797
|
+
--tw-translate-y: 2px;
|
|
3798
|
+
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
3799
|
+
}
|
|
3800
|
+
.turtle-widget-root .\[\&\>div\]\:\!block>div {
|
|
3801
|
+
display: block !important;
|
|
3802
|
+
}
|
|
3803
|
+
.turtle-widget-root .\[\&\>svg\]\:pointer-events-none>svg {
|
|
3804
|
+
pointer-events: none;
|
|
3805
|
+
}
|
|
3806
|
+
.turtle-widget-root .\[\&\>svg\]\:size-3>svg {
|
|
3807
|
+
width: calc(var(--spacing)*3);
|
|
3808
|
+
height: calc(var(--spacing)*3);
|
|
3809
|
+
}
|
|
3810
|
+
.turtle-widget-root .\[\&\>svg\]\:h-2\.5>svg {
|
|
3811
|
+
height: calc(var(--spacing)*2.5);
|
|
3812
|
+
}
|
|
3813
|
+
.turtle-widget-root .\[\&\>svg\]\:h-3>svg {
|
|
3814
|
+
height: calc(var(--spacing)*3);
|
|
3815
|
+
}
|
|
3816
|
+
.turtle-widget-root .\[\&\>svg\]\:w-2\.5>svg {
|
|
3817
|
+
width: calc(var(--spacing)*2.5);
|
|
3818
|
+
}
|
|
3819
|
+
.turtle-widget-root .\[\&\>svg\]\:w-3>svg {
|
|
3820
|
+
width: calc(var(--spacing)*3);
|
|
3821
|
+
}
|
|
3822
|
+
.turtle-widget-root .\[\&\>svg\]\:text-muted-foreground>svg {
|
|
3823
|
+
color: var(--muted-foreground);
|
|
3824
|
+
}
|
|
3825
|
+
.turtle-widget-root .\[\&\>tr\]\:last\:border-b-0>tr:last-child {
|
|
3826
|
+
border-bottom-style: var(--tw-border-style);
|
|
3827
|
+
border-bottom-width: 0;
|
|
3828
|
+
}
|
|
3829
|
+
@media (hover:hover) {
|
|
3830
|
+
.turtle-widget-root a.\[a\&\]\:hover\:bg-accent:hover {
|
|
3831
|
+
background-color: var(--accent);
|
|
3832
|
+
}
|
|
3833
|
+
.turtle-widget-root a.\[a\&\]\:hover\:bg-destructive\/90:hover {
|
|
3834
|
+
background-color: var(--destructive);
|
|
3835
|
+
}
|
|
3836
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3837
|
+
.turtle-widget-root a.\[a\&\]\:hover\:bg-destructive\/90:hover {
|
|
3838
|
+
background-color: var(--destructive);
|
|
3839
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3840
|
+
background-color: color-mix(in oklab,var(--destructive)90%,transparent);
|
|
3841
|
+
}
|
|
3842
|
+
}
|
|
3843
|
+
}
|
|
3844
|
+
.turtle-widget-root a.\[a\&\]\:hover\:bg-primary\/90:hover {
|
|
3845
|
+
background-color: var(--primary);
|
|
3846
|
+
}
|
|
3847
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3848
|
+
.turtle-widget-root a.\[a\&\]\:hover\:bg-primary\/90:hover {
|
|
3849
|
+
background-color: var(--primary);
|
|
3850
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3851
|
+
background-color: color-mix(in oklab,var(--primary)90%,transparent);
|
|
3852
|
+
}
|
|
3853
|
+
}
|
|
3854
|
+
}
|
|
3855
|
+
.turtle-widget-root a.\[a\&\]\:hover\:bg-secondary\/90:hover {
|
|
3856
|
+
background-color: var(--secondary);
|
|
3857
|
+
}
|
|
3858
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
3859
|
+
.turtle-widget-root a.\[a\&\]\:hover\:bg-secondary\/90:hover {
|
|
3860
|
+
background-color: var(--secondary);
|
|
3861
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3862
|
+
background-color: color-mix(in oklab,var(--secondary)90%,transparent);
|
|
3863
|
+
}
|
|
3864
|
+
}
|
|
3865
|
+
}
|
|
3866
|
+
.turtle-widget-root a.\[a\&\]\:hover\:text-accent-foreground:hover {
|
|
3867
|
+
color: var(--accent-foreground);
|
|
3868
|
+
}
|
|
3869
|
+
}
|
|
2477
3870
|
}
|
|
2478
3871
|
@property --tw-animation-delay {
|
|
2479
3872
|
syntax: "*";
|
|
@@ -2499,6 +3892,11 @@
|
|
|
2499
3892
|
inherits: false;
|
|
2500
3893
|
initial-value: 1;
|
|
2501
3894
|
}
|
|
3895
|
+
@property --tw-enter-blur {
|
|
3896
|
+
syntax: "*";
|
|
3897
|
+
inherits: false;
|
|
3898
|
+
initial-value: 0;
|
|
3899
|
+
}
|
|
2502
3900
|
@property --tw-enter-opacity {
|
|
2503
3901
|
syntax: "*";
|
|
2504
3902
|
inherits: false;
|
|
@@ -2524,6 +3922,11 @@
|
|
|
2524
3922
|
inherits: false;
|
|
2525
3923
|
initial-value: 0;
|
|
2526
3924
|
}
|
|
3925
|
+
@property --tw-exit-blur {
|
|
3926
|
+
syntax: "*";
|
|
3927
|
+
inherits: false;
|
|
3928
|
+
initial-value: 0;
|
|
3929
|
+
}
|
|
2527
3930
|
@property --tw-exit-opacity {
|
|
2528
3931
|
syntax: "*";
|
|
2529
3932
|
inherits: false;
|
|
@@ -2553,16 +3956,17 @@
|
|
|
2553
3956
|
--color-brand-green: #73f36c;
|
|
2554
3957
|
--color-brand-black: #141514;
|
|
2555
3958
|
--color-brand-white: #f9f9f9;
|
|
2556
|
-
--color-neutral-50: #f9f9f9;
|
|
2557
|
-
--color-neutral-100: #f1f1f1;
|
|
2558
|
-
--color-neutral-200: #e5e5e5;
|
|
2559
|
-
--color-neutral-300: #d1d1d1;
|
|
2560
|
-
--color-neutral-400: #a3a3a3;
|
|
2561
|
-
--color-neutral-500: #737373;
|
|
2562
|
-
--color-neutral-600: #525252;
|
|
2563
|
-
--color-neutral-700: #404040;
|
|
2564
|
-
--color-neutral-800: #262626;
|
|
2565
|
-
--color-neutral-
|
|
3959
|
+
--color-neutral-base-50: #f9f9f9;
|
|
3960
|
+
--color-neutral-base-100: #f1f1f1;
|
|
3961
|
+
--color-neutral-base-200: #e5e5e5;
|
|
3962
|
+
--color-neutral-base-300: #d1d1d1;
|
|
3963
|
+
--color-neutral-base-400: #a3a3a3;
|
|
3964
|
+
--color-neutral-base-500: #737373;
|
|
3965
|
+
--color-neutral-base-600: #525252;
|
|
3966
|
+
--color-neutral-base-700: #404040;
|
|
3967
|
+
--color-neutral-base-800: #262626;
|
|
3968
|
+
--color-neutral-base-850: #191a19;
|
|
3969
|
+
--color-neutral-base-900: #141514;
|
|
2566
3970
|
--color-neutral-alpha-2: #f9f9f905;
|
|
2567
3971
|
--color-neutral-alpha-5: #f9f9f90d;
|
|
2568
3972
|
--color-neutral-alpha-10: #f9f9f91a;
|
|
@@ -2625,13 +4029,16 @@
|
|
|
2625
4029
|
--radius-sm: .25rem;
|
|
2626
4030
|
--radius-md: .375rem;
|
|
2627
4031
|
--radius-lg: .5rem;
|
|
4032
|
+
--radius-lg-2: .625rem;
|
|
2628
4033
|
--radius-xl: .75rem;
|
|
2629
4034
|
--radius-2xl: 1rem;
|
|
4035
|
+
--radius-turtle: 1.25rem;
|
|
2630
4036
|
--radius-3xl: 1.5rem;
|
|
2631
4037
|
--radius-full: 9999px;
|
|
2632
4038
|
--radius-default: .625rem;
|
|
2633
4039
|
--radius-button: var(--radius-full);
|
|
2634
|
-
--radius-card: var(--radius-
|
|
4040
|
+
--radius-card: var(--radius-turtle);
|
|
4041
|
+
--radius-info-card: var(--radius-lg-2);
|
|
2635
4042
|
--radius-input: var(--radius-md);
|
|
2636
4043
|
--radius-modal: var(--radius-xl);
|
|
2637
4044
|
--radius-tooltip: var(--radius-md);
|
|
@@ -2701,9 +4108,9 @@
|
|
|
2701
4108
|
--popover-foreground: var(--color-brand-white);
|
|
2702
4109
|
--primary: var(--color-brand-green);
|
|
2703
4110
|
--primary-foreground: var(--color-brand-black);
|
|
2704
|
-
--secondary: var(--color-neutral-
|
|
4111
|
+
--secondary: var(--color-neutral-base-800);
|
|
2705
4112
|
--secondary-foreground: var(--color-brand-white);
|
|
2706
|
-
--muted: var(--color-neutral-
|
|
4113
|
+
--muted: var(--color-neutral-base-850);
|
|
2707
4114
|
--muted-foreground: var(--color-neutral-alpha-50);
|
|
2708
4115
|
--accent: var(--color-brand-green);
|
|
2709
4116
|
--accent-foreground: var(--color-brand-black);
|
|
@@ -2740,6 +4147,16 @@
|
|
|
2740
4147
|
--input: var(--color-neutral-alpha-2);
|
|
2741
4148
|
--ring: var(--color-brand-green);
|
|
2742
4149
|
}
|
|
4150
|
+
@property --tw-border-spacing-x {
|
|
4151
|
+
syntax: "<length>";
|
|
4152
|
+
inherits: false;
|
|
4153
|
+
initial-value: 0;
|
|
4154
|
+
}
|
|
4155
|
+
@property --tw-border-spacing-y {
|
|
4156
|
+
syntax: "<length>";
|
|
4157
|
+
inherits: false;
|
|
4158
|
+
initial-value: 0;
|
|
4159
|
+
}
|
|
2743
4160
|
@property --tw-gradient-position {
|
|
2744
4161
|
syntax: "*";
|
|
2745
4162
|
inherits: false;
|
|
@@ -2786,11 +4203,67 @@
|
|
|
2786
4203
|
syntax: "*";
|
|
2787
4204
|
inherits: false;
|
|
2788
4205
|
}
|
|
4206
|
+
@property --tw-ordinal {
|
|
4207
|
+
syntax: "*";
|
|
4208
|
+
inherits: false;
|
|
4209
|
+
}
|
|
4210
|
+
@property --tw-slashed-zero {
|
|
4211
|
+
syntax: "*";
|
|
4212
|
+
inherits: false;
|
|
4213
|
+
}
|
|
4214
|
+
@property --tw-numeric-figure {
|
|
4215
|
+
syntax: "*";
|
|
4216
|
+
inherits: false;
|
|
4217
|
+
}
|
|
4218
|
+
@property --tw-numeric-spacing {
|
|
4219
|
+
syntax: "*";
|
|
4220
|
+
inherits: false;
|
|
4221
|
+
}
|
|
4222
|
+
@property --tw-numeric-fraction {
|
|
4223
|
+
syntax: "*";
|
|
4224
|
+
inherits: false;
|
|
4225
|
+
}
|
|
2789
4226
|
@property --tw-outline-style {
|
|
2790
4227
|
syntax: "*";
|
|
2791
4228
|
inherits: false;
|
|
2792
4229
|
initial-value: solid;
|
|
2793
4230
|
}
|
|
4231
|
+
@property --tw-backdrop-blur {
|
|
4232
|
+
syntax: "*";
|
|
4233
|
+
inherits: false;
|
|
4234
|
+
}
|
|
4235
|
+
@property --tw-backdrop-brightness {
|
|
4236
|
+
syntax: "*";
|
|
4237
|
+
inherits: false;
|
|
4238
|
+
}
|
|
4239
|
+
@property --tw-backdrop-contrast {
|
|
4240
|
+
syntax: "*";
|
|
4241
|
+
inherits: false;
|
|
4242
|
+
}
|
|
4243
|
+
@property --tw-backdrop-grayscale {
|
|
4244
|
+
syntax: "*";
|
|
4245
|
+
inherits: false;
|
|
4246
|
+
}
|
|
4247
|
+
@property --tw-backdrop-hue-rotate {
|
|
4248
|
+
syntax: "*";
|
|
4249
|
+
inherits: false;
|
|
4250
|
+
}
|
|
4251
|
+
@property --tw-backdrop-invert {
|
|
4252
|
+
syntax: "*";
|
|
4253
|
+
inherits: false;
|
|
4254
|
+
}
|
|
4255
|
+
@property --tw-backdrop-opacity {
|
|
4256
|
+
syntax: "*";
|
|
4257
|
+
inherits: false;
|
|
4258
|
+
}
|
|
4259
|
+
@property --tw-backdrop-saturate {
|
|
4260
|
+
syntax: "*";
|
|
4261
|
+
inherits: false;
|
|
4262
|
+
}
|
|
4263
|
+
@property --tw-backdrop-sepia {
|
|
4264
|
+
syntax: "*";
|
|
4265
|
+
inherits: false;
|
|
4266
|
+
}
|
|
2794
4267
|
@property --tw-content {
|
|
2795
4268
|
syntax: "*";
|
|
2796
4269
|
inherits: false;
|
|
@@ -2810,12 +4283,14 @@
|
|
|
2810
4283
|
0% {
|
|
2811
4284
|
opacity: var(--tw-enter-opacity,1);
|
|
2812
4285
|
transform: translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));
|
|
4286
|
+
filter: blur(var(--tw-enter-blur,0));
|
|
2813
4287
|
}
|
|
2814
4288
|
}
|
|
2815
4289
|
@keyframes exit {
|
|
2816
4290
|
to {
|
|
2817
4291
|
opacity: var(--tw-exit-opacity,1);
|
|
2818
4292
|
transform: translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));
|
|
4293
|
+
filter: blur(var(--tw-exit-blur,0));
|
|
2819
4294
|
}
|
|
2820
4295
|
}
|
|
2821
4296
|
.turtle-widget-root {
|
|
@@ -3086,16 +4561,20 @@
|
|
|
3086
4561
|
--tw-animation-duration: initial;
|
|
3087
4562
|
--tw-animation-fill-mode: none;
|
|
3088
4563
|
--tw-animation-iteration-count: 1;
|
|
4564
|
+
--tw-enter-blur: 0;
|
|
3089
4565
|
--tw-enter-opacity: 1;
|
|
3090
4566
|
--tw-enter-rotate: 0;
|
|
3091
4567
|
--tw-enter-scale: 1;
|
|
3092
4568
|
--tw-enter-translate-x: 0;
|
|
3093
4569
|
--tw-enter-translate-y: 0;
|
|
4570
|
+
--tw-exit-blur: 0;
|
|
3094
4571
|
--tw-exit-opacity: 1;
|
|
3095
4572
|
--tw-exit-rotate: 0;
|
|
3096
4573
|
--tw-exit-scale: 1;
|
|
3097
4574
|
--tw-exit-translate-x: 0;
|
|
3098
4575
|
--tw-exit-translate-y: 0;
|
|
4576
|
+
--tw-border-spacing-x: 0;
|
|
4577
|
+
--tw-border-spacing-y: 0;
|
|
3099
4578
|
--tw-gradient-position: initial;
|
|
3100
4579
|
--tw-gradient-from: #0000;
|
|
3101
4580
|
--tw-gradient-via: #0000;
|
|
@@ -3106,7 +4585,21 @@
|
|
|
3106
4585
|
--tw-gradient-via-position: 50%;
|
|
3107
4586
|
--tw-gradient-to-position: 100%;
|
|
3108
4587
|
--tw-leading: initial;
|
|
4588
|
+
--tw-ordinal: initial;
|
|
4589
|
+
--tw-slashed-zero: initial;
|
|
4590
|
+
--tw-numeric-figure: initial;
|
|
4591
|
+
--tw-numeric-spacing: initial;
|
|
4592
|
+
--tw-numeric-fraction: initial;
|
|
3109
4593
|
--tw-outline-style: solid;
|
|
4594
|
+
--tw-backdrop-blur: initial;
|
|
4595
|
+
--tw-backdrop-brightness: initial;
|
|
4596
|
+
--tw-backdrop-contrast: initial;
|
|
4597
|
+
--tw-backdrop-grayscale: initial;
|
|
4598
|
+
--tw-backdrop-hue-rotate: initial;
|
|
4599
|
+
--tw-backdrop-invert: initial;
|
|
4600
|
+
--tw-backdrop-opacity: initial;
|
|
4601
|
+
--tw-backdrop-saturate: initial;
|
|
4602
|
+
--tw-backdrop-sepia: initial;
|
|
3110
4603
|
--tw-content: "";
|
|
3111
4604
|
}
|
|
3112
4605
|
}
|