@turtleclub/earn-widget 0.3.0-beta.12 → 0.3.0-beta.13
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.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/styles.css +346 -25
- package/package.json +4 -4
package/dist/styles.css
CHANGED
|
@@ -11,8 +11,10 @@
|
|
|
11
11
|
--color-yellow-600: oklch(68.1% 0.162 75.834);
|
|
12
12
|
--color-green-500: oklch(72.3% 0.219 149.579);
|
|
13
13
|
--color-green-600: oklch(62.7% 0.194 149.214);
|
|
14
|
+
--color-black: #000;
|
|
14
15
|
--color-white: #fff;
|
|
15
16
|
--spacing: 0.25rem;
|
|
17
|
+
--container-lg: 32rem;
|
|
16
18
|
--text-xs: 0.75rem;
|
|
17
19
|
--text-xs--line-height: calc(1 / 0.75);
|
|
18
20
|
--text-sm: 0.875rem;
|
|
@@ -43,9 +45,11 @@
|
|
|
43
45
|
--font-weight-bold: 700;
|
|
44
46
|
--tracking-tight: -0.025em;
|
|
45
47
|
--tracking-wider: 0.05em;
|
|
48
|
+
--radius-xs: 0.125rem;
|
|
46
49
|
--radius-md: 0.375rem;
|
|
47
50
|
--radius-lg: 0.5rem;
|
|
48
51
|
--radius-xl: 0.75rem;
|
|
52
|
+
--drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15);
|
|
49
53
|
--animate-spin: spin 1s linear infinite;
|
|
50
54
|
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
51
55
|
--default-transition-duration: 150ms;
|
|
@@ -744,6 +748,19 @@
|
|
|
744
748
|
--tw-ring-offset-color: #fff;
|
|
745
749
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
746
750
|
--tw-outline-style: solid;
|
|
751
|
+
--tw-blur: initial;
|
|
752
|
+
--tw-brightness: initial;
|
|
753
|
+
--tw-contrast: initial;
|
|
754
|
+
--tw-grayscale: initial;
|
|
755
|
+
--tw-hue-rotate: initial;
|
|
756
|
+
--tw-invert: initial;
|
|
757
|
+
--tw-opacity: initial;
|
|
758
|
+
--tw-saturate: initial;
|
|
759
|
+
--tw-sepia: initial;
|
|
760
|
+
--tw-drop-shadow: initial;
|
|
761
|
+
--tw-drop-shadow-color: initial;
|
|
762
|
+
--tw-drop-shadow-alpha: 100%;
|
|
763
|
+
--tw-drop-shadow-size: initial;
|
|
747
764
|
--tw-duration: initial;
|
|
748
765
|
--tw-content: "";
|
|
749
766
|
--tw-animation-delay: 0s;
|
|
@@ -774,8 +791,10 @@
|
|
|
774
791
|
--color-yellow-600: oklch(68.1% .162 75.834);
|
|
775
792
|
--color-green-500: oklch(72.3% .219 149.579);
|
|
776
793
|
--color-green-600: oklch(62.7% .194 149.214);
|
|
794
|
+
--color-black: #000;
|
|
777
795
|
--color-white: #fff;
|
|
778
796
|
--spacing: .25rem;
|
|
797
|
+
--container-lg: 32rem;
|
|
779
798
|
--text-xs: .75rem;
|
|
780
799
|
--text-xs--line-height: calc(1/.75);
|
|
781
800
|
--text-sm: .875rem;
|
|
@@ -805,15 +824,19 @@
|
|
|
805
824
|
--font-weight-semibold: 600;
|
|
806
825
|
--font-weight-bold: 700;
|
|
807
826
|
--tracking-tight: -.025em;
|
|
827
|
+
--radius-xs: .125rem;
|
|
808
828
|
--radius-md: calc(var(--radius) - 2px);
|
|
809
829
|
--radius-lg: var(--radius);
|
|
810
830
|
--radius-xl: calc(var(--radius) + 4px);
|
|
831
|
+
--drop-shadow-lg: 0 4px 4px #00000026;
|
|
811
832
|
--animate-spin: spin 1s linear infinite;
|
|
812
833
|
--animate-pulse: pulse 2s cubic-bezier(.4,0,.6,1)infinite;
|
|
813
834
|
--default-transition-duration: .15s;
|
|
814
835
|
--default-transition-timing-function: cubic-bezier(.4,0,.2,1);
|
|
815
836
|
--default-font-family: var(--font-sans);
|
|
816
837
|
--default-mono-font-family: var(--font-mono);
|
|
838
|
+
--radius-turtle: var(--radius-turtle);
|
|
839
|
+
--radius-info-card: var(--radius-info-card);
|
|
817
840
|
}
|
|
818
841
|
}
|
|
819
842
|
@layer base {
|
|
@@ -1114,6 +1137,17 @@
|
|
|
1114
1137
|
.turtle-widget-root .pointer-events-none {
|
|
1115
1138
|
pointer-events: none;
|
|
1116
1139
|
}
|
|
1140
|
+
.turtle-widget-root .sr-only {
|
|
1141
|
+
clip: rect(0,0,0,0);
|
|
1142
|
+
white-space: nowrap;
|
|
1143
|
+
border-width: 0;
|
|
1144
|
+
width: 1px;
|
|
1145
|
+
height: 1px;
|
|
1146
|
+
margin: -1px;
|
|
1147
|
+
padding: 0;
|
|
1148
|
+
position: absolute;
|
|
1149
|
+
overflow: hidden;
|
|
1150
|
+
}
|
|
1117
1151
|
.turtle-widget-root .absolute {
|
|
1118
1152
|
position: absolute;
|
|
1119
1153
|
}
|
|
@@ -1126,12 +1160,24 @@
|
|
|
1126
1160
|
.turtle-widget-root .inset-0 {
|
|
1127
1161
|
inset: calc(var(--spacing)*0);
|
|
1128
1162
|
}
|
|
1163
|
+
.turtle-widget-root .top-4 {
|
|
1164
|
+
top: calc(var(--spacing)*4);
|
|
1165
|
+
}
|
|
1166
|
+
.turtle-widget-root .top-\[50\%\] {
|
|
1167
|
+
top: 50%;
|
|
1168
|
+
}
|
|
1129
1169
|
.turtle-widget-root .right-2 {
|
|
1130
1170
|
right: calc(var(--spacing)*2);
|
|
1131
1171
|
}
|
|
1172
|
+
.turtle-widget-root .right-4 {
|
|
1173
|
+
right: calc(var(--spacing)*4);
|
|
1174
|
+
}
|
|
1132
1175
|
.turtle-widget-root .bottom-0 {
|
|
1133
1176
|
bottom: calc(var(--spacing)*0);
|
|
1134
1177
|
}
|
|
1178
|
+
.turtle-widget-root .left-\[50\%\] {
|
|
1179
|
+
left: 50%;
|
|
1180
|
+
}
|
|
1135
1181
|
.turtle-widget-root .z-10 {
|
|
1136
1182
|
z-index: 10;
|
|
1137
1183
|
}
|
|
@@ -1175,6 +1221,18 @@
|
|
|
1175
1221
|
.turtle-widget-root .my-1 {
|
|
1176
1222
|
margin-block: calc(var(--spacing)*1);
|
|
1177
1223
|
}
|
|
1224
|
+
.turtle-widget-root .mt-2 {
|
|
1225
|
+
margin-top: calc(var(--spacing)*2);
|
|
1226
|
+
}
|
|
1227
|
+
.turtle-widget-root .mt-4 {
|
|
1228
|
+
margin-top: calc(var(--spacing)*4);
|
|
1229
|
+
}
|
|
1230
|
+
.turtle-widget-root .mb-1 {
|
|
1231
|
+
margin-bottom: calc(var(--spacing)*1);
|
|
1232
|
+
}
|
|
1233
|
+
.turtle-widget-root .ml-1 {
|
|
1234
|
+
margin-left: calc(var(--spacing)*1);
|
|
1235
|
+
}
|
|
1178
1236
|
.turtle-widget-root .ml-2 {
|
|
1179
1237
|
margin-left: calc(var(--spacing)*2);
|
|
1180
1238
|
}
|
|
@@ -1193,6 +1251,21 @@
|
|
|
1193
1251
|
.turtle-widget-root .inline-flex {
|
|
1194
1252
|
display: inline-flex;
|
|
1195
1253
|
}
|
|
1254
|
+
.turtle-widget-root .table {
|
|
1255
|
+
display: table;
|
|
1256
|
+
}
|
|
1257
|
+
.turtle-widget-root .table-caption {
|
|
1258
|
+
display: table-caption;
|
|
1259
|
+
}
|
|
1260
|
+
.turtle-widget-root .table-cell {
|
|
1261
|
+
display: table-cell;
|
|
1262
|
+
}
|
|
1263
|
+
.turtle-widget-root .table-row {
|
|
1264
|
+
display: table-row;
|
|
1265
|
+
}
|
|
1266
|
+
.turtle-widget-root .aspect-square {
|
|
1267
|
+
aspect-ratio: 1;
|
|
1268
|
+
}
|
|
1196
1269
|
.turtle-widget-root .size-2\.5 {
|
|
1197
1270
|
width: calc(var(--spacing)*2.5);
|
|
1198
1271
|
height: calc(var(--spacing)*2.5);
|
|
@@ -1205,10 +1278,18 @@
|
|
|
1205
1278
|
width: calc(var(--spacing)*4);
|
|
1206
1279
|
height: calc(var(--spacing)*4);
|
|
1207
1280
|
}
|
|
1281
|
+
.turtle-widget-root .size-8 {
|
|
1282
|
+
width: calc(var(--spacing)*8);
|
|
1283
|
+
height: calc(var(--spacing)*8);
|
|
1284
|
+
}
|
|
1208
1285
|
.turtle-widget-root .size-9 {
|
|
1209
1286
|
width: calc(var(--spacing)*9);
|
|
1210
1287
|
height: calc(var(--spacing)*9);
|
|
1211
1288
|
}
|
|
1289
|
+
.turtle-widget-root .size-full {
|
|
1290
|
+
width: 100%;
|
|
1291
|
+
height: 100%;
|
|
1292
|
+
}
|
|
1212
1293
|
.turtle-widget-root .h-2 {
|
|
1213
1294
|
height: calc(var(--spacing)*2);
|
|
1214
1295
|
}
|
|
@@ -1308,6 +1389,9 @@
|
|
|
1308
1389
|
.turtle-widget-root .w-20 {
|
|
1309
1390
|
width: calc(var(--spacing)*20);
|
|
1310
1391
|
}
|
|
1392
|
+
.turtle-widget-root .w-64 {
|
|
1393
|
+
width: calc(var(--spacing)*64);
|
|
1394
|
+
}
|
|
1311
1395
|
.turtle-widget-root .w-auto {
|
|
1312
1396
|
width: auto;
|
|
1313
1397
|
}
|
|
@@ -1317,6 +1401,9 @@
|
|
|
1317
1401
|
.turtle-widget-root .w-full {
|
|
1318
1402
|
width: 100%;
|
|
1319
1403
|
}
|
|
1404
|
+
.turtle-widget-root .max-w-\[calc\(100\%-2rem\)\] {
|
|
1405
|
+
max-width: calc(100% - 2rem);
|
|
1406
|
+
}
|
|
1320
1407
|
.turtle-widget-root .min-w-0 {
|
|
1321
1408
|
min-width: calc(var(--spacing)*0);
|
|
1322
1409
|
}
|
|
@@ -1347,6 +1434,12 @@
|
|
|
1347
1434
|
.turtle-widget-root .flex-shrink-0, .turtle-widget-root .shrink-0 {
|
|
1348
1435
|
flex-shrink: 0;
|
|
1349
1436
|
}
|
|
1437
|
+
.turtle-widget-root .caption-bottom {
|
|
1438
|
+
caption-side: bottom;
|
|
1439
|
+
}
|
|
1440
|
+
.turtle-widget-root .origin-\(--radix-hover-card-content-transform-origin\) {
|
|
1441
|
+
transform-origin: var(--radix-hover-card-content-transform-origin);
|
|
1442
|
+
}
|
|
1350
1443
|
.turtle-widget-root .origin-\(--radix-select-content-transform-origin\) {
|
|
1351
1444
|
transform-origin: var(--radix-select-content-transform-origin);
|
|
1352
1445
|
}
|
|
@@ -1356,6 +1449,14 @@
|
|
|
1356
1449
|
.turtle-widget-root .origin-left {
|
|
1357
1450
|
transform-origin: 0;
|
|
1358
1451
|
}
|
|
1452
|
+
.turtle-widget-root .translate-x-\[-50\%\] {
|
|
1453
|
+
--tw-translate-x: -50%;
|
|
1454
|
+
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
1455
|
+
}
|
|
1456
|
+
.turtle-widget-root .translate-y-\[-50\%\] {
|
|
1457
|
+
--tw-translate-y: -50%;
|
|
1458
|
+
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
1459
|
+
}
|
|
1359
1460
|
.turtle-widget-root .translate-y-\[calc\(-50\%_-_2px\)\] {
|
|
1360
1461
|
--tw-translate-y: calc(-50% - 2px);
|
|
1361
1462
|
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
@@ -1390,21 +1491,27 @@
|
|
|
1390
1491
|
.turtle-widget-root .scroll-my-1 {
|
|
1391
1492
|
scroll-margin-block: calc(var(--spacing)*1);
|
|
1392
1493
|
}
|
|
1494
|
+
.turtle-widget-root .auto-cols-fr {
|
|
1495
|
+
grid-auto-columns: minmax(0,1fr);
|
|
1496
|
+
}
|
|
1497
|
+
.turtle-widget-root .grid-flow-col {
|
|
1498
|
+
grid-auto-flow: column;
|
|
1499
|
+
}
|
|
1393
1500
|
.turtle-widget-root .grid-cols-3 {
|
|
1394
1501
|
grid-template-columns: repeat(3,minmax(0,1fr));
|
|
1395
1502
|
}
|
|
1396
1503
|
.turtle-widget-root .flex-col {
|
|
1397
1504
|
flex-direction: column;
|
|
1398
1505
|
}
|
|
1506
|
+
.turtle-widget-root .flex-col-reverse {
|
|
1507
|
+
flex-direction: column-reverse;
|
|
1508
|
+
}
|
|
1399
1509
|
.turtle-widget-root .flex-row {
|
|
1400
1510
|
flex-direction: row;
|
|
1401
1511
|
}
|
|
1402
1512
|
.turtle-widget-root .flex-row-reverse {
|
|
1403
1513
|
flex-direction: row-reverse;
|
|
1404
1514
|
}
|
|
1405
|
-
.turtle-widget-root .flex-wrap {
|
|
1406
|
-
flex-wrap: wrap;
|
|
1407
|
-
}
|
|
1408
1515
|
.turtle-widget-root .items-center {
|
|
1409
1516
|
align-items: center;
|
|
1410
1517
|
}
|
|
@@ -1435,6 +1542,9 @@
|
|
|
1435
1542
|
.turtle-widget-root .gap-4 {
|
|
1436
1543
|
gap: calc(var(--spacing)*4);
|
|
1437
1544
|
}
|
|
1545
|
+
.turtle-widget-root .gap-6 {
|
|
1546
|
+
gap: calc(var(--spacing)*6);
|
|
1547
|
+
}
|
|
1438
1548
|
.turtle-widget-root :where(.space-y-1>:not(:last-child)) {
|
|
1439
1549
|
--tw-space-y-reverse: 0;
|
|
1440
1550
|
margin-block-start: calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));
|
|
@@ -1492,6 +1602,9 @@
|
|
|
1492
1602
|
.turtle-widget-root .rounded-full {
|
|
1493
1603
|
border-radius: 3.40282e38px;
|
|
1494
1604
|
}
|
|
1605
|
+
.turtle-widget-root .rounded-info-card {
|
|
1606
|
+
border-radius: var(--radius-info-card);
|
|
1607
|
+
}
|
|
1495
1608
|
.turtle-widget-root .rounded-lg {
|
|
1496
1609
|
border-radius: var(--radius);
|
|
1497
1610
|
}
|
|
@@ -1504,9 +1617,15 @@
|
|
|
1504
1617
|
.turtle-widget-root .rounded-sm {
|
|
1505
1618
|
border-radius: calc(var(--radius) - 4px);
|
|
1506
1619
|
}
|
|
1620
|
+
.turtle-widget-root .rounded-turtle {
|
|
1621
|
+
border-radius: var(--radius-turtle);
|
|
1622
|
+
}
|
|
1507
1623
|
.turtle-widget-root .rounded-xl {
|
|
1508
1624
|
border-radius: calc(var(--radius) + 4px);
|
|
1509
1625
|
}
|
|
1626
|
+
.turtle-widget-root .rounded-xs {
|
|
1627
|
+
border-radius: var(--radius-xs);
|
|
1628
|
+
}
|
|
1510
1629
|
.turtle-widget-root .border {
|
|
1511
1630
|
border-style: var(--tw-border-style);
|
|
1512
1631
|
border-width: 1px;
|
|
@@ -1519,6 +1638,10 @@
|
|
|
1519
1638
|
border-top-style: var(--tw-border-style);
|
|
1520
1639
|
border-top-width: 1px;
|
|
1521
1640
|
}
|
|
1641
|
+
.turtle-widget-root .border-b {
|
|
1642
|
+
border-bottom-style: var(--tw-border-style);
|
|
1643
|
+
border-bottom-width: 1px;
|
|
1644
|
+
}
|
|
1522
1645
|
.turtle-widget-root .border-l {
|
|
1523
1646
|
border-left-style: var(--tw-border-style);
|
|
1524
1647
|
border-left-width: 1px;
|
|
@@ -1576,12 +1699,26 @@
|
|
|
1576
1699
|
.turtle-widget-root .bg-background {
|
|
1577
1700
|
background-color: var(--background);
|
|
1578
1701
|
}
|
|
1702
|
+
.turtle-widget-root .bg-black\/50 {
|
|
1703
|
+
background-color: #00000080;
|
|
1704
|
+
}
|
|
1705
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
1706
|
+
.turtle-widget-root .bg-black\/50 {
|
|
1707
|
+
background-color: color-mix(in srgb,#00050%,transparent);
|
|
1708
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1709
|
+
background-color: color-mix(in oklab,var(--color-black)50%,transparent);
|
|
1710
|
+
}
|
|
1711
|
+
}
|
|
1712
|
+
}
|
|
1579
1713
|
.turtle-widget-root .bg-border {
|
|
1580
1714
|
background-color: var(--border);
|
|
1581
1715
|
}
|
|
1582
1716
|
.turtle-widget-root .bg-card {
|
|
1583
1717
|
background-color: var(--card);
|
|
1584
1718
|
}
|
|
1719
|
+
.turtle-widget-root .bg-destructive {
|
|
1720
|
+
background-color: var(--destructive);
|
|
1721
|
+
}
|
|
1585
1722
|
.turtle-widget-root .bg-muted {
|
|
1586
1723
|
background-color: var(--muted);
|
|
1587
1724
|
}
|
|
@@ -1607,18 +1744,7 @@
|
|
|
1607
1744
|
}
|
|
1608
1745
|
}
|
|
1609
1746
|
}
|
|
1610
|
-
.turtle-widget-root .bg-primary, .turtle-widget-root .bg-primary\/
|
|
1611
|
-
background-color: var(--primary);
|
|
1612
|
-
}
|
|
1613
|
-
@supports (color:color-mix(in lab,red,red)) {
|
|
1614
|
-
.turtle-widget-root .bg-primary\/10 {
|
|
1615
|
-
background-color: var(--primary);
|
|
1616
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1617
|
-
background-color: color-mix(in oklab,var(--primary)10%,transparent);
|
|
1618
|
-
}
|
|
1619
|
-
}
|
|
1620
|
-
}
|
|
1621
|
-
.turtle-widget-root .bg-primary\/20 {
|
|
1747
|
+
.turtle-widget-root .bg-primary, .turtle-widget-root .bg-primary\/20 {
|
|
1622
1748
|
background-color: var(--primary);
|
|
1623
1749
|
}
|
|
1624
1750
|
@supports (color:color-mix(in lab,red,red)) {
|
|
@@ -1676,9 +1802,6 @@
|
|
|
1676
1802
|
.turtle-widget-root .p-6 {
|
|
1677
1803
|
padding: calc(var(--spacing)*6);
|
|
1678
1804
|
}
|
|
1679
|
-
.turtle-widget-root .p-8 {
|
|
1680
|
-
padding: calc(var(--spacing)*8);
|
|
1681
|
-
}
|
|
1682
1805
|
.turtle-widget-root .p-\[1px\], .turtle-widget-root .p-px {
|
|
1683
1806
|
padding: 1px;
|
|
1684
1807
|
}
|
|
@@ -1694,12 +1817,21 @@
|
|
|
1694
1817
|
.turtle-widget-root .px-3 {
|
|
1695
1818
|
padding-inline: calc(var(--spacing)*3);
|
|
1696
1819
|
}
|
|
1820
|
+
.turtle-widget-root .px-3\.5 {
|
|
1821
|
+
padding-inline: calc(var(--spacing)*3.5);
|
|
1822
|
+
}
|
|
1697
1823
|
.turtle-widget-root .px-4 {
|
|
1698
1824
|
padding-inline: calc(var(--spacing)*4);
|
|
1699
1825
|
}
|
|
1826
|
+
.turtle-widget-root .px-4\.5 {
|
|
1827
|
+
padding-inline: calc(var(--spacing)*4.5);
|
|
1828
|
+
}
|
|
1700
1829
|
.turtle-widget-root .px-6 {
|
|
1701
1830
|
padding-inline: calc(var(--spacing)*6);
|
|
1702
1831
|
}
|
|
1832
|
+
.turtle-widget-root .px-8 {
|
|
1833
|
+
padding-inline: calc(var(--spacing)*8);
|
|
1834
|
+
}
|
|
1703
1835
|
.turtle-widget-root .py-0 {
|
|
1704
1836
|
padding-block: calc(var(--spacing)*0);
|
|
1705
1837
|
}
|
|
@@ -1718,12 +1850,24 @@
|
|
|
1718
1850
|
.turtle-widget-root .py-3 {
|
|
1719
1851
|
padding-block: calc(var(--spacing)*3);
|
|
1720
1852
|
}
|
|
1853
|
+
.turtle-widget-root .py-3\.5 {
|
|
1854
|
+
padding-block: calc(var(--spacing)*3.5);
|
|
1855
|
+
}
|
|
1721
1856
|
.turtle-widget-root .py-4 {
|
|
1722
1857
|
padding-block: calc(var(--spacing)*4);
|
|
1723
1858
|
}
|
|
1859
|
+
.turtle-widget-root .py-4\.5 {
|
|
1860
|
+
padding-block: calc(var(--spacing)*4.5);
|
|
1861
|
+
}
|
|
1862
|
+
.turtle-widget-root .py-6\.5 {
|
|
1863
|
+
padding-block: calc(var(--spacing)*6.5);
|
|
1864
|
+
}
|
|
1724
1865
|
.turtle-widget-root .py-8 {
|
|
1725
1866
|
padding-block: calc(var(--spacing)*8);
|
|
1726
1867
|
}
|
|
1868
|
+
.turtle-widget-root .py-8\.5 {
|
|
1869
|
+
padding-block: calc(var(--spacing)*8.5);
|
|
1870
|
+
}
|
|
1727
1871
|
.turtle-widget-root .pt-0 {
|
|
1728
1872
|
padding-top: calc(var(--spacing)*0);
|
|
1729
1873
|
}
|
|
@@ -1808,10 +1952,17 @@
|
|
|
1808
1952
|
font-size: var(--text-xs);
|
|
1809
1953
|
line-height: var(--tw-leading,var(--text-xs--line-height));
|
|
1810
1954
|
}
|
|
1955
|
+
.turtle-widget-root .text-\[10px\] {
|
|
1956
|
+
font-size: 10px;
|
|
1957
|
+
}
|
|
1811
1958
|
.turtle-widget-root .leading-none {
|
|
1812
1959
|
--tw-leading: 1;
|
|
1813
1960
|
line-height: 1;
|
|
1814
1961
|
}
|
|
1962
|
+
.turtle-widget-root .font-\[400\] {
|
|
1963
|
+
--tw-font-weight: 400;
|
|
1964
|
+
font-weight: 400;
|
|
1965
|
+
}
|
|
1815
1966
|
.turtle-widget-root .font-bold {
|
|
1816
1967
|
--tw-font-weight: var(--font-weight-bold);
|
|
1817
1968
|
font-weight: var(--font-weight-bold);
|
|
@@ -1838,6 +1989,9 @@
|
|
|
1838
1989
|
.turtle-widget-root .whitespace-nowrap {
|
|
1839
1990
|
white-space: nowrap;
|
|
1840
1991
|
}
|
|
1992
|
+
.turtle-widget-root .text-accent {
|
|
1993
|
+
color: var(--accent);
|
|
1994
|
+
}
|
|
1841
1995
|
.turtle-widget-root .text-destructive {
|
|
1842
1996
|
color: var(--destructive);
|
|
1843
1997
|
}
|
|
@@ -1858,6 +2012,9 @@
|
|
|
1858
2012
|
}
|
|
1859
2013
|
}
|
|
1860
2014
|
}
|
|
2015
|
+
.turtle-widget-root .text-popover-foreground {
|
|
2016
|
+
color: var(--popover-foreground);
|
|
2017
|
+
}
|
|
1861
2018
|
.turtle-widget-root .text-primary {
|
|
1862
2019
|
color: var(--primary);
|
|
1863
2020
|
}
|
|
@@ -1870,6 +2027,9 @@
|
|
|
1870
2027
|
.turtle-widget-root .text-secondary-foreground {
|
|
1871
2028
|
color: var(--secondary-foreground);
|
|
1872
2029
|
}
|
|
2030
|
+
.turtle-widget-root .text-white {
|
|
2031
|
+
color: var(--color-white);
|
|
2032
|
+
}
|
|
1873
2033
|
.turtle-widget-root .text-white\/80 {
|
|
1874
2034
|
color: #fffc;
|
|
1875
2035
|
}
|
|
@@ -1884,6 +2044,9 @@
|
|
|
1884
2044
|
.turtle-widget-root .text-yellow-600 {
|
|
1885
2045
|
color: var(--color-yellow-600);
|
|
1886
2046
|
}
|
|
2047
|
+
.turtle-widget-root .capitalize {
|
|
2048
|
+
text-transform: capitalize;
|
|
2049
|
+
}
|
|
1887
2050
|
.turtle-widget-root .caret-foreground {
|
|
1888
2051
|
caret-color: var(--foreground);
|
|
1889
2052
|
}
|
|
@@ -1899,6 +2062,9 @@
|
|
|
1899
2062
|
.turtle-widget-root .opacity-50 {
|
|
1900
2063
|
opacity: .5;
|
|
1901
2064
|
}
|
|
2065
|
+
.turtle-widget-root .opacity-70 {
|
|
2066
|
+
opacity: .7;
|
|
2067
|
+
}
|
|
1902
2068
|
.turtle-widget-root .shadow {
|
|
1903
2069
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);
|
|
1904
2070
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
@@ -1907,12 +2073,8 @@
|
|
|
1907
2073
|
--tw-shadow: 0 0 4px 0 var(--tw-shadow-color,hsl(var(--primary)));
|
|
1908
2074
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
1909
2075
|
}
|
|
1910
|
-
.turtle-widget-root .shadow
|
|
1911
|
-
--tw-shadow: 0
|
|
1912
|
-
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
1913
|
-
}
|
|
1914
|
-
.turtle-widget-root .shadow-\[0_4px_4px_0_rgba\(0\,0\,0\,0\.25\)\] {
|
|
1915
|
-
--tw-shadow: 0 4px 4px 0 var(--tw-shadow-color,#00000040);
|
|
2076
|
+
.turtle-widget-root .shadow-lg {
|
|
2077
|
+
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);
|
|
1916
2078
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
1917
2079
|
}
|
|
1918
2080
|
.turtle-widget-root .shadow-md {
|
|
@@ -1950,6 +2112,9 @@
|
|
|
1950
2112
|
--tw-ring-offset-width: 2px;
|
|
1951
2113
|
--tw-ring-offset-shadow: var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color);
|
|
1952
2114
|
}
|
|
2115
|
+
.turtle-widget-root .ring-offset-background {
|
|
2116
|
+
--tw-ring-offset-color: var(--background);
|
|
2117
|
+
}
|
|
1953
2118
|
.turtle-widget-root .outline-hidden {
|
|
1954
2119
|
--tw-outline-style: none;
|
|
1955
2120
|
outline-style: none;
|
|
@@ -1964,6 +2129,11 @@
|
|
|
1964
2129
|
outline-style: var(--tw-outline-style);
|
|
1965
2130
|
outline-width: 1px;
|
|
1966
2131
|
}
|
|
2132
|
+
.turtle-widget-root .drop-shadow-lg {
|
|
2133
|
+
--tw-drop-shadow-size: drop-shadow(0 4px 4px var(--tw-drop-shadow-color,#00000026));
|
|
2134
|
+
--tw-drop-shadow: drop-shadow(var(--drop-shadow-lg));
|
|
2135
|
+
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,);
|
|
2136
|
+
}
|
|
1967
2137
|
.turtle-widget-root .transition-\[color\,box-shadow\] {
|
|
1968
2138
|
transition-property: color,box-shadow;
|
|
1969
2139
|
transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
|
|
@@ -1979,6 +2149,11 @@
|
|
|
1979
2149
|
transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
|
|
1980
2150
|
transition-duration: var(--tw-duration,var(--default-transition-duration));
|
|
1981
2151
|
}
|
|
2152
|
+
.turtle-widget-root .transition-opacity {
|
|
2153
|
+
transition-property: opacity;
|
|
2154
|
+
transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
|
|
2155
|
+
transition-duration: var(--tw-duration,var(--default-transition-duration));
|
|
2156
|
+
}
|
|
1982
2157
|
.turtle-widget-root .transition-transform {
|
|
1983
2158
|
transition-property: transform,translate,scale,rotate;
|
|
1984
2159
|
transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
|
|
@@ -2211,6 +2386,9 @@
|
|
|
2211
2386
|
}
|
|
2212
2387
|
}
|
|
2213
2388
|
}
|
|
2389
|
+
.turtle-widget-root .hover\:opacity-100:hover {
|
|
2390
|
+
opacity: 1;
|
|
2391
|
+
}
|
|
2214
2392
|
.turtle-widget-root .hover\:shadow-\[0_0_6px_0_hsl\(var\(--primary\)\)\]:hover {
|
|
2215
2393
|
--tw-shadow: 0 0 6px 0 var(--tw-shadow-color,hsl(var(--primary)));
|
|
2216
2394
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
@@ -2260,6 +2438,23 @@
|
|
|
2260
2438
|
}
|
|
2261
2439
|
}
|
|
2262
2440
|
}
|
|
2441
|
+
.turtle-widget-root .focus\:ring-ring:focus {
|
|
2442
|
+
--tw-ring-color: var(--ring);
|
|
2443
|
+
}
|
|
2444
|
+
.turtle-widget-root .focus\:ring-offset-2:focus {
|
|
2445
|
+
--tw-ring-offset-width: 2px;
|
|
2446
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color);
|
|
2447
|
+
}
|
|
2448
|
+
.turtle-widget-root .focus\:outline-hidden:focus {
|
|
2449
|
+
--tw-outline-style: none;
|
|
2450
|
+
outline-style: none;
|
|
2451
|
+
}
|
|
2452
|
+
@media (forced-colors:active) {
|
|
2453
|
+
.turtle-widget-root .focus\:outline-hidden:focus {
|
|
2454
|
+
outline-offset: 2px;
|
|
2455
|
+
outline: 2px solid #0000;
|
|
2456
|
+
}
|
|
2457
|
+
}
|
|
2263
2458
|
.turtle-widget-root .focus\:outline-none:focus {
|
|
2264
2459
|
--tw-outline-style: none;
|
|
2265
2460
|
outline-style: none;
|
|
@@ -2274,6 +2469,17 @@
|
|
|
2274
2469
|
--tw-ring-shadow: var(--tw-ring-inset,)0 0 0 calc(3px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);
|
|
2275
2470
|
box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
|
|
2276
2471
|
}
|
|
2472
|
+
.turtle-widget-root .focus-visible\:ring-destructive\/20:focus-visible {
|
|
2473
|
+
--tw-ring-color: var(--destructive);
|
|
2474
|
+
}
|
|
2475
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
2476
|
+
.turtle-widget-root .focus-visible\:ring-destructive\/20:focus-visible {
|
|
2477
|
+
--tw-ring-color: var(--destructive);
|
|
2478
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2479
|
+
--tw-ring-color: color-mix(in oklab,var(--destructive)20%,transparent);
|
|
2480
|
+
}
|
|
2481
|
+
}
|
|
2482
|
+
}
|
|
2277
2483
|
.turtle-widget-root .focus-visible\:ring-ring\/50:focus-visible {
|
|
2278
2484
|
--tw-ring-color: var(--ring);
|
|
2279
2485
|
}
|
|
@@ -2426,12 +2632,21 @@
|
|
|
2426
2632
|
.turtle-widget-root .data-\[state\=open\]\:animate-in[data-state=open] {
|
|
2427
2633
|
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);
|
|
2428
2634
|
}
|
|
2635
|
+
.turtle-widget-root .data-\[state\=open\]\:bg-accent[data-state=open] {
|
|
2636
|
+
background-color: var(--accent);
|
|
2637
|
+
}
|
|
2638
|
+
.turtle-widget-root .data-\[state\=open\]\:text-muted-foreground[data-state=open] {
|
|
2639
|
+
color: var(--muted-foreground);
|
|
2640
|
+
}
|
|
2429
2641
|
.turtle-widget-root .data-\[state\=open\]\:fade-in-0[data-state=open] {
|
|
2430
2642
|
--tw-enter-opacity: 0;
|
|
2431
2643
|
}
|
|
2432
2644
|
.turtle-widget-root .data-\[state\=open\]\:zoom-in-95[data-state=open] {
|
|
2433
2645
|
--tw-enter-scale: .95;
|
|
2434
2646
|
}
|
|
2647
|
+
.turtle-widget-root .data-\[state\=selected\]\:bg-muted[data-state=selected] {
|
|
2648
|
+
background-color: var(--muted);
|
|
2649
|
+
}
|
|
2435
2650
|
.turtle-widget-root .data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked] {
|
|
2436
2651
|
--tw-translate-x: calc(var(--spacing)*0);
|
|
2437
2652
|
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
@@ -2451,6 +2666,31 @@
|
|
|
2451
2666
|
border-left-style: var(--tw-border-style);
|
|
2452
2667
|
border-left-width: 1px;
|
|
2453
2668
|
}
|
|
2669
|
+
@media (min-width:40rem) {
|
|
2670
|
+
.turtle-widget-root .sm\:max-w-lg {
|
|
2671
|
+
max-width: var(--container-lg);
|
|
2672
|
+
}
|
|
2673
|
+
.turtle-widget-root .sm\:flex-row {
|
|
2674
|
+
flex-direction: row;
|
|
2675
|
+
}
|
|
2676
|
+
.turtle-widget-root .sm\:justify-end {
|
|
2677
|
+
justify-content: flex-end;
|
|
2678
|
+
}
|
|
2679
|
+
.turtle-widget-root .sm\:text-left {
|
|
2680
|
+
text-align: left;
|
|
2681
|
+
}
|
|
2682
|
+
}
|
|
2683
|
+
.turtle-widget-root .dark\:bg-destructive\/60:is(.dark *) {
|
|
2684
|
+
background-color: var(--destructive);
|
|
2685
|
+
}
|
|
2686
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
2687
|
+
.turtle-widget-root .dark\:bg-destructive\/60:is(.dark *) {
|
|
2688
|
+
background-color: var(--destructive);
|
|
2689
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2690
|
+
background-color: color-mix(in oklab,var(--destructive)60%,transparent);
|
|
2691
|
+
}
|
|
2692
|
+
}
|
|
2693
|
+
}
|
|
2454
2694
|
.turtle-widget-root .dark\:before\:from-white\/40:is(.dark *):before {
|
|
2455
2695
|
content: var(--tw-content);
|
|
2456
2696
|
--tw-gradient-from: #fff6;
|
|
@@ -2481,6 +2721,17 @@
|
|
|
2481
2721
|
.turtle-widget-root .dark\:before\:to-white\/10:is(.dark *):before {
|
|
2482
2722
|
--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));
|
|
2483
2723
|
}
|
|
2724
|
+
.turtle-widget-root .dark\:focus-visible\:ring-destructive\/40:is(.dark *):focus-visible {
|
|
2725
|
+
--tw-ring-color: var(--destructive);
|
|
2726
|
+
}
|
|
2727
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
2728
|
+
.turtle-widget-root .dark\:focus-visible\:ring-destructive\/40:is(.dark *):focus-visible {
|
|
2729
|
+
--tw-ring-color: var(--destructive);
|
|
2730
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2731
|
+
--tw-ring-color: color-mix(in oklab,var(--destructive)40%,transparent);
|
|
2732
|
+
}
|
|
2733
|
+
}
|
|
2734
|
+
}
|
|
2484
2735
|
.turtle-widget-root .dark\:aria-invalid\:ring-destructive\/40:is(.dark *)[aria-invalid=true] {
|
|
2485
2736
|
--tw-ring-color: var(--destructive);
|
|
2486
2737
|
}
|
|
@@ -2522,6 +2773,17 @@
|
|
|
2522
2773
|
width: calc(var(--spacing)*4);
|
|
2523
2774
|
height: calc(var(--spacing)*4);
|
|
2524
2775
|
}
|
|
2776
|
+
.turtle-widget-root .\[\&_tr\]\:border-b tr {
|
|
2777
|
+
border-bottom-style: var(--tw-border-style);
|
|
2778
|
+
border-bottom-width: 1px;
|
|
2779
|
+
}
|
|
2780
|
+
.turtle-widget-root .\[\&_tr\:last-child\]\:border-0 tr:last-child {
|
|
2781
|
+
border-style: var(--tw-border-style);
|
|
2782
|
+
border-width: 0;
|
|
2783
|
+
}
|
|
2784
|
+
.turtle-widget-root .\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]) {
|
|
2785
|
+
padding-right: calc(var(--spacing)*0);
|
|
2786
|
+
}
|
|
2525
2787
|
.turtle-widget-root :is(.\*\:\[span\]\:last\:flex>*):is(span):last-child {
|
|
2526
2788
|
display: flex;
|
|
2527
2789
|
}
|
|
@@ -2531,9 +2793,65 @@
|
|
|
2531
2793
|
.turtle-widget-root :is(.\*\:\[span\]\:last\:gap-2>*):is(span):last-child {
|
|
2532
2794
|
gap: calc(var(--spacing)*2);
|
|
2533
2795
|
}
|
|
2796
|
+
.turtle-widget-root .\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\]>[role=checkbox] {
|
|
2797
|
+
--tw-translate-y: 2px;
|
|
2798
|
+
translate: var(--tw-translate-x)var(--tw-translate-y);
|
|
2799
|
+
}
|
|
2534
2800
|
.turtle-widget-root .\[\&\>div\]\:\!block>div {
|
|
2535
2801
|
display: block !important;
|
|
2536
2802
|
}
|
|
2803
|
+
.turtle-widget-root .\[\&\>svg\]\:pointer-events-none>svg {
|
|
2804
|
+
pointer-events: none;
|
|
2805
|
+
}
|
|
2806
|
+
.turtle-widget-root .\[\&\>svg\]\:size-3>svg {
|
|
2807
|
+
width: calc(var(--spacing)*3);
|
|
2808
|
+
height: calc(var(--spacing)*3);
|
|
2809
|
+
}
|
|
2810
|
+
.turtle-widget-root .\[\&\>tr\]\:last\:border-b-0>tr:last-child {
|
|
2811
|
+
border-bottom-style: var(--tw-border-style);
|
|
2812
|
+
border-bottom-width: 0;
|
|
2813
|
+
}
|
|
2814
|
+
@media (hover:hover) {
|
|
2815
|
+
.turtle-widget-root a.\[a\&\]\:hover\:bg-accent:hover {
|
|
2816
|
+
background-color: var(--accent);
|
|
2817
|
+
}
|
|
2818
|
+
.turtle-widget-root a.\[a\&\]\:hover\:bg-destructive\/90:hover {
|
|
2819
|
+
background-color: var(--destructive);
|
|
2820
|
+
}
|
|
2821
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
2822
|
+
.turtle-widget-root a.\[a\&\]\:hover\:bg-destructive\/90:hover {
|
|
2823
|
+
background-color: var(--destructive);
|
|
2824
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2825
|
+
background-color: color-mix(in oklab,var(--destructive)90%,transparent);
|
|
2826
|
+
}
|
|
2827
|
+
}
|
|
2828
|
+
}
|
|
2829
|
+
.turtle-widget-root a.\[a\&\]\:hover\:bg-primary\/90:hover {
|
|
2830
|
+
background-color: var(--primary);
|
|
2831
|
+
}
|
|
2832
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
2833
|
+
.turtle-widget-root a.\[a\&\]\:hover\:bg-primary\/90:hover {
|
|
2834
|
+
background-color: var(--primary);
|
|
2835
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2836
|
+
background-color: color-mix(in oklab,var(--primary)90%,transparent);
|
|
2837
|
+
}
|
|
2838
|
+
}
|
|
2839
|
+
}
|
|
2840
|
+
.turtle-widget-root a.\[a\&\]\:hover\:bg-secondary\/90:hover {
|
|
2841
|
+
background-color: var(--secondary);
|
|
2842
|
+
}
|
|
2843
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
2844
|
+
.turtle-widget-root a.\[a\&\]\:hover\:bg-secondary\/90:hover {
|
|
2845
|
+
background-color: var(--secondary);
|
|
2846
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2847
|
+
background-color: color-mix(in oklab,var(--secondary)90%,transparent);
|
|
2848
|
+
}
|
|
2849
|
+
}
|
|
2850
|
+
}
|
|
2851
|
+
.turtle-widget-root a.\[a\&\]\:hover\:text-accent-foreground:hover {
|
|
2852
|
+
color: var(--accent-foreground);
|
|
2853
|
+
}
|
|
2854
|
+
}
|
|
2537
2855
|
}
|
|
2538
2856
|
@property --tw-animation-delay {
|
|
2539
2857
|
syntax: "*";
|
|
@@ -2695,13 +3013,16 @@
|
|
|
2695
3013
|
--radius-sm: .25rem;
|
|
2696
3014
|
--radius-md: .375rem;
|
|
2697
3015
|
--radius-lg: .5rem;
|
|
3016
|
+
--radius-lg-2: .625rem;
|
|
2698
3017
|
--radius-xl: .75rem;
|
|
2699
3018
|
--radius-2xl: 1rem;
|
|
3019
|
+
--radius-turtle: 1.25rem;
|
|
2700
3020
|
--radius-3xl: 1.5rem;
|
|
2701
3021
|
--radius-full: 9999px;
|
|
2702
3022
|
--radius-default: .625rem;
|
|
2703
3023
|
--radius-button: var(--radius-full);
|
|
2704
|
-
--radius-card: var(--radius-
|
|
3024
|
+
--radius-card: var(--radius-turtle);
|
|
3025
|
+
--radius-info-card: var(--radius-lg-2);
|
|
2705
3026
|
--radius-input: var(--radius-md);
|
|
2706
3027
|
--radius-modal: var(--radius-xl);
|
|
2707
3028
|
--radius-tooltip: var(--radius-md);
|