@hachej/boring-workspace 0.1.13 → 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +270 -42
- package/dist/CommandPalette-NOEOVkN2.js +5714 -0
- package/dist/{FileTree-BVfqs3rR.js → FileTree-Dl-qUAB0.js} +9 -9
- package/dist/MarkdownEditor-yc6mFsnI.js +533 -0
- package/dist/{WorkspaceLoadingState-BjZGQLS_.js → WorkspaceLoadingState-CSZfENWe.js} +145 -124
- package/dist/agent-tool-DEtfQPVB.d.ts +100 -0
- package/dist/app-front.d.ts +79 -67
- package/dist/app-front.js +253 -241
- package/dist/app-server.d.ts +17 -12
- package/dist/app-server.js +80 -10
- package/dist/{bootstrapServer-BRUqUpVW.d.ts → bootstrapServer-BreQ9QBc.d.ts} +8 -2
- package/dist/server.d.ts +10 -32
- package/dist/server.js +22 -127
- package/dist/shared.d.ts +1 -2
- package/dist/testing.d.ts +0 -63
- package/dist/testing.js +2248 -2401
- package/dist/workspace.css +1616 -974
- package/dist/workspace.d.ts +111 -450
- package/dist/workspace.js +417 -1635
- package/docs/INTERFACES.md +2 -2
- package/docs/PLUGIN_STRUCTURE.md +1 -1
- package/docs/plans/ASK_USER_QUESTIONS_PLUGIN_SPEC.md +131 -263
- package/docs/plans/GENERIC_EXPLORER_PLUGIN_PLAN.md +29 -27
- package/docs/plans/MACRO_PLUGIN_GENERIC_HELPERS_AUDIT.md +12 -12
- package/docs/plans/PANE_TO_AGENT_CHAT_ACTIONS_SPEC.md +366 -0
- package/docs/plans/README.md +2 -0
- package/docs/plans/archive/PLUGIN_MODEL.md +14 -14
- package/docs/plans/archive/SRC_FOLDER_REORG_PLAN.md +2 -3
- package/docs/plans/archive/WORKSPACE_V2_PLAN.md +1 -1
- package/package.json +3 -6
- package/dist/CommandPalette-Dme9em28.js +0 -5506
- package/dist/MarkdownEditor-CcCDF65H.js +0 -502
- package/dist/agent-tool-NvxKfist.d.ts +0 -28
- package/dist/explorer-DtLUnuah.d.ts +0 -129
package/dist/workspace.css
CHANGED
|
@@ -1263,7 +1263,6 @@
|
|
|
1263
1263
|
--tracking-wide: 0.025em;
|
|
1264
1264
|
--tracking-wider: 0.05em;
|
|
1265
1265
|
--tracking-widest: 0.1em;
|
|
1266
|
-
--leading-tight: 1.25;
|
|
1267
1266
|
--leading-snug: 1.375;
|
|
1268
1267
|
--leading-relaxed: 1.625;
|
|
1269
1268
|
--radius-xs: 0.125rem;
|
|
@@ -1427,6 +1426,1512 @@
|
|
|
1427
1426
|
display: none !important;
|
|
1428
1427
|
}
|
|
1429
1428
|
}
|
|
1429
|
+
@layer utilities {
|
|
1430
|
+
.pointer-events-auto {
|
|
1431
|
+
pointer-events: auto;
|
|
1432
|
+
}
|
|
1433
|
+
.pointer-events-none {
|
|
1434
|
+
pointer-events: none;
|
|
1435
|
+
}
|
|
1436
|
+
.collapse {
|
|
1437
|
+
visibility: collapse;
|
|
1438
|
+
}
|
|
1439
|
+
.visible {
|
|
1440
|
+
visibility: visible;
|
|
1441
|
+
}
|
|
1442
|
+
.sr-only {
|
|
1443
|
+
position: absolute;
|
|
1444
|
+
width: 1px;
|
|
1445
|
+
height: 1px;
|
|
1446
|
+
padding: 0;
|
|
1447
|
+
margin: -1px;
|
|
1448
|
+
overflow: hidden;
|
|
1449
|
+
clip-path: inset(50%);
|
|
1450
|
+
white-space: nowrap;
|
|
1451
|
+
border-width: 0;
|
|
1452
|
+
}
|
|
1453
|
+
.absolute {
|
|
1454
|
+
position: absolute;
|
|
1455
|
+
}
|
|
1456
|
+
.fixed {
|
|
1457
|
+
position: fixed;
|
|
1458
|
+
}
|
|
1459
|
+
.relative {
|
|
1460
|
+
position: relative;
|
|
1461
|
+
}
|
|
1462
|
+
.static {
|
|
1463
|
+
position: static;
|
|
1464
|
+
}
|
|
1465
|
+
.sticky {
|
|
1466
|
+
position: sticky;
|
|
1467
|
+
}
|
|
1468
|
+
.inset-0 {
|
|
1469
|
+
inset: calc(var(--spacing) * 0);
|
|
1470
|
+
}
|
|
1471
|
+
.inset-x-0 {
|
|
1472
|
+
inset-inline: calc(var(--spacing) * 0);
|
|
1473
|
+
}
|
|
1474
|
+
.inset-y-0 {
|
|
1475
|
+
inset-block: calc(var(--spacing) * 0);
|
|
1476
|
+
}
|
|
1477
|
+
.start {
|
|
1478
|
+
inset-inline-start: var(--spacing);
|
|
1479
|
+
}
|
|
1480
|
+
.end {
|
|
1481
|
+
inset-inline-end: var(--spacing);
|
|
1482
|
+
}
|
|
1483
|
+
.top-0 {
|
|
1484
|
+
top: calc(var(--spacing) * 0);
|
|
1485
|
+
}
|
|
1486
|
+
.top-1\/2 {
|
|
1487
|
+
top: calc(1 / 2 * 100%);
|
|
1488
|
+
}
|
|
1489
|
+
.top-2 {
|
|
1490
|
+
top: calc(var(--spacing) * 2);
|
|
1491
|
+
}
|
|
1492
|
+
.-right-1\.5 {
|
|
1493
|
+
right: calc(var(--spacing) * -1.5);
|
|
1494
|
+
}
|
|
1495
|
+
.right-0 {
|
|
1496
|
+
right: calc(var(--spacing) * 0);
|
|
1497
|
+
}
|
|
1498
|
+
.right-1 {
|
|
1499
|
+
right: calc(var(--spacing) * 1);
|
|
1500
|
+
}
|
|
1501
|
+
.right-2 {
|
|
1502
|
+
right: calc(var(--spacing) * 2);
|
|
1503
|
+
}
|
|
1504
|
+
.bottom-0 {
|
|
1505
|
+
bottom: calc(var(--spacing) * 0);
|
|
1506
|
+
}
|
|
1507
|
+
.bottom-2 {
|
|
1508
|
+
bottom: calc(var(--spacing) * 2);
|
|
1509
|
+
}
|
|
1510
|
+
.-left-1\.5 {
|
|
1511
|
+
left: calc(var(--spacing) * -1.5);
|
|
1512
|
+
}
|
|
1513
|
+
.left-0 {
|
|
1514
|
+
left: calc(var(--spacing) * 0);
|
|
1515
|
+
}
|
|
1516
|
+
.left-1 {
|
|
1517
|
+
left: calc(var(--spacing) * 1);
|
|
1518
|
+
}
|
|
1519
|
+
.left-2 {
|
|
1520
|
+
left: calc(var(--spacing) * 2);
|
|
1521
|
+
}
|
|
1522
|
+
.z-20 {
|
|
1523
|
+
z-index: 20;
|
|
1524
|
+
}
|
|
1525
|
+
.z-30 {
|
|
1526
|
+
z-index: 30;
|
|
1527
|
+
}
|
|
1528
|
+
.z-50 {
|
|
1529
|
+
z-index: 50;
|
|
1530
|
+
}
|
|
1531
|
+
.z-\[99999\] {
|
|
1532
|
+
z-index: 99999;
|
|
1533
|
+
}
|
|
1534
|
+
.row-1 {
|
|
1535
|
+
grid-row: 1;
|
|
1536
|
+
}
|
|
1537
|
+
.container {
|
|
1538
|
+
width: 100%;
|
|
1539
|
+
@media (width >= 40rem) {
|
|
1540
|
+
max-width: 40rem;
|
|
1541
|
+
}
|
|
1542
|
+
@media (width >= 48rem) {
|
|
1543
|
+
max-width: 48rem;
|
|
1544
|
+
}
|
|
1545
|
+
@media (width >= 64rem) {
|
|
1546
|
+
max-width: 64rem;
|
|
1547
|
+
}
|
|
1548
|
+
@media (width >= 80rem) {
|
|
1549
|
+
max-width: 80rem;
|
|
1550
|
+
}
|
|
1551
|
+
@media (width >= 96rem) {
|
|
1552
|
+
max-width: 96rem;
|
|
1553
|
+
}
|
|
1554
|
+
}
|
|
1555
|
+
.m-2 {
|
|
1556
|
+
margin: calc(var(--spacing) * 2);
|
|
1557
|
+
}
|
|
1558
|
+
.mx-1 {
|
|
1559
|
+
margin-inline: calc(var(--spacing) * 1);
|
|
1560
|
+
}
|
|
1561
|
+
.mx-2 {
|
|
1562
|
+
margin-inline: calc(var(--spacing) * 2);
|
|
1563
|
+
}
|
|
1564
|
+
.mx-auto {
|
|
1565
|
+
margin-inline: auto;
|
|
1566
|
+
}
|
|
1567
|
+
.my-2 {
|
|
1568
|
+
margin-block: calc(var(--spacing) * 2);
|
|
1569
|
+
}
|
|
1570
|
+
.mt-0\.5 {
|
|
1571
|
+
margin-top: calc(var(--spacing) * 0.5);
|
|
1572
|
+
}
|
|
1573
|
+
.mt-1 {
|
|
1574
|
+
margin-top: calc(var(--spacing) * 1);
|
|
1575
|
+
}
|
|
1576
|
+
.mt-2 {
|
|
1577
|
+
margin-top: calc(var(--spacing) * 2);
|
|
1578
|
+
}
|
|
1579
|
+
.mr-1 {
|
|
1580
|
+
margin-right: calc(var(--spacing) * 1);
|
|
1581
|
+
}
|
|
1582
|
+
.mr-auto {
|
|
1583
|
+
margin-right: auto;
|
|
1584
|
+
}
|
|
1585
|
+
.mb-1\.5 {
|
|
1586
|
+
margin-bottom: calc(var(--spacing) * 1.5);
|
|
1587
|
+
}
|
|
1588
|
+
.ml-1 {
|
|
1589
|
+
margin-left: calc(var(--spacing) * 1);
|
|
1590
|
+
}
|
|
1591
|
+
.ml-1\.5 {
|
|
1592
|
+
margin-left: calc(var(--spacing) * 1.5);
|
|
1593
|
+
}
|
|
1594
|
+
.ml-2 {
|
|
1595
|
+
margin-left: calc(var(--spacing) * 2);
|
|
1596
|
+
}
|
|
1597
|
+
.ml-3 {
|
|
1598
|
+
margin-left: calc(var(--spacing) * 3);
|
|
1599
|
+
}
|
|
1600
|
+
.ml-auto {
|
|
1601
|
+
margin-left: auto;
|
|
1602
|
+
}
|
|
1603
|
+
.block {
|
|
1604
|
+
display: block;
|
|
1605
|
+
}
|
|
1606
|
+
.flex {
|
|
1607
|
+
display: flex;
|
|
1608
|
+
}
|
|
1609
|
+
.grid {
|
|
1610
|
+
display: grid;
|
|
1611
|
+
}
|
|
1612
|
+
.hidden {
|
|
1613
|
+
display: none;
|
|
1614
|
+
}
|
|
1615
|
+
.inline {
|
|
1616
|
+
display: inline;
|
|
1617
|
+
}
|
|
1618
|
+
.inline-block {
|
|
1619
|
+
display: inline-block;
|
|
1620
|
+
}
|
|
1621
|
+
.inline-flex {
|
|
1622
|
+
display: inline-flex;
|
|
1623
|
+
}
|
|
1624
|
+
.table {
|
|
1625
|
+
display: table;
|
|
1626
|
+
}
|
|
1627
|
+
.size-2 {
|
|
1628
|
+
width: calc(var(--spacing) * 2);
|
|
1629
|
+
height: calc(var(--spacing) * 2);
|
|
1630
|
+
}
|
|
1631
|
+
.size-3 {
|
|
1632
|
+
width: calc(var(--spacing) * 3);
|
|
1633
|
+
height: calc(var(--spacing) * 3);
|
|
1634
|
+
}
|
|
1635
|
+
.size-3\.5 {
|
|
1636
|
+
width: calc(var(--spacing) * 3.5);
|
|
1637
|
+
height: calc(var(--spacing) * 3.5);
|
|
1638
|
+
}
|
|
1639
|
+
.size-4 {
|
|
1640
|
+
width: calc(var(--spacing) * 4);
|
|
1641
|
+
height: calc(var(--spacing) * 4);
|
|
1642
|
+
}
|
|
1643
|
+
.h-1\.5 {
|
|
1644
|
+
height: calc(var(--spacing) * 1.5);
|
|
1645
|
+
}
|
|
1646
|
+
.h-3 {
|
|
1647
|
+
height: calc(var(--spacing) * 3);
|
|
1648
|
+
}
|
|
1649
|
+
.h-3\.5 {
|
|
1650
|
+
height: calc(var(--spacing) * 3.5);
|
|
1651
|
+
}
|
|
1652
|
+
.h-4 {
|
|
1653
|
+
height: calc(var(--spacing) * 4);
|
|
1654
|
+
}
|
|
1655
|
+
.h-5 {
|
|
1656
|
+
height: calc(var(--spacing) * 5);
|
|
1657
|
+
}
|
|
1658
|
+
.h-6 {
|
|
1659
|
+
height: calc(var(--spacing) * 6);
|
|
1660
|
+
}
|
|
1661
|
+
.h-7 {
|
|
1662
|
+
height: calc(var(--spacing) * 7);
|
|
1663
|
+
}
|
|
1664
|
+
.h-8 {
|
|
1665
|
+
height: calc(var(--spacing) * 8);
|
|
1666
|
+
}
|
|
1667
|
+
.h-9 {
|
|
1668
|
+
height: calc(var(--spacing) * 9);
|
|
1669
|
+
}
|
|
1670
|
+
.h-11 {
|
|
1671
|
+
height: calc(var(--spacing) * 11);
|
|
1672
|
+
}
|
|
1673
|
+
.h-12 {
|
|
1674
|
+
height: calc(var(--spacing) * 12);
|
|
1675
|
+
}
|
|
1676
|
+
.h-auto {
|
|
1677
|
+
height: auto;
|
|
1678
|
+
}
|
|
1679
|
+
.h-full {
|
|
1680
|
+
height: 100%;
|
|
1681
|
+
}
|
|
1682
|
+
.h-px {
|
|
1683
|
+
height: 1px;
|
|
1684
|
+
}
|
|
1685
|
+
.max-h-\[50vh\] {
|
|
1686
|
+
max-height: 50vh;
|
|
1687
|
+
}
|
|
1688
|
+
.max-h-\[120px\] {
|
|
1689
|
+
max-height: 120px;
|
|
1690
|
+
}
|
|
1691
|
+
.max-h-full {
|
|
1692
|
+
max-height: 100%;
|
|
1693
|
+
}
|
|
1694
|
+
.min-h-0 {
|
|
1695
|
+
min-height: calc(var(--spacing) * 0);
|
|
1696
|
+
}
|
|
1697
|
+
.min-h-\[200px\] {
|
|
1698
|
+
min-height: 200px;
|
|
1699
|
+
}
|
|
1700
|
+
.min-h-\[240px\] {
|
|
1701
|
+
min-height: 240px;
|
|
1702
|
+
}
|
|
1703
|
+
.min-h-\[480px\] {
|
|
1704
|
+
min-height: 480px;
|
|
1705
|
+
}
|
|
1706
|
+
.min-h-screen {
|
|
1707
|
+
min-height: 100vh;
|
|
1708
|
+
}
|
|
1709
|
+
.w-1\.5 {
|
|
1710
|
+
width: calc(var(--spacing) * 1.5);
|
|
1711
|
+
}
|
|
1712
|
+
.w-3 {
|
|
1713
|
+
width: calc(var(--spacing) * 3);
|
|
1714
|
+
}
|
|
1715
|
+
.w-3\.5 {
|
|
1716
|
+
width: calc(var(--spacing) * 3.5);
|
|
1717
|
+
}
|
|
1718
|
+
.w-4 {
|
|
1719
|
+
width: calc(var(--spacing) * 4);
|
|
1720
|
+
}
|
|
1721
|
+
.w-5 {
|
|
1722
|
+
width: calc(var(--spacing) * 5);
|
|
1723
|
+
}
|
|
1724
|
+
.w-6 {
|
|
1725
|
+
width: calc(var(--spacing) * 6);
|
|
1726
|
+
}
|
|
1727
|
+
.w-9 {
|
|
1728
|
+
width: calc(var(--spacing) * 9);
|
|
1729
|
+
}
|
|
1730
|
+
.w-10 {
|
|
1731
|
+
width: calc(var(--spacing) * 10);
|
|
1732
|
+
}
|
|
1733
|
+
.w-11 {
|
|
1734
|
+
width: calc(var(--spacing) * 11);
|
|
1735
|
+
}
|
|
1736
|
+
.w-\[85vw\] {
|
|
1737
|
+
width: 85vw;
|
|
1738
|
+
}
|
|
1739
|
+
.w-\[360px\] {
|
|
1740
|
+
width: 360px;
|
|
1741
|
+
}
|
|
1742
|
+
.w-full {
|
|
1743
|
+
width: 100%;
|
|
1744
|
+
}
|
|
1745
|
+
.w-px {
|
|
1746
|
+
width: 1px;
|
|
1747
|
+
}
|
|
1748
|
+
.max-w-\[68ch\] {
|
|
1749
|
+
max-width: 68ch;
|
|
1750
|
+
}
|
|
1751
|
+
.max-w-\[280px\] {
|
|
1752
|
+
max-width: 280px;
|
|
1753
|
+
}
|
|
1754
|
+
.max-w-full {
|
|
1755
|
+
max-width: 100%;
|
|
1756
|
+
}
|
|
1757
|
+
.max-w-md {
|
|
1758
|
+
max-width: var(--container-md);
|
|
1759
|
+
}
|
|
1760
|
+
.max-w-sm {
|
|
1761
|
+
max-width: var(--container-sm);
|
|
1762
|
+
}
|
|
1763
|
+
.min-w-0 {
|
|
1764
|
+
min-width: calc(var(--spacing) * 0);
|
|
1765
|
+
}
|
|
1766
|
+
.min-w-32 {
|
|
1767
|
+
min-width: calc(var(--spacing) * 32);
|
|
1768
|
+
}
|
|
1769
|
+
.min-w-\[10rem\] {
|
|
1770
|
+
min-width: 10rem;
|
|
1771
|
+
}
|
|
1772
|
+
.flex-1 {
|
|
1773
|
+
flex: 1;
|
|
1774
|
+
}
|
|
1775
|
+
.flex-none {
|
|
1776
|
+
flex: none;
|
|
1777
|
+
}
|
|
1778
|
+
.shrink-0 {
|
|
1779
|
+
flex-shrink: 0;
|
|
1780
|
+
}
|
|
1781
|
+
.translate-x-1\/2 {
|
|
1782
|
+
--tw-translate-x: calc(1 / 2 * 100%);
|
|
1783
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1784
|
+
}
|
|
1785
|
+
.-translate-y-1\/2 {
|
|
1786
|
+
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
1787
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1788
|
+
}
|
|
1789
|
+
.translate-y-1\/2 {
|
|
1790
|
+
--tw-translate-y: calc(1 / 2 * 100%);
|
|
1791
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1792
|
+
}
|
|
1793
|
+
.rotate-90 {
|
|
1794
|
+
rotate: 90deg;
|
|
1795
|
+
}
|
|
1796
|
+
.animate-pulse {
|
|
1797
|
+
animation: var(--animate-pulse);
|
|
1798
|
+
}
|
|
1799
|
+
.animate-spin {
|
|
1800
|
+
animation: var(--animate-spin);
|
|
1801
|
+
}
|
|
1802
|
+
.cursor-col-resize {
|
|
1803
|
+
cursor: col-resize;
|
|
1804
|
+
}
|
|
1805
|
+
.cursor-nwse-resize {
|
|
1806
|
+
cursor: nwse-resize;
|
|
1807
|
+
}
|
|
1808
|
+
.cursor-pointer {
|
|
1809
|
+
cursor: pointer;
|
|
1810
|
+
}
|
|
1811
|
+
.resize {
|
|
1812
|
+
resize: both;
|
|
1813
|
+
}
|
|
1814
|
+
.resize-none {
|
|
1815
|
+
resize: none;
|
|
1816
|
+
}
|
|
1817
|
+
.list-disc {
|
|
1818
|
+
list-style-type: disc;
|
|
1819
|
+
}
|
|
1820
|
+
.flex-col {
|
|
1821
|
+
flex-direction: column;
|
|
1822
|
+
}
|
|
1823
|
+
.flex-row {
|
|
1824
|
+
flex-direction: row;
|
|
1825
|
+
}
|
|
1826
|
+
.items-baseline {
|
|
1827
|
+
align-items: baseline;
|
|
1828
|
+
}
|
|
1829
|
+
.items-center {
|
|
1830
|
+
align-items: center;
|
|
1831
|
+
}
|
|
1832
|
+
.items-stretch {
|
|
1833
|
+
align-items: stretch;
|
|
1834
|
+
}
|
|
1835
|
+
.justify-between {
|
|
1836
|
+
justify-content: space-between;
|
|
1837
|
+
}
|
|
1838
|
+
.justify-center {
|
|
1839
|
+
justify-content: center;
|
|
1840
|
+
}
|
|
1841
|
+
.justify-end {
|
|
1842
|
+
justify-content: flex-end;
|
|
1843
|
+
}
|
|
1844
|
+
.justify-start {
|
|
1845
|
+
justify-content: flex-start;
|
|
1846
|
+
}
|
|
1847
|
+
.gap-0 {
|
|
1848
|
+
gap: calc(var(--spacing) * 0);
|
|
1849
|
+
}
|
|
1850
|
+
.gap-0\.5 {
|
|
1851
|
+
gap: calc(var(--spacing) * 0.5);
|
|
1852
|
+
}
|
|
1853
|
+
.gap-1 {
|
|
1854
|
+
gap: calc(var(--spacing) * 1);
|
|
1855
|
+
}
|
|
1856
|
+
.gap-1\.5 {
|
|
1857
|
+
gap: calc(var(--spacing) * 1.5);
|
|
1858
|
+
}
|
|
1859
|
+
.gap-2 {
|
|
1860
|
+
gap: calc(var(--spacing) * 2);
|
|
1861
|
+
}
|
|
1862
|
+
.gap-2\.5 {
|
|
1863
|
+
gap: calc(var(--spacing) * 2.5);
|
|
1864
|
+
}
|
|
1865
|
+
.gap-3 {
|
|
1866
|
+
gap: calc(var(--spacing) * 3);
|
|
1867
|
+
}
|
|
1868
|
+
.gap-4 {
|
|
1869
|
+
gap: calc(var(--spacing) * 4);
|
|
1870
|
+
}
|
|
1871
|
+
.gap-5 {
|
|
1872
|
+
gap: calc(var(--spacing) * 5);
|
|
1873
|
+
}
|
|
1874
|
+
.space-y-0\.5 {
|
|
1875
|
+
:where(& > :not(:last-child)) {
|
|
1876
|
+
--tw-space-y-reverse: 0;
|
|
1877
|
+
margin-block-start: calc(calc(var(--spacing) * 0.5) * var(--tw-space-y-reverse));
|
|
1878
|
+
margin-block-end: calc(calc(var(--spacing) * 0.5) * calc(1 - var(--tw-space-y-reverse)));
|
|
1879
|
+
}
|
|
1880
|
+
}
|
|
1881
|
+
.space-y-1 {
|
|
1882
|
+
:where(& > :not(:last-child)) {
|
|
1883
|
+
--tw-space-y-reverse: 0;
|
|
1884
|
+
margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
|
|
1885
|
+
margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
|
|
1886
|
+
}
|
|
1887
|
+
}
|
|
1888
|
+
.space-y-2 {
|
|
1889
|
+
:where(& > :not(:last-child)) {
|
|
1890
|
+
--tw-space-y-reverse: 0;
|
|
1891
|
+
margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
|
|
1892
|
+
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
1893
|
+
}
|
|
1894
|
+
}
|
|
1895
|
+
.self-center {
|
|
1896
|
+
align-self: center;
|
|
1897
|
+
}
|
|
1898
|
+
.truncate {
|
|
1899
|
+
overflow: hidden;
|
|
1900
|
+
text-overflow: ellipsis;
|
|
1901
|
+
white-space: nowrap;
|
|
1902
|
+
}
|
|
1903
|
+
.overflow-auto {
|
|
1904
|
+
overflow: auto;
|
|
1905
|
+
}
|
|
1906
|
+
.overflow-hidden {
|
|
1907
|
+
overflow: hidden;
|
|
1908
|
+
}
|
|
1909
|
+
.overflow-x-auto {
|
|
1910
|
+
overflow-x: auto;
|
|
1911
|
+
}
|
|
1912
|
+
.overflow-y-auto {
|
|
1913
|
+
overflow-y: auto;
|
|
1914
|
+
}
|
|
1915
|
+
.rounded {
|
|
1916
|
+
border-radius: 0.25rem;
|
|
1917
|
+
}
|
|
1918
|
+
.rounded-full {
|
|
1919
|
+
border-radius: calc(infinity * 1px);
|
|
1920
|
+
}
|
|
1921
|
+
.rounded-lg {
|
|
1922
|
+
border-radius: var(--boring-radius-lg);
|
|
1923
|
+
}
|
|
1924
|
+
.rounded-md {
|
|
1925
|
+
border-radius: var(--boring-radius-md);
|
|
1926
|
+
}
|
|
1927
|
+
.rounded-none {
|
|
1928
|
+
border-radius: 0;
|
|
1929
|
+
}
|
|
1930
|
+
.rounded-sm {
|
|
1931
|
+
border-radius: var(--boring-radius-sm);
|
|
1932
|
+
}
|
|
1933
|
+
.rounded-xl {
|
|
1934
|
+
border-radius: var(--boring-radius-xl);
|
|
1935
|
+
}
|
|
1936
|
+
.border {
|
|
1937
|
+
border-style: var(--tw-border-style);
|
|
1938
|
+
border-width: 1px;
|
|
1939
|
+
}
|
|
1940
|
+
.border-0 {
|
|
1941
|
+
border-style: var(--tw-border-style);
|
|
1942
|
+
border-width: 0px;
|
|
1943
|
+
}
|
|
1944
|
+
.border-2 {
|
|
1945
|
+
border-style: var(--tw-border-style);
|
|
1946
|
+
border-width: 2px;
|
|
1947
|
+
}
|
|
1948
|
+
.border-x-0 {
|
|
1949
|
+
border-inline-style: var(--tw-border-style);
|
|
1950
|
+
border-inline-width: 0px;
|
|
1951
|
+
}
|
|
1952
|
+
.border-t {
|
|
1953
|
+
border-top-style: var(--tw-border-style);
|
|
1954
|
+
border-top-width: 1px;
|
|
1955
|
+
}
|
|
1956
|
+
.border-t-0 {
|
|
1957
|
+
border-top-style: var(--tw-border-style);
|
|
1958
|
+
border-top-width: 0px;
|
|
1959
|
+
}
|
|
1960
|
+
.border-r {
|
|
1961
|
+
border-right-style: var(--tw-border-style);
|
|
1962
|
+
border-right-width: 1px;
|
|
1963
|
+
}
|
|
1964
|
+
.border-b {
|
|
1965
|
+
border-bottom-style: var(--tw-border-style);
|
|
1966
|
+
border-bottom-width: 1px;
|
|
1967
|
+
}
|
|
1968
|
+
.border-l {
|
|
1969
|
+
border-left-style: var(--tw-border-style);
|
|
1970
|
+
border-left-width: 1px;
|
|
1971
|
+
}
|
|
1972
|
+
.border-l-2 {
|
|
1973
|
+
border-left-style: var(--tw-border-style);
|
|
1974
|
+
border-left-width: 2px;
|
|
1975
|
+
}
|
|
1976
|
+
.border-\[color\:oklch\(from_var\(--border\)_l_c_h\/0\.4\)\] {
|
|
1977
|
+
border-color: oklch(from var(--border) l c h/0.4);
|
|
1978
|
+
}
|
|
1979
|
+
.border-\[color\:oklch\(from_var\(--border\)_l_c_h\/0\.6\)\] {
|
|
1980
|
+
border-color: oklch(from var(--border) l c h/0.6);
|
|
1981
|
+
}
|
|
1982
|
+
.border-\[color\:oklch\(from_var\(--border\)_l_c_h\/0\.25\)\] {
|
|
1983
|
+
border-color: oklch(from var(--border) l c h/0.25);
|
|
1984
|
+
}
|
|
1985
|
+
.border-\[color\:var\(--accent\)\]\/60 {
|
|
1986
|
+
border-color: var(--accent);
|
|
1987
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1988
|
+
border-color: color-mix(in oklab, var(--accent) 60%, transparent);
|
|
1989
|
+
}
|
|
1990
|
+
}
|
|
1991
|
+
.border-accent {
|
|
1992
|
+
border-color: var(--boring-accent);
|
|
1993
|
+
}
|
|
1994
|
+
.border-background {
|
|
1995
|
+
border-color: var(--boring-background);
|
|
1996
|
+
}
|
|
1997
|
+
.border-border {
|
|
1998
|
+
border-color: var(--boring-border);
|
|
1999
|
+
}
|
|
2000
|
+
.border-border\/50 {
|
|
2001
|
+
border-color: var(--boring-border);
|
|
2002
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2003
|
+
border-color: color-mix(in oklab, var(--boring-border) 50%, transparent);
|
|
2004
|
+
}
|
|
2005
|
+
}
|
|
2006
|
+
.border-border\/60 {
|
|
2007
|
+
border-color: var(--boring-border);
|
|
2008
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2009
|
+
border-color: color-mix(in oklab, var(--boring-border) 60%, transparent);
|
|
2010
|
+
}
|
|
2011
|
+
}
|
|
2012
|
+
.border-current {
|
|
2013
|
+
border-color: currentcolor;
|
|
2014
|
+
}
|
|
2015
|
+
.border-t-transparent {
|
|
2016
|
+
border-top-color: transparent;
|
|
2017
|
+
}
|
|
2018
|
+
.bg-\[color\:var\(--accent\)\] {
|
|
2019
|
+
background-color: var(--accent);
|
|
2020
|
+
}
|
|
2021
|
+
.bg-\[color\:var\(--accent-soft\)\] {
|
|
2022
|
+
background-color: var(--accent-soft);
|
|
2023
|
+
}
|
|
2024
|
+
.bg-\[oklch\(from_var\(--accent\)_l_c_h\/0\.10\)\] {
|
|
2025
|
+
background-color: oklch(from var(--accent) l c h/0.10);
|
|
2026
|
+
}
|
|
2027
|
+
.bg-accent {
|
|
2028
|
+
background-color: var(--boring-accent);
|
|
2029
|
+
}
|
|
2030
|
+
.bg-background {
|
|
2031
|
+
background-color: var(--boring-background);
|
|
2032
|
+
}
|
|
2033
|
+
.bg-background\/95 {
|
|
2034
|
+
background-color: var(--boring-background);
|
|
2035
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2036
|
+
background-color: color-mix(in oklab, var(--boring-background) 95%, transparent);
|
|
2037
|
+
}
|
|
2038
|
+
}
|
|
2039
|
+
.bg-card {
|
|
2040
|
+
background-color: var(--boring-card);
|
|
2041
|
+
}
|
|
2042
|
+
.bg-card\/60 {
|
|
2043
|
+
background-color: var(--boring-card);
|
|
2044
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2045
|
+
background-color: color-mix(in oklab, var(--boring-card) 60%, transparent);
|
|
2046
|
+
}
|
|
2047
|
+
}
|
|
2048
|
+
.bg-foreground\/5 {
|
|
2049
|
+
background-color: var(--boring-foreground);
|
|
2050
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2051
|
+
background-color: color-mix(in oklab, var(--boring-foreground) 5%, transparent);
|
|
2052
|
+
}
|
|
2053
|
+
}
|
|
2054
|
+
.bg-foreground\/35 {
|
|
2055
|
+
background-color: var(--boring-foreground);
|
|
2056
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2057
|
+
background-color: color-mix(in oklab, var(--boring-foreground) 35%, transparent);
|
|
2058
|
+
}
|
|
2059
|
+
}
|
|
2060
|
+
.bg-foreground\/\[0\.06\] {
|
|
2061
|
+
background-color: var(--boring-foreground);
|
|
2062
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2063
|
+
background-color: color-mix(in oklab, var(--boring-foreground) 6%, transparent);
|
|
2064
|
+
}
|
|
2065
|
+
}
|
|
2066
|
+
.bg-muted {
|
|
2067
|
+
background-color: var(--boring-muted);
|
|
2068
|
+
}
|
|
2069
|
+
.bg-muted\/30 {
|
|
2070
|
+
background-color: var(--boring-muted);
|
|
2071
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2072
|
+
background-color: color-mix(in oklab, var(--boring-muted) 30%, transparent);
|
|
2073
|
+
}
|
|
2074
|
+
}
|
|
2075
|
+
.bg-muted\/40 {
|
|
2076
|
+
background-color: var(--boring-muted);
|
|
2077
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2078
|
+
background-color: color-mix(in oklab, var(--boring-muted) 40%, transparent);
|
|
2079
|
+
}
|
|
2080
|
+
}
|
|
2081
|
+
.bg-muted\/50 {
|
|
2082
|
+
background-color: var(--boring-muted);
|
|
2083
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2084
|
+
background-color: color-mix(in oklab, var(--boring-muted) 50%, transparent);
|
|
2085
|
+
}
|
|
2086
|
+
}
|
|
2087
|
+
.bg-popover {
|
|
2088
|
+
background-color: var(--boring-popover);
|
|
2089
|
+
}
|
|
2090
|
+
.bg-primary {
|
|
2091
|
+
background-color: var(--boring-primary);
|
|
2092
|
+
}
|
|
2093
|
+
.bg-transparent {
|
|
2094
|
+
background-color: transparent;
|
|
2095
|
+
}
|
|
2096
|
+
.bg-white {
|
|
2097
|
+
background-color: var(--color-white);
|
|
2098
|
+
}
|
|
2099
|
+
.object-contain {
|
|
2100
|
+
object-fit: contain;
|
|
2101
|
+
}
|
|
2102
|
+
.p-0 {
|
|
2103
|
+
padding: calc(var(--spacing) * 0);
|
|
2104
|
+
}
|
|
2105
|
+
.p-0\.5 {
|
|
2106
|
+
padding: calc(var(--spacing) * 0.5);
|
|
2107
|
+
}
|
|
2108
|
+
.p-1 {
|
|
2109
|
+
padding: calc(var(--spacing) * 1);
|
|
2110
|
+
}
|
|
2111
|
+
.p-2 {
|
|
2112
|
+
padding: calc(var(--spacing) * 2);
|
|
2113
|
+
}
|
|
2114
|
+
.p-3 {
|
|
2115
|
+
padding: calc(var(--spacing) * 3);
|
|
2116
|
+
}
|
|
2117
|
+
.p-4 {
|
|
2118
|
+
padding: calc(var(--spacing) * 4);
|
|
2119
|
+
}
|
|
2120
|
+
.p-6 {
|
|
2121
|
+
padding: calc(var(--spacing) * 6);
|
|
2122
|
+
}
|
|
2123
|
+
.p-8 {
|
|
2124
|
+
padding: calc(var(--spacing) * 8);
|
|
2125
|
+
}
|
|
2126
|
+
.px-0 {
|
|
2127
|
+
padding-inline: calc(var(--spacing) * 0);
|
|
2128
|
+
}
|
|
2129
|
+
.px-1 {
|
|
2130
|
+
padding-inline: calc(var(--spacing) * 1);
|
|
2131
|
+
}
|
|
2132
|
+
.px-1\.5 {
|
|
2133
|
+
padding-inline: calc(var(--spacing) * 1.5);
|
|
2134
|
+
}
|
|
2135
|
+
.px-2 {
|
|
2136
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
2137
|
+
}
|
|
2138
|
+
.px-2\.5 {
|
|
2139
|
+
padding-inline: calc(var(--spacing) * 2.5);
|
|
2140
|
+
}
|
|
2141
|
+
.px-3 {
|
|
2142
|
+
padding-inline: calc(var(--spacing) * 3);
|
|
2143
|
+
}
|
|
2144
|
+
.px-4 {
|
|
2145
|
+
padding-inline: calc(var(--spacing) * 4);
|
|
2146
|
+
}
|
|
2147
|
+
.px-6 {
|
|
2148
|
+
padding-inline: calc(var(--spacing) * 6);
|
|
2149
|
+
}
|
|
2150
|
+
.px-8 {
|
|
2151
|
+
padding-inline: calc(var(--spacing) * 8);
|
|
2152
|
+
}
|
|
2153
|
+
.py-0 {
|
|
2154
|
+
padding-block: calc(var(--spacing) * 0);
|
|
2155
|
+
}
|
|
2156
|
+
.py-0\.5 {
|
|
2157
|
+
padding-block: calc(var(--spacing) * 0.5);
|
|
2158
|
+
}
|
|
2159
|
+
.py-1 {
|
|
2160
|
+
padding-block: calc(var(--spacing) * 1);
|
|
2161
|
+
}
|
|
2162
|
+
.py-1\.5 {
|
|
2163
|
+
padding-block: calc(var(--spacing) * 1.5);
|
|
2164
|
+
}
|
|
2165
|
+
.py-2 {
|
|
2166
|
+
padding-block: calc(var(--spacing) * 2);
|
|
2167
|
+
}
|
|
2168
|
+
.py-3 {
|
|
2169
|
+
padding-block: calc(var(--spacing) * 3);
|
|
2170
|
+
}
|
|
2171
|
+
.py-6 {
|
|
2172
|
+
padding-block: calc(var(--spacing) * 6);
|
|
2173
|
+
}
|
|
2174
|
+
.py-8 {
|
|
2175
|
+
padding-block: calc(var(--spacing) * 8);
|
|
2176
|
+
}
|
|
2177
|
+
.py-10 {
|
|
2178
|
+
padding-block: calc(var(--spacing) * 10);
|
|
2179
|
+
}
|
|
2180
|
+
.pt-1 {
|
|
2181
|
+
padding-top: calc(var(--spacing) * 1);
|
|
2182
|
+
}
|
|
2183
|
+
.pt-2 {
|
|
2184
|
+
padding-top: calc(var(--spacing) * 2);
|
|
2185
|
+
}
|
|
2186
|
+
.pt-12 {
|
|
2187
|
+
padding-top: calc(var(--spacing) * 12);
|
|
2188
|
+
}
|
|
2189
|
+
.pr-7 {
|
|
2190
|
+
padding-right: calc(var(--spacing) * 7);
|
|
2191
|
+
}
|
|
2192
|
+
.pb-1 {
|
|
2193
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
2194
|
+
}
|
|
2195
|
+
.pb-2 {
|
|
2196
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
2197
|
+
}
|
|
2198
|
+
.pb-10 {
|
|
2199
|
+
padding-bottom: calc(var(--spacing) * 10);
|
|
2200
|
+
}
|
|
2201
|
+
.pl-2\.5 {
|
|
2202
|
+
padding-left: calc(var(--spacing) * 2.5);
|
|
2203
|
+
}
|
|
2204
|
+
.pl-3 {
|
|
2205
|
+
padding-left: calc(var(--spacing) * 3);
|
|
2206
|
+
}
|
|
2207
|
+
.pl-4 {
|
|
2208
|
+
padding-left: calc(var(--spacing) * 4);
|
|
2209
|
+
}
|
|
2210
|
+
.pl-10 {
|
|
2211
|
+
padding-left: calc(var(--spacing) * 10);
|
|
2212
|
+
}
|
|
2213
|
+
.text-center {
|
|
2214
|
+
text-align: center;
|
|
2215
|
+
}
|
|
2216
|
+
.align-baseline {
|
|
2217
|
+
vertical-align: baseline;
|
|
2218
|
+
}
|
|
2219
|
+
.font-mono {
|
|
2220
|
+
font-family: var(--boring-font-mono);
|
|
2221
|
+
}
|
|
2222
|
+
.text-base {
|
|
2223
|
+
font-size: var(--text-base);
|
|
2224
|
+
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
2225
|
+
}
|
|
2226
|
+
.text-sm {
|
|
2227
|
+
font-size: var(--text-sm);
|
|
2228
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
2229
|
+
}
|
|
2230
|
+
.text-xs {
|
|
2231
|
+
font-size: var(--text-xs);
|
|
2232
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
2233
|
+
}
|
|
2234
|
+
.text-\[10\.5px\] {
|
|
2235
|
+
font-size: 10.5px;
|
|
2236
|
+
}
|
|
2237
|
+
.text-\[10px\] {
|
|
2238
|
+
font-size: 10px;
|
|
2239
|
+
}
|
|
2240
|
+
.text-\[11px\] {
|
|
2241
|
+
font-size: 11px;
|
|
2242
|
+
}
|
|
2243
|
+
.text-\[12\.5px\] {
|
|
2244
|
+
font-size: 12.5px;
|
|
2245
|
+
}
|
|
2246
|
+
.text-\[12px\] {
|
|
2247
|
+
font-size: 12px;
|
|
2248
|
+
}
|
|
2249
|
+
.text-\[13px\] {
|
|
2250
|
+
font-size: 13px;
|
|
2251
|
+
}
|
|
2252
|
+
.text-\[15px\] {
|
|
2253
|
+
font-size: 15px;
|
|
2254
|
+
}
|
|
2255
|
+
.leading-5 {
|
|
2256
|
+
--tw-leading: calc(var(--spacing) * 5);
|
|
2257
|
+
line-height: calc(var(--spacing) * 5);
|
|
2258
|
+
}
|
|
2259
|
+
.leading-6 {
|
|
2260
|
+
--tw-leading: calc(var(--spacing) * 6);
|
|
2261
|
+
line-height: calc(var(--spacing) * 6);
|
|
2262
|
+
}
|
|
2263
|
+
.leading-\[1\.2\] {
|
|
2264
|
+
--tw-leading: 1.2;
|
|
2265
|
+
line-height: 1.2;
|
|
2266
|
+
}
|
|
2267
|
+
.leading-\[1\.4\] {
|
|
2268
|
+
--tw-leading: 1.4;
|
|
2269
|
+
line-height: 1.4;
|
|
2270
|
+
}
|
|
2271
|
+
.leading-none {
|
|
2272
|
+
--tw-leading: 1;
|
|
2273
|
+
line-height: 1;
|
|
2274
|
+
}
|
|
2275
|
+
.leading-relaxed {
|
|
2276
|
+
--tw-leading: var(--leading-relaxed);
|
|
2277
|
+
line-height: var(--leading-relaxed);
|
|
2278
|
+
}
|
|
2279
|
+
.font-medium {
|
|
2280
|
+
--tw-font-weight: var(--font-weight-medium);
|
|
2281
|
+
font-weight: var(--font-weight-medium);
|
|
2282
|
+
}
|
|
2283
|
+
.font-normal {
|
|
2284
|
+
--tw-font-weight: var(--font-weight-normal);
|
|
2285
|
+
font-weight: var(--font-weight-normal);
|
|
2286
|
+
}
|
|
2287
|
+
.font-semibold {
|
|
2288
|
+
--tw-font-weight: var(--font-weight-semibold);
|
|
2289
|
+
font-weight: var(--font-weight-semibold);
|
|
2290
|
+
}
|
|
2291
|
+
.tracking-\[-0\.01em\] {
|
|
2292
|
+
--tw-tracking: -0.01em;
|
|
2293
|
+
letter-spacing: -0.01em;
|
|
2294
|
+
}
|
|
2295
|
+
.tracking-\[-0\.02em\] {
|
|
2296
|
+
--tw-tracking: -0.02em;
|
|
2297
|
+
letter-spacing: -0.02em;
|
|
2298
|
+
}
|
|
2299
|
+
.tracking-\[0\.12em\] {
|
|
2300
|
+
--tw-tracking: 0.12em;
|
|
2301
|
+
letter-spacing: 0.12em;
|
|
2302
|
+
}
|
|
2303
|
+
.tracking-\[0\.14em\] {
|
|
2304
|
+
--tw-tracking: 0.14em;
|
|
2305
|
+
letter-spacing: 0.14em;
|
|
2306
|
+
}
|
|
2307
|
+
.tracking-\[0\.16em\] {
|
|
2308
|
+
--tw-tracking: 0.16em;
|
|
2309
|
+
letter-spacing: 0.16em;
|
|
2310
|
+
}
|
|
2311
|
+
.tracking-tight {
|
|
2312
|
+
--tw-tracking: var(--tracking-tight);
|
|
2313
|
+
letter-spacing: var(--tracking-tight);
|
|
2314
|
+
}
|
|
2315
|
+
.tracking-wide {
|
|
2316
|
+
--tw-tracking: var(--tracking-wide);
|
|
2317
|
+
letter-spacing: var(--tracking-wide);
|
|
2318
|
+
}
|
|
2319
|
+
.tracking-wider {
|
|
2320
|
+
--tw-tracking: var(--tracking-wider);
|
|
2321
|
+
letter-spacing: var(--tracking-wider);
|
|
2322
|
+
}
|
|
2323
|
+
.text-ellipsis {
|
|
2324
|
+
text-overflow: ellipsis;
|
|
2325
|
+
}
|
|
2326
|
+
.whitespace-nowrap {
|
|
2327
|
+
white-space: nowrap;
|
|
2328
|
+
}
|
|
2329
|
+
.whitespace-pre-wrap {
|
|
2330
|
+
white-space: pre-wrap;
|
|
2331
|
+
}
|
|
2332
|
+
.text-\[color\:var\(--accent\)\] {
|
|
2333
|
+
color: var(--accent);
|
|
2334
|
+
}
|
|
2335
|
+
.text-accent-foreground {
|
|
2336
|
+
color: var(--boring-accent-foreground);
|
|
2337
|
+
}
|
|
2338
|
+
.text-card-foreground {
|
|
2339
|
+
color: var(--boring-card-foreground);
|
|
2340
|
+
}
|
|
2341
|
+
.text-destructive {
|
|
2342
|
+
color: var(--boring-destructive);
|
|
2343
|
+
}
|
|
2344
|
+
.text-destructive\/70 {
|
|
2345
|
+
color: var(--boring-destructive);
|
|
2346
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2347
|
+
color: color-mix(in oklab, var(--boring-destructive) 70%, transparent);
|
|
2348
|
+
}
|
|
2349
|
+
}
|
|
2350
|
+
.text-foreground {
|
|
2351
|
+
color: var(--boring-foreground);
|
|
2352
|
+
}
|
|
2353
|
+
.text-foreground\/90 {
|
|
2354
|
+
color: var(--boring-foreground);
|
|
2355
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2356
|
+
color: color-mix(in oklab, var(--boring-foreground) 90%, transparent);
|
|
2357
|
+
}
|
|
2358
|
+
}
|
|
2359
|
+
.text-muted-foreground {
|
|
2360
|
+
color: var(--boring-muted-foreground);
|
|
2361
|
+
}
|
|
2362
|
+
.text-muted-foreground\/30 {
|
|
2363
|
+
color: var(--boring-muted-foreground);
|
|
2364
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2365
|
+
color: color-mix(in oklab, var(--boring-muted-foreground) 30%, transparent);
|
|
2366
|
+
}
|
|
2367
|
+
}
|
|
2368
|
+
.text-muted-foreground\/60 {
|
|
2369
|
+
color: var(--boring-muted-foreground);
|
|
2370
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2371
|
+
color: color-mix(in oklab, var(--boring-muted-foreground) 60%, transparent);
|
|
2372
|
+
}
|
|
2373
|
+
}
|
|
2374
|
+
.text-muted-foreground\/70 {
|
|
2375
|
+
color: var(--boring-muted-foreground);
|
|
2376
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2377
|
+
color: color-mix(in oklab, var(--boring-muted-foreground) 70%, transparent);
|
|
2378
|
+
}
|
|
2379
|
+
}
|
|
2380
|
+
.text-muted-foreground\/80 {
|
|
2381
|
+
color: var(--boring-muted-foreground);
|
|
2382
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2383
|
+
color: color-mix(in oklab, var(--boring-muted-foreground) 80%, transparent);
|
|
2384
|
+
}
|
|
2385
|
+
}
|
|
2386
|
+
.text-popover-foreground {
|
|
2387
|
+
color: var(--boring-popover-foreground);
|
|
2388
|
+
}
|
|
2389
|
+
.uppercase {
|
|
2390
|
+
text-transform: uppercase;
|
|
2391
|
+
}
|
|
2392
|
+
.italic {
|
|
2393
|
+
font-style: italic;
|
|
2394
|
+
}
|
|
2395
|
+
.tabular-nums {
|
|
2396
|
+
--tw-numeric-spacing: tabular-nums;
|
|
2397
|
+
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
2398
|
+
}
|
|
2399
|
+
.line-through {
|
|
2400
|
+
text-decoration-line: line-through;
|
|
2401
|
+
}
|
|
2402
|
+
.underline {
|
|
2403
|
+
text-decoration-line: underline;
|
|
2404
|
+
}
|
|
2405
|
+
.opacity-0 {
|
|
2406
|
+
opacity: 0%;
|
|
2407
|
+
}
|
|
2408
|
+
.opacity-70 {
|
|
2409
|
+
opacity: 70%;
|
|
2410
|
+
}
|
|
2411
|
+
.opacity-80 {
|
|
2412
|
+
opacity: 80%;
|
|
2413
|
+
}
|
|
2414
|
+
.opacity-100 {
|
|
2415
|
+
opacity: 100%;
|
|
2416
|
+
}
|
|
2417
|
+
.shadow {
|
|
2418
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2419
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2420
|
+
}
|
|
2421
|
+
.shadow-2xl {
|
|
2422
|
+
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
|
|
2423
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2424
|
+
}
|
|
2425
|
+
.shadow-\[0_1px_2px_-1px_oklch\(0_0_0\/0\.08\)\,0_2px_8px_-4px_oklch\(0_0_0\/0\.10\)\,inset_0_0_0_1px_oklch\(from_var\(--border\)_l_c_h\/0\.7\)\] {
|
|
2426
|
+
--tw-shadow: 0 1px 2px -1px var(--tw-shadow-color, oklch(0 0 0/0.08)), 0 2px 8px -4px var(--tw-shadow-color, oklch(0 0 0/0.10)), inset 0 0 0 1px var(--tw-shadow-color, oklch(from var(--border) l c h/0.7));
|
|
2427
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2428
|
+
}
|
|
2429
|
+
.shadow-\[0_1px_2px_-1px_oklch\(0_0_0\/0\.08\)\,0_12px_32px_-22px_oklch\(0_0_0\/0\.28\)\] {
|
|
2430
|
+
--tw-shadow: 0 1px 2px -1px var(--tw-shadow-color, oklch(0 0 0/0.08)), 0 12px 32px -22px var(--tw-shadow-color, oklch(0 0 0/0.28));
|
|
2431
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2432
|
+
}
|
|
2433
|
+
.shadow-md {
|
|
2434
|
+
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2435
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2436
|
+
}
|
|
2437
|
+
.shadow-none {
|
|
2438
|
+
--tw-shadow: 0 0 #0000;
|
|
2439
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2440
|
+
}
|
|
2441
|
+
.shadow-sm {
|
|
2442
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2443
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2444
|
+
}
|
|
2445
|
+
.shadow-xl {
|
|
2446
|
+
--tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2447
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2448
|
+
}
|
|
2449
|
+
.ring {
|
|
2450
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2451
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2452
|
+
}
|
|
2453
|
+
.ring-2 {
|
|
2454
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2455
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2456
|
+
}
|
|
2457
|
+
.ring-\[color\:var\(--accent\)\] {
|
|
2458
|
+
--tw-ring-color: var(--accent);
|
|
2459
|
+
}
|
|
2460
|
+
.ring-offset-1 {
|
|
2461
|
+
--tw-ring-offset-width: 1px;
|
|
2462
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2463
|
+
}
|
|
2464
|
+
.ring-offset-background {
|
|
2465
|
+
--tw-ring-offset-color: var(--boring-background);
|
|
2466
|
+
}
|
|
2467
|
+
.outline {
|
|
2468
|
+
outline-style: var(--tw-outline-style);
|
|
2469
|
+
outline-width: 1px;
|
|
2470
|
+
}
|
|
2471
|
+
.outline-1 {
|
|
2472
|
+
outline-style: var(--tw-outline-style);
|
|
2473
|
+
outline-width: 1px;
|
|
2474
|
+
}
|
|
2475
|
+
.outline-border {
|
|
2476
|
+
outline-color: var(--boring-border);
|
|
2477
|
+
}
|
|
2478
|
+
.filter {
|
|
2479
|
+
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,);
|
|
2480
|
+
}
|
|
2481
|
+
.backdrop-blur-md {
|
|
2482
|
+
--tw-backdrop-blur: blur(var(--blur-md));
|
|
2483
|
+
-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,);
|
|
2484
|
+
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,);
|
|
2485
|
+
}
|
|
2486
|
+
.transition-\[width\,min-width\,max-width\] {
|
|
2487
|
+
transition-property: width,min-width,max-width;
|
|
2488
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2489
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2490
|
+
}
|
|
2491
|
+
.transition-colors {
|
|
2492
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
2493
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2494
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2495
|
+
}
|
|
2496
|
+
.transition-opacity {
|
|
2497
|
+
transition-property: opacity;
|
|
2498
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2499
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2500
|
+
}
|
|
2501
|
+
.transition-transform {
|
|
2502
|
+
transition-property: transform, translate, scale, rotate;
|
|
2503
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2504
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2505
|
+
}
|
|
2506
|
+
.duration-150 {
|
|
2507
|
+
--tw-duration: 150ms;
|
|
2508
|
+
transition-duration: 150ms;
|
|
2509
|
+
}
|
|
2510
|
+
.duration-200 {
|
|
2511
|
+
--tw-duration: 200ms;
|
|
2512
|
+
transition-duration: 200ms;
|
|
2513
|
+
}
|
|
2514
|
+
.duration-\[200ms\] {
|
|
2515
|
+
--tw-duration: 200ms;
|
|
2516
|
+
transition-duration: 200ms;
|
|
2517
|
+
}
|
|
2518
|
+
.duration-\[280ms\] {
|
|
2519
|
+
--tw-duration: 280ms;
|
|
2520
|
+
transition-duration: 280ms;
|
|
2521
|
+
}
|
|
2522
|
+
.ease-\[cubic-bezier\(0\.22\,1\,0\.36\,1\)\] {
|
|
2523
|
+
--tw-ease: cubic-bezier(0.22,1,0.36,1);
|
|
2524
|
+
transition-timing-function: cubic-bezier(0.22,1,0.36,1);
|
|
2525
|
+
}
|
|
2526
|
+
.ease-out {
|
|
2527
|
+
--tw-ease: var(--ease-out);
|
|
2528
|
+
transition-timing-function: var(--ease-out);
|
|
2529
|
+
}
|
|
2530
|
+
.outline-none {
|
|
2531
|
+
--tw-outline-style: none;
|
|
2532
|
+
outline-style: none;
|
|
2533
|
+
}
|
|
2534
|
+
.select-none {
|
|
2535
|
+
-webkit-user-select: none;
|
|
2536
|
+
user-select: none;
|
|
2537
|
+
}
|
|
2538
|
+
.\[scrollbar-width\:none\] {
|
|
2539
|
+
scrollbar-width: none;
|
|
2540
|
+
}
|
|
2541
|
+
.group-hover\:text-muted-foreground {
|
|
2542
|
+
&:is(:where(.group):hover *) {
|
|
2543
|
+
@media (hover: hover) {
|
|
2544
|
+
color: var(--boring-muted-foreground);
|
|
2545
|
+
}
|
|
2546
|
+
}
|
|
2547
|
+
}
|
|
2548
|
+
.group-hover\:opacity-100 {
|
|
2549
|
+
&:is(:where(.group):hover *) {
|
|
2550
|
+
@media (hover: hover) {
|
|
2551
|
+
opacity: 100%;
|
|
2552
|
+
}
|
|
2553
|
+
}
|
|
2554
|
+
}
|
|
2555
|
+
.group-aria-selected\:text-\[color\:var\(--accent\)\] {
|
|
2556
|
+
&:is(:where(.group)[aria-selected="true"] *) {
|
|
2557
|
+
color: var(--accent);
|
|
2558
|
+
}
|
|
2559
|
+
}
|
|
2560
|
+
.group-data-\[focused\=true\]\:opacity-100 {
|
|
2561
|
+
&:is(:where(.group)[data-focused="true"] *) {
|
|
2562
|
+
opacity: 100%;
|
|
2563
|
+
}
|
|
2564
|
+
}
|
|
2565
|
+
.placeholder\:text-muted-foreground\/70 {
|
|
2566
|
+
&::placeholder {
|
|
2567
|
+
color: var(--boring-muted-foreground);
|
|
2568
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2569
|
+
color: color-mix(in oklab, var(--boring-muted-foreground) 70%, transparent);
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
}
|
|
2573
|
+
.hover\:-translate-y-\[calc\(50\%\+1px\)\] {
|
|
2574
|
+
&:hover {
|
|
2575
|
+
@media (hover: hover) {
|
|
2576
|
+
--tw-translate-y: calc(calc(50% + 1px) * -1);
|
|
2577
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2578
|
+
}
|
|
2579
|
+
}
|
|
2580
|
+
}
|
|
2581
|
+
.hover\:border-\[color\:var\(--accent\)\]\/40 {
|
|
2582
|
+
&:hover {
|
|
2583
|
+
@media (hover: hover) {
|
|
2584
|
+
border-color: var(--accent);
|
|
2585
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2586
|
+
border-color: color-mix(in oklab, var(--accent) 40%, transparent);
|
|
2587
|
+
}
|
|
2588
|
+
}
|
|
2589
|
+
}
|
|
2590
|
+
}
|
|
2591
|
+
.hover\:bg-accent\/50 {
|
|
2592
|
+
&:hover {
|
|
2593
|
+
@media (hover: hover) {
|
|
2594
|
+
background-color: var(--boring-accent);
|
|
2595
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2596
|
+
background-color: color-mix(in oklab, var(--boring-accent) 50%, transparent);
|
|
2597
|
+
}
|
|
2598
|
+
}
|
|
2599
|
+
}
|
|
2600
|
+
}
|
|
2601
|
+
.hover\:bg-border\/70 {
|
|
2602
|
+
&:hover {
|
|
2603
|
+
@media (hover: hover) {
|
|
2604
|
+
background-color: var(--boring-border);
|
|
2605
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2606
|
+
background-color: color-mix(in oklab, var(--boring-border) 70%, transparent);
|
|
2607
|
+
}
|
|
2608
|
+
}
|
|
2609
|
+
}
|
|
2610
|
+
}
|
|
2611
|
+
.hover\:bg-destructive\/10 {
|
|
2612
|
+
&:hover {
|
|
2613
|
+
@media (hover: hover) {
|
|
2614
|
+
background-color: var(--boring-destructive);
|
|
2615
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2616
|
+
background-color: color-mix(in oklab, var(--boring-destructive) 10%, transparent);
|
|
2617
|
+
}
|
|
2618
|
+
}
|
|
2619
|
+
}
|
|
2620
|
+
}
|
|
2621
|
+
.hover\:bg-foreground\/\[0\.04\] {
|
|
2622
|
+
&:hover {
|
|
2623
|
+
@media (hover: hover) {
|
|
2624
|
+
background-color: var(--boring-foreground);
|
|
2625
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2626
|
+
background-color: color-mix(in oklab, var(--boring-foreground) 4%, transparent);
|
|
2627
|
+
}
|
|
2628
|
+
}
|
|
2629
|
+
}
|
|
2630
|
+
}
|
|
2631
|
+
.hover\:bg-muted {
|
|
2632
|
+
&:hover {
|
|
2633
|
+
@media (hover: hover) {
|
|
2634
|
+
background-color: var(--boring-muted);
|
|
2635
|
+
}
|
|
2636
|
+
}
|
|
2637
|
+
}
|
|
2638
|
+
.hover\:bg-muted\/60 {
|
|
2639
|
+
&:hover {
|
|
2640
|
+
@media (hover: hover) {
|
|
2641
|
+
background-color: var(--boring-muted);
|
|
2642
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2643
|
+
background-color: color-mix(in oklab, var(--boring-muted) 60%, transparent);
|
|
2644
|
+
}
|
|
2645
|
+
}
|
|
2646
|
+
}
|
|
2647
|
+
}
|
|
2648
|
+
.hover\:bg-primary\/40 {
|
|
2649
|
+
&:hover {
|
|
2650
|
+
@media (hover: hover) {
|
|
2651
|
+
background-color: var(--boring-primary);
|
|
2652
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2653
|
+
background-color: color-mix(in oklab, var(--boring-primary) 40%, transparent);
|
|
2654
|
+
}
|
|
2655
|
+
}
|
|
2656
|
+
}
|
|
2657
|
+
}
|
|
2658
|
+
.hover\:text-\[color\:var\(--accent\)\] {
|
|
2659
|
+
&:hover {
|
|
2660
|
+
@media (hover: hover) {
|
|
2661
|
+
color: var(--accent);
|
|
2662
|
+
}
|
|
2663
|
+
}
|
|
2664
|
+
}
|
|
2665
|
+
.hover\:text-destructive {
|
|
2666
|
+
&:hover {
|
|
2667
|
+
@media (hover: hover) {
|
|
2668
|
+
color: var(--boring-destructive);
|
|
2669
|
+
}
|
|
2670
|
+
}
|
|
2671
|
+
}
|
|
2672
|
+
.hover\:text-foreground {
|
|
2673
|
+
&:hover {
|
|
2674
|
+
@media (hover: hover) {
|
|
2675
|
+
color: var(--boring-foreground);
|
|
2676
|
+
}
|
|
2677
|
+
}
|
|
2678
|
+
}
|
|
2679
|
+
.hover\:shadow-\[0_2px_4px_-1px_oklch\(0_0_0\/0\.08\)\,0_4px_12px_-4px_oklch\(0_0_0\/0\.10\)\,inset_0_0_0_1px_oklch\(from_var\(--border\)_l_c_h\/0\.9\)\] {
|
|
2680
|
+
&:hover {
|
|
2681
|
+
@media (hover: hover) {
|
|
2682
|
+
--tw-shadow: 0 2px 4px -1px var(--tw-shadow-color, oklch(0 0 0/0.08)), 0 4px 12px -4px var(--tw-shadow-color, oklch(0 0 0/0.10)), inset 0 0 0 1px var(--tw-shadow-color, oklch(from var(--border) l c h/0.9));
|
|
2683
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2684
|
+
}
|
|
2685
|
+
}
|
|
2686
|
+
}
|
|
2687
|
+
.hover\:\[transition-delay\:150ms\] {
|
|
2688
|
+
&:hover {
|
|
2689
|
+
@media (hover: hover) {
|
|
2690
|
+
transition-delay: 150ms;
|
|
2691
|
+
}
|
|
2692
|
+
}
|
|
2693
|
+
}
|
|
2694
|
+
.focus\:outline-none {
|
|
2695
|
+
&:focus {
|
|
2696
|
+
--tw-outline-style: none;
|
|
2697
|
+
outline-style: none;
|
|
2698
|
+
}
|
|
2699
|
+
}
|
|
2700
|
+
.focus-visible\:bg-primary\/50 {
|
|
2701
|
+
&:focus-visible {
|
|
2702
|
+
background-color: var(--boring-primary);
|
|
2703
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2704
|
+
background-color: color-mix(in oklab, var(--boring-primary) 50%, transparent);
|
|
2705
|
+
}
|
|
2706
|
+
}
|
|
2707
|
+
}
|
|
2708
|
+
.focus-visible\:text-foreground {
|
|
2709
|
+
&:focus-visible {
|
|
2710
|
+
color: var(--boring-foreground);
|
|
2711
|
+
}
|
|
2712
|
+
}
|
|
2713
|
+
.focus-visible\:opacity-100 {
|
|
2714
|
+
&:focus-visible {
|
|
2715
|
+
opacity: 100%;
|
|
2716
|
+
}
|
|
2717
|
+
}
|
|
2718
|
+
.focus-visible\:ring-0 {
|
|
2719
|
+
&:focus-visible {
|
|
2720
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2721
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2722
|
+
}
|
|
2723
|
+
}
|
|
2724
|
+
.focus-visible\:ring-2 {
|
|
2725
|
+
&:focus-visible {
|
|
2726
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2727
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2728
|
+
}
|
|
2729
|
+
}
|
|
2730
|
+
.focus-visible\:ring-\[color\:var\(--accent\)\] {
|
|
2731
|
+
&:focus-visible {
|
|
2732
|
+
--tw-ring-color: var(--accent);
|
|
2733
|
+
}
|
|
2734
|
+
}
|
|
2735
|
+
.focus-visible\:ring-ring {
|
|
2736
|
+
&:focus-visible {
|
|
2737
|
+
--tw-ring-color: var(--boring-ring);
|
|
2738
|
+
}
|
|
2739
|
+
}
|
|
2740
|
+
.focus-visible\:ring-ring\/40 {
|
|
2741
|
+
&:focus-visible {
|
|
2742
|
+
--tw-ring-color: var(--boring-ring);
|
|
2743
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2744
|
+
--tw-ring-color: color-mix(in oklab, var(--boring-ring) 40%, transparent);
|
|
2745
|
+
}
|
|
2746
|
+
}
|
|
2747
|
+
}
|
|
2748
|
+
.focus-visible\:ring-offset-1 {
|
|
2749
|
+
&:focus-visible {
|
|
2750
|
+
--tw-ring-offset-width: 1px;
|
|
2751
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2752
|
+
}
|
|
2753
|
+
}
|
|
2754
|
+
.focus-visible\:outline-none {
|
|
2755
|
+
&:focus-visible {
|
|
2756
|
+
--tw-outline-style: none;
|
|
2757
|
+
outline-style: none;
|
|
2758
|
+
}
|
|
2759
|
+
}
|
|
2760
|
+
.active\:bg-muted-foreground\/30 {
|
|
2761
|
+
&:active {
|
|
2762
|
+
background-color: var(--boring-muted-foreground);
|
|
2763
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2764
|
+
background-color: color-mix(in oklab, var(--boring-muted-foreground) 30%, transparent);
|
|
2765
|
+
}
|
|
2766
|
+
}
|
|
2767
|
+
}
|
|
2768
|
+
.aria-selected\:bg-\[color\:oklch\(from_var\(--accent\)_l_c_h\/0\.10\)\] {
|
|
2769
|
+
&[aria-selected="true"] {
|
|
2770
|
+
background-color: oklch(from var(--accent) l c h/0.10);
|
|
2771
|
+
}
|
|
2772
|
+
}
|
|
2773
|
+
.aria-selected\:text-foreground {
|
|
2774
|
+
&[aria-selected="true"] {
|
|
2775
|
+
color: var(--boring-foreground);
|
|
2776
|
+
}
|
|
2777
|
+
}
|
|
2778
|
+
.data-\[state\=active\]\:text-\[color\:var\(--accent\)\] {
|
|
2779
|
+
&[data-state="active"] {
|
|
2780
|
+
color: var(--accent);
|
|
2781
|
+
}
|
|
2782
|
+
}
|
|
2783
|
+
.data-\[state\=active\]\:text-foreground {
|
|
2784
|
+
&[data-state="active"] {
|
|
2785
|
+
color: var(--boring-foreground);
|
|
2786
|
+
}
|
|
2787
|
+
}
|
|
2788
|
+
.data-\[state\=active\]\:after\:bg-\[color\:var\(--accent\)\] {
|
|
2789
|
+
&[data-state="active"] {
|
|
2790
|
+
&::after {
|
|
2791
|
+
content: var(--tw-content);
|
|
2792
|
+
background-color: var(--accent);
|
|
2793
|
+
}
|
|
2794
|
+
}
|
|
2795
|
+
}
|
|
2796
|
+
.dark\:bg-transparent {
|
|
2797
|
+
&:is(.dark *) {
|
|
2798
|
+
background-color: transparent;
|
|
2799
|
+
}
|
|
2800
|
+
}
|
|
2801
|
+
.\[\&_\[role\=treeitem\]\]\:\!indent-0 {
|
|
2802
|
+
& [role=treeitem] {
|
|
2803
|
+
text-indent: calc(var(--spacing) * 0) !important;
|
|
2804
|
+
}
|
|
2805
|
+
}
|
|
2806
|
+
.\[\&\:\:-webkit-scrollbar\]\:hidden {
|
|
2807
|
+
&::-webkit-scrollbar {
|
|
2808
|
+
display: none;
|
|
2809
|
+
}
|
|
2810
|
+
}
|
|
2811
|
+
.\[\&\>\[data-slot\=command-input-wrapper\]\]\:h-auto {
|
|
2812
|
+
&>[data-slot=command-input-wrapper] {
|
|
2813
|
+
height: auto;
|
|
2814
|
+
}
|
|
2815
|
+
}
|
|
2816
|
+
.\[\&\>\[data-slot\=command-input-wrapper\]\]\:flex-1 {
|
|
2817
|
+
&>[data-slot=command-input-wrapper] {
|
|
2818
|
+
flex: 1;
|
|
2819
|
+
}
|
|
2820
|
+
}
|
|
2821
|
+
.\[\&\>button\.dialog-close\]\:hidden {
|
|
2822
|
+
&>button.dialog-close {
|
|
2823
|
+
display: none;
|
|
2824
|
+
}
|
|
2825
|
+
}
|
|
2826
|
+
.\[\&\>img\]\:block {
|
|
2827
|
+
&>img {
|
|
2828
|
+
display: block;
|
|
2829
|
+
}
|
|
2830
|
+
}
|
|
2831
|
+
.\[\&\>img\]\:h-auto {
|
|
2832
|
+
&>img {
|
|
2833
|
+
height: auto;
|
|
2834
|
+
}
|
|
2835
|
+
}
|
|
2836
|
+
.\[\&\>img\]\:max-w-full {
|
|
2837
|
+
&>img {
|
|
2838
|
+
max-width: 100%;
|
|
2839
|
+
}
|
|
2840
|
+
}
|
|
2841
|
+
.\[\&\>img\]\:rounded-md {
|
|
2842
|
+
&>img {
|
|
2843
|
+
border-radius: var(--boring-radius-md);
|
|
2844
|
+
}
|
|
2845
|
+
}
|
|
2846
|
+
.\[\.active-tab_\&\]\:bg-foreground\/45 {
|
|
2847
|
+
.active-tab & {
|
|
2848
|
+
background-color: var(--boring-foreground);
|
|
2849
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2850
|
+
background-color: color-mix(in oklab, var(--boring-foreground) 45%, transparent);
|
|
2851
|
+
}
|
|
2852
|
+
}
|
|
2853
|
+
}
|
|
2854
|
+
.\[\.active-tab_\&\]\:text-\[color\:var\(--accent\)\] {
|
|
2855
|
+
.active-tab & {
|
|
2856
|
+
color: var(--accent);
|
|
2857
|
+
}
|
|
2858
|
+
}
|
|
2859
|
+
.\[\.active-tab_\&\]\:opacity-50 {
|
|
2860
|
+
.active-tab & {
|
|
2861
|
+
opacity: 50%;
|
|
2862
|
+
}
|
|
2863
|
+
}
|
|
2864
|
+
.\[\.active-tab_\&\]\:hover\:opacity-100 {
|
|
2865
|
+
.active-tab & {
|
|
2866
|
+
&:hover {
|
|
2867
|
+
@media (hover: hover) {
|
|
2868
|
+
opacity: 100%;
|
|
2869
|
+
}
|
|
2870
|
+
}
|
|
2871
|
+
}
|
|
2872
|
+
}
|
|
2873
|
+
.\[\.dv-active-tab_\&\]\:bg-foreground\/45 {
|
|
2874
|
+
.dv-active-tab & {
|
|
2875
|
+
background-color: var(--boring-foreground);
|
|
2876
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2877
|
+
background-color: color-mix(in oklab, var(--boring-foreground) 45%, transparent);
|
|
2878
|
+
}
|
|
2879
|
+
}
|
|
2880
|
+
}
|
|
2881
|
+
.\[\.dv-active-tab_\&\]\:text-\[color\:var\(--accent\)\] {
|
|
2882
|
+
.dv-active-tab & {
|
|
2883
|
+
color: var(--accent);
|
|
2884
|
+
}
|
|
2885
|
+
}
|
|
2886
|
+
.\[\.dv-active-tab_\&\]\:opacity-50 {
|
|
2887
|
+
.dv-active-tab & {
|
|
2888
|
+
opacity: 50%;
|
|
2889
|
+
}
|
|
2890
|
+
}
|
|
2891
|
+
.\[\.dv-active-tab_\&\]\:hover\:opacity-100 {
|
|
2892
|
+
.dv-active-tab & {
|
|
2893
|
+
&:hover {
|
|
2894
|
+
@media (hover: hover) {
|
|
2895
|
+
opacity: 100%;
|
|
2896
|
+
}
|
|
2897
|
+
}
|
|
2898
|
+
}
|
|
2899
|
+
}
|
|
2900
|
+
}
|
|
2901
|
+
/*! tailwindcss v4.2.4 | MIT License | https://tailwindcss.com */
|
|
2902
|
+
@layer properties;
|
|
2903
|
+
@layer theme, utilities;
|
|
2904
|
+
@layer theme {
|
|
2905
|
+
:root, :host {
|
|
2906
|
+
--color-black: #000;
|
|
2907
|
+
--spacing: 0.25rem;
|
|
2908
|
+
--container-xs: 20rem;
|
|
2909
|
+
--container-sm: 24rem;
|
|
2910
|
+
--container-lg: 32rem;
|
|
2911
|
+
--container-xl: 36rem;
|
|
2912
|
+
--container-2xl: 42rem;
|
|
2913
|
+
--text-xs: 0.75rem;
|
|
2914
|
+
--text-xs--line-height: calc(1 / 0.75);
|
|
2915
|
+
--text-sm: 0.875rem;
|
|
2916
|
+
--text-sm--line-height: calc(1.25 / 0.875);
|
|
2917
|
+
--text-base: 1rem;
|
|
2918
|
+
--text-base--line-height: calc(1.5 / 1);
|
|
2919
|
+
--text-lg: 1.125rem;
|
|
2920
|
+
--text-lg--line-height: calc(1.75 / 1.125);
|
|
2921
|
+
--font-weight-normal: 400;
|
|
2922
|
+
--font-weight-medium: 500;
|
|
2923
|
+
--font-weight-semibold: 600;
|
|
2924
|
+
--tracking-tight: -0.025em;
|
|
2925
|
+
--tracking-widest: 0.1em;
|
|
2926
|
+
--leading-snug: 1.375;
|
|
2927
|
+
--radius-xs: 0.125rem;
|
|
2928
|
+
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2929
|
+
--animate-spin: spin 1s linear infinite;
|
|
2930
|
+
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
2931
|
+
--default-transition-duration: 150ms;
|
|
2932
|
+
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2933
|
+
}
|
|
2934
|
+
}
|
|
1430
2935
|
@layer utilities {
|
|
1431
2936
|
.\@container\/card-header {
|
|
1432
2937
|
container-type: inline-size;
|
|
@@ -1438,12 +2943,6 @@
|
|
|
1438
2943
|
.pointer-events-none {
|
|
1439
2944
|
pointer-events: none;
|
|
1440
2945
|
}
|
|
1441
|
-
.collapse {
|
|
1442
|
-
visibility: collapse;
|
|
1443
|
-
}
|
|
1444
|
-
.visible {
|
|
1445
|
-
visibility: visible;
|
|
1446
|
-
}
|
|
1447
2946
|
.sr-only {
|
|
1448
2947
|
position: absolute;
|
|
1449
2948
|
width: 1px;
|
|
@@ -1464,12 +2963,6 @@
|
|
|
1464
2963
|
.relative {
|
|
1465
2964
|
position: relative;
|
|
1466
2965
|
}
|
|
1467
|
-
.static {
|
|
1468
|
-
position: static;
|
|
1469
|
-
}
|
|
1470
|
-
.sticky {
|
|
1471
|
-
position: sticky;
|
|
1472
|
-
}
|
|
1473
2966
|
.inset-0 {
|
|
1474
2967
|
inset: calc(var(--spacing) * 0);
|
|
1475
2968
|
}
|
|
@@ -1479,36 +2972,18 @@
|
|
|
1479
2972
|
.inset-y-0 {
|
|
1480
2973
|
inset-block: calc(var(--spacing) * 0);
|
|
1481
2974
|
}
|
|
1482
|
-
.start {
|
|
1483
|
-
inset-inline-start: var(--spacing);
|
|
1484
|
-
}
|
|
1485
|
-
.end {
|
|
1486
|
-
inset-inline-end: var(--spacing);
|
|
1487
|
-
}
|
|
1488
2975
|
.top-0 {
|
|
1489
2976
|
top: calc(var(--spacing) * 0);
|
|
1490
2977
|
}
|
|
1491
|
-
.top-1\/2 {
|
|
1492
|
-
top: calc(1 / 2 * 100%);
|
|
1493
|
-
}
|
|
1494
|
-
.top-2 {
|
|
1495
|
-
top: calc(var(--spacing) * 2);
|
|
1496
|
-
}
|
|
1497
2978
|
.top-4 {
|
|
1498
2979
|
top: calc(var(--spacing) * 4);
|
|
1499
2980
|
}
|
|
1500
2981
|
.top-\[50\%\] {
|
|
1501
2982
|
top: 50%;
|
|
1502
2983
|
}
|
|
1503
|
-
.-right-1\.5 {
|
|
1504
|
-
right: calc(var(--spacing) * -1.5);
|
|
1505
|
-
}
|
|
1506
2984
|
.right-0 {
|
|
1507
2985
|
right: calc(var(--spacing) * 0);
|
|
1508
2986
|
}
|
|
1509
|
-
.right-1 {
|
|
1510
|
-
right: calc(var(--spacing) * 1);
|
|
1511
|
-
}
|
|
1512
2987
|
.right-2 {
|
|
1513
2988
|
right: calc(var(--spacing) * 2);
|
|
1514
2989
|
}
|
|
@@ -1518,21 +2993,12 @@
|
|
|
1518
2993
|
.bottom-0 {
|
|
1519
2994
|
bottom: calc(var(--spacing) * 0);
|
|
1520
2995
|
}
|
|
1521
|
-
.bottom-2 {
|
|
1522
|
-
bottom: calc(var(--spacing) * 2);
|
|
1523
|
-
}
|
|
1524
2996
|
.bottom-4 {
|
|
1525
2997
|
bottom: calc(var(--spacing) * 4);
|
|
1526
2998
|
}
|
|
1527
|
-
.-left-1\.5 {
|
|
1528
|
-
left: calc(var(--spacing) * -1.5);
|
|
1529
|
-
}
|
|
1530
2999
|
.left-0 {
|
|
1531
3000
|
left: calc(var(--spacing) * 0);
|
|
1532
3001
|
}
|
|
1533
|
-
.left-1 {
|
|
1534
|
-
left: calc(var(--spacing) * 1);
|
|
1535
|
-
}
|
|
1536
3002
|
.left-2 {
|
|
1537
3003
|
left: calc(var(--spacing) * 2);
|
|
1538
3004
|
}
|
|
@@ -1542,21 +3008,12 @@
|
|
|
1542
3008
|
.left-\[50\%\] {
|
|
1543
3009
|
left: 50%;
|
|
1544
3010
|
}
|
|
1545
|
-
.z-20 {
|
|
1546
|
-
z-index: 20;
|
|
1547
|
-
}
|
|
1548
|
-
.z-30 {
|
|
1549
|
-
z-index: 30;
|
|
1550
|
-
}
|
|
1551
3011
|
.z-50 {
|
|
1552
3012
|
z-index: 50;
|
|
1553
3013
|
}
|
|
1554
3014
|
.z-\[1000\] {
|
|
1555
3015
|
z-index: 1000;
|
|
1556
3016
|
}
|
|
1557
|
-
.z-\[99999\] {
|
|
1558
|
-
z-index: 99999;
|
|
1559
|
-
}
|
|
1560
3017
|
.order-first {
|
|
1561
3018
|
order: -9999;
|
|
1562
3019
|
}
|
|
@@ -1566,57 +3023,24 @@
|
|
|
1566
3023
|
.col-start-2 {
|
|
1567
3024
|
grid-column-start: 2;
|
|
1568
3025
|
}
|
|
1569
|
-
.row-1 {
|
|
1570
|
-
grid-row: 1;
|
|
1571
|
-
}
|
|
1572
3026
|
.row-span-2 {
|
|
1573
3027
|
grid-row: span 2 / span 2;
|
|
1574
3028
|
}
|
|
1575
3029
|
.row-start-1 {
|
|
1576
3030
|
grid-row-start: 1;
|
|
1577
3031
|
}
|
|
1578
|
-
.container {
|
|
1579
|
-
width: 100%;
|
|
1580
|
-
@media (width >= 40rem) {
|
|
1581
|
-
max-width: 40rem;
|
|
1582
|
-
}
|
|
1583
|
-
@media (width >= 48rem) {
|
|
1584
|
-
max-width: 48rem;
|
|
1585
|
-
}
|
|
1586
|
-
@media (width >= 64rem) {
|
|
1587
|
-
max-width: 64rem;
|
|
1588
|
-
}
|
|
1589
|
-
@media (width >= 80rem) {
|
|
1590
|
-
max-width: 80rem;
|
|
1591
|
-
}
|
|
1592
|
-
@media (width >= 96rem) {
|
|
1593
|
-
max-width: 96rem;
|
|
1594
|
-
}
|
|
1595
|
-
}
|
|
1596
3032
|
.\!m-0 {
|
|
1597
3033
|
margin: calc(var(--spacing) * 0) !important;
|
|
1598
3034
|
}
|
|
1599
|
-
.m-2 {
|
|
1600
|
-
margin: calc(var(--spacing) * 2);
|
|
1601
|
-
}
|
|
1602
3035
|
.-mx-1 {
|
|
1603
3036
|
margin-inline: calc(var(--spacing) * -1);
|
|
1604
3037
|
}
|
|
1605
3038
|
.mx-1 {
|
|
1606
3039
|
margin-inline: calc(var(--spacing) * 1);
|
|
1607
3040
|
}
|
|
1608
|
-
.mx-2 {
|
|
1609
|
-
margin-inline: calc(var(--spacing) * 2);
|
|
1610
|
-
}
|
|
1611
|
-
.mx-auto {
|
|
1612
|
-
margin-inline: auto;
|
|
1613
|
-
}
|
|
1614
3041
|
.my-1 {
|
|
1615
3042
|
margin-block: calc(var(--spacing) * 1);
|
|
1616
3043
|
}
|
|
1617
|
-
.my-2 {
|
|
1618
|
-
margin-block: calc(var(--spacing) * 2);
|
|
1619
|
-
}
|
|
1620
3044
|
.mt-0\.5 {
|
|
1621
3045
|
margin-top: calc(var(--spacing) * 0.5);
|
|
1622
3046
|
}
|
|
@@ -1626,36 +3050,12 @@
|
|
|
1626
3050
|
.mt-2 {
|
|
1627
3051
|
margin-top: calc(var(--spacing) * 2);
|
|
1628
3052
|
}
|
|
1629
|
-
.mt-\[1px\] {
|
|
1630
|
-
margin-top: 1px;
|
|
1631
|
-
}
|
|
1632
3053
|
.mt-auto {
|
|
1633
3054
|
margin-top: auto;
|
|
1634
3055
|
}
|
|
1635
|
-
.mr-1 {
|
|
1636
|
-
margin-right: calc(var(--spacing) * 1);
|
|
1637
|
-
}
|
|
1638
|
-
.mr-auto {
|
|
1639
|
-
margin-right: auto;
|
|
1640
|
-
}
|
|
1641
|
-
.mb-1\.5 {
|
|
1642
|
-
margin-bottom: calc(var(--spacing) * 1.5);
|
|
1643
|
-
}
|
|
1644
3056
|
.mb-2 {
|
|
1645
3057
|
margin-bottom: calc(var(--spacing) * 2);
|
|
1646
3058
|
}
|
|
1647
|
-
.ml-1 {
|
|
1648
|
-
margin-left: calc(var(--spacing) * 1);
|
|
1649
|
-
}
|
|
1650
|
-
.ml-1\.5 {
|
|
1651
|
-
margin-left: calc(var(--spacing) * 1.5);
|
|
1652
|
-
}
|
|
1653
|
-
.ml-2 {
|
|
1654
|
-
margin-left: calc(var(--spacing) * 2);
|
|
1655
|
-
}
|
|
1656
|
-
.ml-3 {
|
|
1657
|
-
margin-left: calc(var(--spacing) * 3);
|
|
1658
|
-
}
|
|
1659
3059
|
.ml-auto {
|
|
1660
3060
|
margin-left: auto;
|
|
1661
3061
|
}
|
|
@@ -1668,21 +3068,12 @@
|
|
|
1668
3068
|
.grid {
|
|
1669
3069
|
display: grid;
|
|
1670
3070
|
}
|
|
1671
|
-
.hidden {
|
|
1672
|
-
display: none;
|
|
1673
|
-
}
|
|
1674
|
-
.inline {
|
|
1675
|
-
display: inline;
|
|
1676
|
-
}
|
|
1677
3071
|
.inline-block {
|
|
1678
3072
|
display: inline-block;
|
|
1679
3073
|
}
|
|
1680
3074
|
.inline-flex {
|
|
1681
3075
|
display: inline-flex;
|
|
1682
3076
|
}
|
|
1683
|
-
.table {
|
|
1684
|
-
display: table;
|
|
1685
|
-
}
|
|
1686
3077
|
.size-2 {
|
|
1687
3078
|
width: calc(var(--spacing) * 2);
|
|
1688
3079
|
height: calc(var(--spacing) * 2);
|
|
@@ -1691,10 +3082,6 @@
|
|
|
1691
3082
|
width: calc(var(--spacing) * 2.5);
|
|
1692
3083
|
height: calc(var(--spacing) * 2.5);
|
|
1693
3084
|
}
|
|
1694
|
-
.size-3 {
|
|
1695
|
-
width: calc(var(--spacing) * 3);
|
|
1696
|
-
height: calc(var(--spacing) * 3);
|
|
1697
|
-
}
|
|
1698
3085
|
.size-3\.5 {
|
|
1699
3086
|
width: calc(var(--spacing) * 3.5);
|
|
1700
3087
|
height: calc(var(--spacing) * 3.5);
|
|
@@ -1730,15 +3117,9 @@
|
|
|
1730
3117
|
.h-1 {
|
|
1731
3118
|
height: calc(var(--spacing) * 1);
|
|
1732
3119
|
}
|
|
1733
|
-
.h-1\.5 {
|
|
1734
|
-
height: calc(var(--spacing) * 1.5);
|
|
1735
|
-
}
|
|
1736
3120
|
.h-2\.5 {
|
|
1737
3121
|
height: calc(var(--spacing) * 2.5);
|
|
1738
3122
|
}
|
|
1739
|
-
.h-3 {
|
|
1740
|
-
height: calc(var(--spacing) * 3);
|
|
1741
|
-
}
|
|
1742
3123
|
.h-3\.5 {
|
|
1743
3124
|
height: calc(var(--spacing) * 3.5);
|
|
1744
3125
|
}
|
|
@@ -1751,9 +3132,6 @@
|
|
|
1751
3132
|
.h-6 {
|
|
1752
3133
|
height: calc(var(--spacing) * 6);
|
|
1753
3134
|
}
|
|
1754
|
-
.h-7 {
|
|
1755
|
-
height: calc(var(--spacing) * 7);
|
|
1756
|
-
}
|
|
1757
3135
|
.h-8 {
|
|
1758
3136
|
height: calc(var(--spacing) * 8);
|
|
1759
3137
|
}
|
|
@@ -1763,15 +3141,6 @@
|
|
|
1763
3141
|
.h-10 {
|
|
1764
3142
|
height: calc(var(--spacing) * 10);
|
|
1765
3143
|
}
|
|
1766
|
-
.h-11 {
|
|
1767
|
-
height: calc(var(--spacing) * 11);
|
|
1768
|
-
}
|
|
1769
|
-
.h-12 {
|
|
1770
|
-
height: calc(var(--spacing) * 12);
|
|
1771
|
-
}
|
|
1772
|
-
.h-\[16px\] {
|
|
1773
|
-
height: 16px;
|
|
1774
|
-
}
|
|
1775
3144
|
.h-\[calc\(100\%-1px\)\] {
|
|
1776
3145
|
height: calc(100% - 1px);
|
|
1777
3146
|
}
|
|
@@ -1796,21 +3165,9 @@
|
|
|
1796
3165
|
.max-h-48 {
|
|
1797
3166
|
max-height: calc(var(--spacing) * 48);
|
|
1798
3167
|
}
|
|
1799
|
-
.max-h-\[50vh\] {
|
|
1800
|
-
max-height: 50vh;
|
|
1801
|
-
}
|
|
1802
|
-
.max-h-\[120px\] {
|
|
1803
|
-
max-height: 120px;
|
|
1804
|
-
}
|
|
1805
3168
|
.max-h-\[300px\] {
|
|
1806
3169
|
max-height: 300px;
|
|
1807
3170
|
}
|
|
1808
|
-
.max-h-\[440px\] {
|
|
1809
|
-
max-height: 440px;
|
|
1810
|
-
}
|
|
1811
|
-
.max-h-full {
|
|
1812
|
-
max-height: 100%;
|
|
1813
|
-
}
|
|
1814
3171
|
.min-h-0 {
|
|
1815
3172
|
min-height: calc(var(--spacing) * 0);
|
|
1816
3173
|
}
|
|
@@ -1829,54 +3186,21 @@
|
|
|
1829
3186
|
.min-h-40 {
|
|
1830
3187
|
min-height: calc(var(--spacing) * 40);
|
|
1831
3188
|
}
|
|
1832
|
-
.min-h-\[200px\] {
|
|
1833
|
-
min-height: 200px;
|
|
1834
|
-
}
|
|
1835
|
-
.min-h-\[240px\] {
|
|
1836
|
-
min-height: 240px;
|
|
1837
|
-
}
|
|
1838
|
-
.min-h-\[480px\] {
|
|
1839
|
-
min-height: 480px;
|
|
1840
|
-
}
|
|
1841
|
-
.min-h-screen {
|
|
1842
|
-
min-height: 100vh;
|
|
1843
|
-
}
|
|
1844
3189
|
.w-1 {
|
|
1845
3190
|
width: calc(var(--spacing) * 1);
|
|
1846
3191
|
}
|
|
1847
|
-
.w-1\.5 {
|
|
1848
|
-
width: calc(var(--spacing) * 1.5);
|
|
1849
|
-
}
|
|
1850
3192
|
.w-2\.5 {
|
|
1851
3193
|
width: calc(var(--spacing) * 2.5);
|
|
1852
3194
|
}
|
|
1853
|
-
.w-3 {
|
|
1854
|
-
width: calc(var(--spacing) * 3);
|
|
1855
|
-
}
|
|
1856
3195
|
.w-3\.5 {
|
|
1857
3196
|
width: calc(var(--spacing) * 3.5);
|
|
1858
3197
|
}
|
|
1859
3198
|
.w-3\/4 {
|
|
1860
3199
|
width: calc(3 / 4 * 100%);
|
|
1861
3200
|
}
|
|
1862
|
-
.w-4 {
|
|
1863
|
-
width: calc(var(--spacing) * 4);
|
|
1864
|
-
}
|
|
1865
|
-
.w-5 {
|
|
1866
|
-
width: calc(var(--spacing) * 5);
|
|
1867
|
-
}
|
|
1868
3201
|
.w-6 {
|
|
1869
3202
|
width: calc(var(--spacing) * 6);
|
|
1870
3203
|
}
|
|
1871
|
-
.w-9 {
|
|
1872
|
-
width: calc(var(--spacing) * 9);
|
|
1873
|
-
}
|
|
1874
|
-
.w-10 {
|
|
1875
|
-
width: calc(var(--spacing) * 10);
|
|
1876
|
-
}
|
|
1877
|
-
.w-11 {
|
|
1878
|
-
width: calc(var(--spacing) * 11);
|
|
1879
|
-
}
|
|
1880
3204
|
.w-32 {
|
|
1881
3205
|
width: calc(var(--spacing) * 32);
|
|
1882
3206
|
}
|
|
@@ -1886,18 +3210,9 @@
|
|
|
1886
3210
|
.w-72 {
|
|
1887
3211
|
width: calc(var(--spacing) * 72);
|
|
1888
3212
|
}
|
|
1889
|
-
.w-\[85vw\] {
|
|
1890
|
-
width: 85vw;
|
|
1891
|
-
}
|
|
1892
3213
|
.w-\[340px\] {
|
|
1893
3214
|
width: 340px;
|
|
1894
3215
|
}
|
|
1895
|
-
.w-\[360px\] {
|
|
1896
|
-
width: 360px;
|
|
1897
|
-
}
|
|
1898
|
-
.w-\[calc\(100\%-0\.5rem\)\] {
|
|
1899
|
-
width: calc(100% - 0.5rem);
|
|
1900
|
-
}
|
|
1901
3216
|
.w-fit {
|
|
1902
3217
|
width: fit-content;
|
|
1903
3218
|
}
|
|
@@ -1910,30 +3225,12 @@
|
|
|
1910
3225
|
.max-w-2xl {
|
|
1911
3226
|
max-width: var(--container-2xl);
|
|
1912
3227
|
}
|
|
1913
|
-
.max-w-20 {
|
|
1914
|
-
max-width: calc(var(--spacing) * 20);
|
|
1915
|
-
}
|
|
1916
|
-
.max-w-\[68ch\] {
|
|
1917
|
-
max-width: 68ch;
|
|
1918
|
-
}
|
|
1919
|
-
.max-w-\[280px\] {
|
|
1920
|
-
max-width: 280px;
|
|
1921
|
-
}
|
|
1922
3228
|
.max-w-\[calc\(100\%-2rem\)\] {
|
|
1923
3229
|
max-width: calc(100% - 2rem);
|
|
1924
3230
|
}
|
|
1925
3231
|
.max-w-\[calc\(100vw-2rem\)\] {
|
|
1926
3232
|
max-width: calc(100vw - 2rem);
|
|
1927
3233
|
}
|
|
1928
|
-
.max-w-full {
|
|
1929
|
-
max-width: 100%;
|
|
1930
|
-
}
|
|
1931
|
-
.max-w-md {
|
|
1932
|
-
max-width: var(--container-md);
|
|
1933
|
-
}
|
|
1934
|
-
.max-w-sm {
|
|
1935
|
-
max-width: var(--container-sm);
|
|
1936
|
-
}
|
|
1937
3234
|
.max-w-xl {
|
|
1938
3235
|
max-width: var(--container-xl);
|
|
1939
3236
|
}
|
|
@@ -1943,27 +3240,15 @@
|
|
|
1943
3240
|
.min-w-5 {
|
|
1944
3241
|
min-width: calc(var(--spacing) * 5);
|
|
1945
3242
|
}
|
|
1946
|
-
.min-w-32 {
|
|
1947
|
-
min-width: calc(var(--spacing) * 32);
|
|
1948
|
-
}
|
|
1949
3243
|
.min-w-\[8rem\] {
|
|
1950
3244
|
min-width: 8rem;
|
|
1951
3245
|
}
|
|
1952
|
-
.min-w-\[10rem\] {
|
|
1953
|
-
min-width: 10rem;
|
|
1954
|
-
}
|
|
1955
|
-
.min-w-\[24px\] {
|
|
1956
|
-
min-width: 24px;
|
|
1957
|
-
}
|
|
1958
3246
|
.min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
1959
3247
|
min-width: var(--radix-select-trigger-width);
|
|
1960
3248
|
}
|
|
1961
3249
|
.flex-1 {
|
|
1962
3250
|
flex: 1;
|
|
1963
3251
|
}
|
|
1964
|
-
.flex-none {
|
|
1965
|
-
flex: none;
|
|
1966
|
-
}
|
|
1967
3252
|
.shrink-0 {
|
|
1968
3253
|
flex-shrink: 0;
|
|
1969
3254
|
}
|
|
@@ -1982,22 +3267,10 @@
|
|
|
1982
3267
|
.origin-\[--radix-hover-card-content-transform-origin\] {
|
|
1983
3268
|
transform-origin: --radix-hover-card-content-transform-origin;
|
|
1984
3269
|
}
|
|
1985
|
-
.translate-x-1\/2 {
|
|
1986
|
-
--tw-translate-x: calc(1 / 2 * 100%);
|
|
1987
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1988
|
-
}
|
|
1989
3270
|
.translate-x-\[-50\%\] {
|
|
1990
3271
|
--tw-translate-x: -50%;
|
|
1991
3272
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1992
3273
|
}
|
|
1993
|
-
.-translate-y-1\/2 {
|
|
1994
|
-
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
|
|
1995
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1996
|
-
}
|
|
1997
|
-
.translate-y-1\/2 {
|
|
1998
|
-
--tw-translate-y: calc(1 / 2 * 100%);
|
|
1999
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2000
|
-
}
|
|
2001
3274
|
.translate-y-\[-50\%\] {
|
|
2002
3275
|
--tw-translate-y: -50%;
|
|
2003
3276
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2009,9 +3282,6 @@
|
|
|
2009
3282
|
.rotate-45 {
|
|
2010
3283
|
rotate: 45deg;
|
|
2011
3284
|
}
|
|
2012
|
-
.rotate-90 {
|
|
2013
|
-
rotate: 90deg;
|
|
2014
|
-
}
|
|
2015
3285
|
.animate-pulse {
|
|
2016
3286
|
animation: var(--animate-pulse);
|
|
2017
3287
|
}
|
|
@@ -2024,9 +3294,6 @@
|
|
|
2024
3294
|
.cursor-default {
|
|
2025
3295
|
cursor: default;
|
|
2026
3296
|
}
|
|
2027
|
-
.cursor-nwse-resize {
|
|
2028
|
-
cursor: nwse-resize;
|
|
2029
|
-
}
|
|
2030
3297
|
.cursor-pointer {
|
|
2031
3298
|
cursor: pointer;
|
|
2032
3299
|
}
|
|
@@ -2039,9 +3306,6 @@
|
|
|
2039
3306
|
.touch-none {
|
|
2040
3307
|
touch-action: none;
|
|
2041
3308
|
}
|
|
2042
|
-
.resize {
|
|
2043
|
-
resize: both;
|
|
2044
|
-
}
|
|
2045
3309
|
.resize-none {
|
|
2046
3310
|
resize: none;
|
|
2047
3311
|
}
|
|
@@ -2054,9 +3318,6 @@
|
|
|
2054
3318
|
.scroll-py-1 {
|
|
2055
3319
|
scroll-padding-block: calc(var(--spacing) * 1);
|
|
2056
3320
|
}
|
|
2057
|
-
.list-disc {
|
|
2058
|
-
list-style-type: disc;
|
|
2059
|
-
}
|
|
2060
3321
|
.auto-rows-min {
|
|
2061
3322
|
grid-auto-rows: min-content;
|
|
2062
3323
|
}
|
|
@@ -2072,20 +3333,14 @@
|
|
|
2072
3333
|
.flex-col-reverse {
|
|
2073
3334
|
flex-direction: column-reverse;
|
|
2074
3335
|
}
|
|
2075
|
-
.flex-row {
|
|
2076
|
-
flex-direction: row;
|
|
2077
|
-
}
|
|
2078
3336
|
.flex-wrap {
|
|
2079
3337
|
flex-wrap: wrap;
|
|
2080
3338
|
}
|
|
2081
3339
|
.place-content-center {
|
|
2082
3340
|
place-content: center;
|
|
2083
3341
|
}
|
|
2084
|
-
.place-items-center {
|
|
2085
|
-
place-items: center;
|
|
2086
|
-
}
|
|
2087
|
-
.items-baseline {
|
|
2088
|
-
align-items: baseline;
|
|
3342
|
+
.place-items-center {
|
|
3343
|
+
place-items: center;
|
|
2089
3344
|
}
|
|
2090
3345
|
.items-center {
|
|
2091
3346
|
align-items: center;
|
|
@@ -2132,19 +3387,9 @@
|
|
|
2132
3387
|
.gap-4 {
|
|
2133
3388
|
gap: calc(var(--spacing) * 4);
|
|
2134
3389
|
}
|
|
2135
|
-
.gap-5 {
|
|
2136
|
-
gap: calc(var(--spacing) * 5);
|
|
2137
|
-
}
|
|
2138
3390
|
.gap-6 {
|
|
2139
3391
|
gap: calc(var(--spacing) * 6);
|
|
2140
3392
|
}
|
|
2141
|
-
.space-y-0\.5 {
|
|
2142
|
-
:where(& > :not(:last-child)) {
|
|
2143
|
-
--tw-space-y-reverse: 0;
|
|
2144
|
-
margin-block-start: calc(calc(var(--spacing) * 0.5) * var(--tw-space-y-reverse));
|
|
2145
|
-
margin-block-end: calc(calc(var(--spacing) * 0.5) * calc(1 - var(--tw-space-y-reverse)));
|
|
2146
|
-
}
|
|
2147
|
-
}
|
|
2148
3393
|
.space-y-1 {
|
|
2149
3394
|
:where(& > :not(:last-child)) {
|
|
2150
3395
|
--tw-space-y-reverse: 0;
|
|
@@ -2152,13 +3397,6 @@
|
|
|
2152
3397
|
margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
|
|
2153
3398
|
}
|
|
2154
3399
|
}
|
|
2155
|
-
.space-y-1\.5 {
|
|
2156
|
-
:where(& > :not(:last-child)) {
|
|
2157
|
-
--tw-space-y-reverse: 0;
|
|
2158
|
-
margin-block-start: calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse));
|
|
2159
|
-
margin-block-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)));
|
|
2160
|
-
}
|
|
2161
|
-
}
|
|
2162
3400
|
.space-y-2 {
|
|
2163
3401
|
:where(& > :not(:last-child)) {
|
|
2164
3402
|
--tw-space-y-reverse: 0;
|
|
@@ -2166,13 +3404,6 @@
|
|
|
2166
3404
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
2167
3405
|
}
|
|
2168
3406
|
}
|
|
2169
|
-
.space-y-3 {
|
|
2170
|
-
:where(& > :not(:last-child)) {
|
|
2171
|
-
--tw-space-y-reverse: 0;
|
|
2172
|
-
margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
|
|
2173
|
-
margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
|
|
2174
|
-
}
|
|
2175
|
-
}
|
|
2176
3407
|
.divide-y {
|
|
2177
3408
|
:where(& > :not(:last-child)) {
|
|
2178
3409
|
--tw-divide-y-reverse: 0;
|
|
@@ -2198,9 +3429,6 @@
|
|
|
2198
3429
|
}
|
|
2199
3430
|
}
|
|
2200
3431
|
}
|
|
2201
|
-
.self-center {
|
|
2202
|
-
align-self: center;
|
|
2203
|
-
}
|
|
2204
3432
|
.self-start {
|
|
2205
3433
|
align-self: flex-start;
|
|
2206
3434
|
}
|
|
@@ -2236,9 +3464,6 @@
|
|
|
2236
3464
|
.rounded-\[2px\] {
|
|
2237
3465
|
border-radius: 2px;
|
|
2238
3466
|
}
|
|
2239
|
-
.rounded-\[3px\] {
|
|
2240
|
-
border-radius: 3px;
|
|
2241
|
-
}
|
|
2242
3467
|
.rounded-\[4px\] {
|
|
2243
3468
|
border-radius: 4px;
|
|
2244
3469
|
}
|
|
@@ -2281,18 +3506,10 @@
|
|
|
2281
3506
|
border-style: var(--tw-border-style);
|
|
2282
3507
|
border-width: 2px;
|
|
2283
3508
|
}
|
|
2284
|
-
.border-x-0 {
|
|
2285
|
-
border-inline-style: var(--tw-border-style);
|
|
2286
|
-
border-inline-width: 0px;
|
|
2287
|
-
}
|
|
2288
3509
|
.border-t {
|
|
2289
3510
|
border-top-style: var(--tw-border-style);
|
|
2290
3511
|
border-top-width: 1px;
|
|
2291
3512
|
}
|
|
2292
|
-
.border-t-0 {
|
|
2293
|
-
border-top-style: var(--tw-border-style);
|
|
2294
|
-
border-top-width: 0px;
|
|
2295
|
-
}
|
|
2296
3513
|
.border-r {
|
|
2297
3514
|
border-right-style: var(--tw-border-style);
|
|
2298
3515
|
border-right-width: 1px;
|
|
@@ -2309,33 +3526,15 @@
|
|
|
2309
3526
|
--tw-border-style: dashed;
|
|
2310
3527
|
border-style: dashed;
|
|
2311
3528
|
}
|
|
2312
|
-
.border-\[color\:oklch\(from_var\(--border\)_l_c_h\/0\.4\)\] {
|
|
2313
|
-
border-color: oklch(from var(--border) l c h/0.4);
|
|
2314
|
-
}
|
|
2315
|
-
.border-\[color\:oklch\(from_var\(--border\)_l_c_h\/0\.6\)\] {
|
|
2316
|
-
border-color: oklch(from var(--border) l c h/0.6);
|
|
2317
|
-
}
|
|
2318
|
-
.border-\[color\:oklch\(from_var\(--border\)_l_c_h\/0\.25\)\] {
|
|
2319
|
-
border-color: oklch(from var(--border) l c h/0.25);
|
|
2320
|
-
}
|
|
2321
3529
|
.border-\[color\:oklch\(from_var\(--border\)_l_c_h\/0\.65\)\] {
|
|
2322
3530
|
border-color: oklch(from var(--border) l c h/0.65);
|
|
2323
3531
|
}
|
|
2324
|
-
.border-\[color\:var\(--accent\)\]\/60 {
|
|
2325
|
-
border-color: var(--accent);
|
|
2326
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2327
|
-
border-color: color-mix(in oklab, var(--accent) 60%, transparent);
|
|
2328
|
-
}
|
|
2329
|
-
}
|
|
2330
3532
|
.border-accent\/40 {
|
|
2331
3533
|
border-color: var(--boring-accent);
|
|
2332
3534
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2333
3535
|
border-color: color-mix(in oklab, var(--boring-accent) 40%, transparent);
|
|
2334
3536
|
}
|
|
2335
3537
|
}
|
|
2336
|
-
.border-background {
|
|
2337
|
-
border-color: var(--boring-background);
|
|
2338
|
-
}
|
|
2339
3538
|
.border-border {
|
|
2340
3539
|
border-color: var(--boring-border);
|
|
2341
3540
|
}
|
|
@@ -2384,12 +3583,6 @@
|
|
|
2384
3583
|
border-color: color-mix(in oklab, var(--boring-foreground) 20%, transparent);
|
|
2385
3584
|
}
|
|
2386
3585
|
}
|
|
2387
|
-
.border-foreground\/30 {
|
|
2388
|
-
border-color: var(--boring-foreground);
|
|
2389
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2390
|
-
border-color: color-mix(in oklab, var(--boring-foreground) 30%, transparent);
|
|
2391
|
-
}
|
|
2392
|
-
}
|
|
2393
3586
|
.border-input {
|
|
2394
3587
|
border-color: var(--boring-input);
|
|
2395
3588
|
}
|
|
@@ -2408,9 +3601,6 @@
|
|
|
2408
3601
|
.border-l-transparent {
|
|
2409
3602
|
border-left-color: transparent;
|
|
2410
3603
|
}
|
|
2411
|
-
.bg-\[color\:var\(--accent\)\] {
|
|
2412
|
-
background-color: var(--accent);
|
|
2413
|
-
}
|
|
2414
3604
|
.bg-\[color\:var\(--accent-soft\)\] {
|
|
2415
3605
|
background-color: var(--accent-soft);
|
|
2416
3606
|
}
|
|
@@ -2429,21 +3619,12 @@
|
|
|
2429
3619
|
.bg-\[color\:var\(--warning-soft\,var\(--accent-soft\)\)\] {
|
|
2430
3620
|
background-color: var(--warning-soft,var(--accent-soft));
|
|
2431
3621
|
}
|
|
2432
|
-
.bg-\[oklch\(from_var\(--accent\)_l_c_h\/0\.10\)\] {
|
|
2433
|
-
background-color: oklch(from var(--accent) l c h/0.10);
|
|
2434
|
-
}
|
|
2435
3622
|
.bg-accent {
|
|
2436
3623
|
background-color: var(--boring-accent);
|
|
2437
3624
|
}
|
|
2438
3625
|
.bg-background {
|
|
2439
3626
|
background-color: var(--boring-background);
|
|
2440
3627
|
}
|
|
2441
|
-
.bg-background\/95 {
|
|
2442
|
-
background-color: var(--boring-background);
|
|
2443
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2444
|
-
background-color: color-mix(in oklab, var(--boring-background) 95%, transparent);
|
|
2445
|
-
}
|
|
2446
|
-
}
|
|
2447
3628
|
.bg-black\/50 {
|
|
2448
3629
|
background-color: color-mix(in srgb, #000 50%, transparent);
|
|
2449
3630
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2462,12 +3643,6 @@
|
|
|
2462
3643
|
.bg-card {
|
|
2463
3644
|
background-color: var(--boring-card);
|
|
2464
3645
|
}
|
|
2465
|
-
.bg-card\/60 {
|
|
2466
|
-
background-color: var(--boring-card);
|
|
2467
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2468
|
-
background-color: color-mix(in oklab, var(--boring-card) 60%, transparent);
|
|
2469
|
-
}
|
|
2470
|
-
}
|
|
2471
3646
|
.bg-current {
|
|
2472
3647
|
background-color: currentcolor;
|
|
2473
3648
|
}
|
|
@@ -2489,30 +3664,12 @@
|
|
|
2489
3664
|
.bg-foreground {
|
|
2490
3665
|
background-color: var(--boring-foreground);
|
|
2491
3666
|
}
|
|
2492
|
-
.bg-foreground\/5 {
|
|
2493
|
-
background-color: var(--boring-foreground);
|
|
2494
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2495
|
-
background-color: color-mix(in oklab, var(--boring-foreground) 5%, transparent);
|
|
2496
|
-
}
|
|
2497
|
-
}
|
|
2498
3667
|
.bg-foreground\/10 {
|
|
2499
3668
|
background-color: var(--boring-foreground);
|
|
2500
3669
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2501
3670
|
background-color: color-mix(in oklab, var(--boring-foreground) 10%, transparent);
|
|
2502
3671
|
}
|
|
2503
3672
|
}
|
|
2504
|
-
.bg-foreground\/35 {
|
|
2505
|
-
background-color: var(--boring-foreground);
|
|
2506
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2507
|
-
background-color: color-mix(in oklab, var(--boring-foreground) 35%, transparent);
|
|
2508
|
-
}
|
|
2509
|
-
}
|
|
2510
|
-
.bg-foreground\/\[0\.06\] {
|
|
2511
|
-
background-color: var(--boring-foreground);
|
|
2512
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2513
|
-
background-color: color-mix(in oklab, var(--boring-foreground) 6%, transparent);
|
|
2514
|
-
}
|
|
2515
|
-
}
|
|
2516
3673
|
.bg-input {
|
|
2517
3674
|
background-color: var(--boring-input);
|
|
2518
3675
|
}
|
|
@@ -2531,30 +3688,12 @@
|
|
|
2531
3688
|
background-color: color-mix(in oklab, var(--boring-muted) 20%, transparent);
|
|
2532
3689
|
}
|
|
2533
3690
|
}
|
|
2534
|
-
.bg-muted\/30 {
|
|
2535
|
-
background-color: var(--boring-muted);
|
|
2536
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2537
|
-
background-color: color-mix(in oklab, var(--boring-muted) 30%, transparent);
|
|
2538
|
-
}
|
|
2539
|
-
}
|
|
2540
|
-
.bg-muted\/40 {
|
|
2541
|
-
background-color: var(--boring-muted);
|
|
2542
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2543
|
-
background-color: color-mix(in oklab, var(--boring-muted) 40%, transparent);
|
|
2544
|
-
}
|
|
2545
|
-
}
|
|
2546
3691
|
.bg-muted\/50 {
|
|
2547
3692
|
background-color: var(--boring-muted);
|
|
2548
3693
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2549
3694
|
background-color: color-mix(in oklab, var(--boring-muted) 50%, transparent);
|
|
2550
3695
|
}
|
|
2551
3696
|
}
|
|
2552
|
-
.bg-muted\/60 {
|
|
2553
|
-
background-color: var(--boring-muted);
|
|
2554
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2555
|
-
background-color: color-mix(in oklab, var(--boring-muted) 60%, transparent);
|
|
2556
|
-
}
|
|
2557
|
-
}
|
|
2558
3697
|
.bg-popover {
|
|
2559
3698
|
background-color: var(--boring-popover);
|
|
2560
3699
|
}
|
|
@@ -2567,15 +3706,9 @@
|
|
|
2567
3706
|
.bg-transparent {
|
|
2568
3707
|
background-color: transparent;
|
|
2569
3708
|
}
|
|
2570
|
-
.bg-white {
|
|
2571
|
-
background-color: var(--color-white);
|
|
2572
|
-
}
|
|
2573
3709
|
.fill-foreground {
|
|
2574
3710
|
fill: var(--boring-foreground);
|
|
2575
3711
|
}
|
|
2576
|
-
.object-contain {
|
|
2577
|
-
object-fit: contain;
|
|
2578
|
-
}
|
|
2579
3712
|
.p-0 {
|
|
2580
3713
|
padding: calc(var(--spacing) * 0);
|
|
2581
3714
|
}
|
|
@@ -2606,9 +3739,6 @@
|
|
|
2606
3739
|
.p-px {
|
|
2607
3740
|
padding: 1px;
|
|
2608
3741
|
}
|
|
2609
|
-
.px-0 {
|
|
2610
|
-
padding-inline: calc(var(--spacing) * 0);
|
|
2611
|
-
}
|
|
2612
3742
|
.px-1 {
|
|
2613
3743
|
padding-inline: calc(var(--spacing) * 1);
|
|
2614
3744
|
}
|
|
@@ -2630,15 +3760,6 @@
|
|
|
2630
3760
|
.px-6 {
|
|
2631
3761
|
padding-inline: calc(var(--spacing) * 6);
|
|
2632
3762
|
}
|
|
2633
|
-
.px-7 {
|
|
2634
|
-
padding-inline: calc(var(--spacing) * 7);
|
|
2635
|
-
}
|
|
2636
|
-
.px-8 {
|
|
2637
|
-
padding-inline: calc(var(--spacing) * 8);
|
|
2638
|
-
}
|
|
2639
|
-
.py-0 {
|
|
2640
|
-
padding-block: calc(var(--spacing) * 0);
|
|
2641
|
-
}
|
|
2642
3763
|
.py-0\.5 {
|
|
2643
3764
|
padding-block: calc(var(--spacing) * 0.5);
|
|
2644
3765
|
}
|
|
@@ -2660,78 +3781,39 @@
|
|
|
2660
3781
|
.py-6 {
|
|
2661
3782
|
padding-block: calc(var(--spacing) * 6);
|
|
2662
3783
|
}
|
|
2663
|
-
.py-8 {
|
|
2664
|
-
padding-block: calc(var(--spacing) * 8);
|
|
2665
|
-
}
|
|
2666
|
-
.py-10 {
|
|
2667
|
-
padding-block: calc(var(--spacing) * 10);
|
|
2668
|
-
}
|
|
2669
|
-
.pt-1 {
|
|
2670
|
-
padding-top: calc(var(--spacing) * 1);
|
|
2671
|
-
}
|
|
2672
3784
|
.pt-2 {
|
|
2673
3785
|
padding-top: calc(var(--spacing) * 2);
|
|
2674
3786
|
}
|
|
2675
3787
|
.pt-3 {
|
|
2676
3788
|
padding-top: calc(var(--spacing) * 3);
|
|
2677
3789
|
}
|
|
2678
|
-
.pt-12 {
|
|
2679
|
-
padding-top: calc(var(--spacing) * 12);
|
|
2680
|
-
}
|
|
2681
3790
|
.pr-2 {
|
|
2682
3791
|
padding-right: calc(var(--spacing) * 2);
|
|
2683
3792
|
}
|
|
2684
3793
|
.pr-3 {
|
|
2685
3794
|
padding-right: calc(var(--spacing) * 3);
|
|
2686
3795
|
}
|
|
2687
|
-
.pr-7 {
|
|
2688
|
-
padding-right: calc(var(--spacing) * 7);
|
|
2689
|
-
}
|
|
2690
3796
|
.pr-8 {
|
|
2691
3797
|
padding-right: calc(var(--spacing) * 8);
|
|
2692
3798
|
}
|
|
2693
|
-
.pb-1 {
|
|
2694
|
-
padding-bottom: calc(var(--spacing) * 1);
|
|
2695
|
-
}
|
|
2696
3799
|
.pb-2 {
|
|
2697
3800
|
padding-bottom: calc(var(--spacing) * 2);
|
|
2698
3801
|
}
|
|
2699
3802
|
.pb-3 {
|
|
2700
3803
|
padding-bottom: calc(var(--spacing) * 3);
|
|
2701
3804
|
}
|
|
2702
|
-
.pb-10 {
|
|
2703
|
-
padding-bottom: calc(var(--spacing) * 10);
|
|
2704
|
-
}
|
|
2705
3805
|
.pl-2 {
|
|
2706
3806
|
padding-left: calc(var(--spacing) * 2);
|
|
2707
3807
|
}
|
|
2708
|
-
.pl-2\.5 {
|
|
2709
|
-
padding-left: calc(var(--spacing) * 2.5);
|
|
2710
|
-
}
|
|
2711
3808
|
.pl-3 {
|
|
2712
3809
|
padding-left: calc(var(--spacing) * 3);
|
|
2713
3810
|
}
|
|
2714
|
-
.pl-4 {
|
|
2715
|
-
padding-left: calc(var(--spacing) * 4);
|
|
2716
|
-
}
|
|
2717
|
-
.pl-7 {
|
|
2718
|
-
padding-left: calc(var(--spacing) * 7);
|
|
2719
|
-
}
|
|
2720
3811
|
.pl-8 {
|
|
2721
3812
|
padding-left: calc(var(--spacing) * 8);
|
|
2722
3813
|
}
|
|
2723
|
-
.pl-10 {
|
|
2724
|
-
padding-left: calc(var(--spacing) * 10);
|
|
2725
|
-
}
|
|
2726
3814
|
.text-center {
|
|
2727
3815
|
text-align: center;
|
|
2728
3816
|
}
|
|
2729
|
-
.text-left {
|
|
2730
|
-
text-align: left;
|
|
2731
|
-
}
|
|
2732
|
-
.align-baseline {
|
|
2733
|
-
vertical-align: baseline;
|
|
2734
|
-
}
|
|
2735
3817
|
.font-mono {
|
|
2736
3818
|
font-family: var(--boring-font-mono);
|
|
2737
3819
|
}
|
|
@@ -2754,12 +3836,6 @@
|
|
|
2754
3836
|
.text-\[0\.85em\] {
|
|
2755
3837
|
font-size: 0.85em;
|
|
2756
3838
|
}
|
|
2757
|
-
.text-\[9\.5px\] {
|
|
2758
|
-
font-size: 9.5px;
|
|
2759
|
-
}
|
|
2760
|
-
.text-\[10\.5px\] {
|
|
2761
|
-
font-size: 10.5px;
|
|
2762
|
-
}
|
|
2763
3839
|
.text-\[10px\] {
|
|
2764
3840
|
font-size: 10px;
|
|
2765
3841
|
}
|
|
@@ -2778,9 +3854,6 @@
|
|
|
2778
3854
|
.text-\[13px\] {
|
|
2779
3855
|
font-size: 13px;
|
|
2780
3856
|
}
|
|
2781
|
-
.text-\[15px\] {
|
|
2782
|
-
font-size: 15px;
|
|
2783
|
-
}
|
|
2784
3857
|
.text-\[20px\] {
|
|
2785
3858
|
font-size: 20px;
|
|
2786
3859
|
}
|
|
@@ -2792,38 +3865,18 @@
|
|
|
2792
3865
|
--tw-leading: calc(var(--spacing) * 5);
|
|
2793
3866
|
line-height: calc(var(--spacing) * 5);
|
|
2794
3867
|
}
|
|
2795
|
-
.leading-6 {
|
|
2796
|
-
--tw-leading: calc(var(--spacing) * 6);
|
|
2797
|
-
line-height: calc(var(--spacing) * 6);
|
|
2798
|
-
}
|
|
2799
3868
|
.leading-7 {
|
|
2800
3869
|
--tw-leading: calc(var(--spacing) * 7);
|
|
2801
3870
|
line-height: calc(var(--spacing) * 7);
|
|
2802
3871
|
}
|
|
2803
|
-
.leading-\[1\.2\] {
|
|
2804
|
-
--tw-leading: 1.2;
|
|
2805
|
-
line-height: 1.2;
|
|
2806
|
-
}
|
|
2807
|
-
.leading-\[1\.4\] {
|
|
2808
|
-
--tw-leading: 1.4;
|
|
2809
|
-
line-height: 1.4;
|
|
2810
|
-
}
|
|
2811
3872
|
.leading-none {
|
|
2812
3873
|
--tw-leading: 1;
|
|
2813
3874
|
line-height: 1;
|
|
2814
3875
|
}
|
|
2815
|
-
.leading-relaxed {
|
|
2816
|
-
--tw-leading: var(--leading-relaxed);
|
|
2817
|
-
line-height: var(--leading-relaxed);
|
|
2818
|
-
}
|
|
2819
3876
|
.leading-snug {
|
|
2820
3877
|
--tw-leading: var(--leading-snug);
|
|
2821
3878
|
line-height: var(--leading-snug);
|
|
2822
3879
|
}
|
|
2823
|
-
.leading-tight {
|
|
2824
|
-
--tw-leading: var(--leading-tight);
|
|
2825
|
-
line-height: var(--leading-tight);
|
|
2826
|
-
}
|
|
2827
3880
|
.font-medium {
|
|
2828
3881
|
--tw-font-weight: var(--font-weight-medium);
|
|
2829
3882
|
font-weight: var(--font-weight-medium);
|
|
@@ -2836,46 +3889,10 @@
|
|
|
2836
3889
|
--tw-font-weight: var(--font-weight-semibold);
|
|
2837
3890
|
font-weight: var(--font-weight-semibold);
|
|
2838
3891
|
}
|
|
2839
|
-
.tracking-\[-0\.01em\] {
|
|
2840
|
-
--tw-tracking: -0.01em;
|
|
2841
|
-
letter-spacing: -0.01em;
|
|
2842
|
-
}
|
|
2843
|
-
.tracking-\[-0\.02em\] {
|
|
2844
|
-
--tw-tracking: -0.02em;
|
|
2845
|
-
letter-spacing: -0.02em;
|
|
2846
|
-
}
|
|
2847
|
-
.tracking-\[0\.05em\] {
|
|
2848
|
-
--tw-tracking: 0.05em;
|
|
2849
|
-
letter-spacing: 0.05em;
|
|
2850
|
-
}
|
|
2851
|
-
.tracking-\[0\.06em\] {
|
|
2852
|
-
--tw-tracking: 0.06em;
|
|
2853
|
-
letter-spacing: 0.06em;
|
|
2854
|
-
}
|
|
2855
|
-
.tracking-\[0\.12em\] {
|
|
2856
|
-
--tw-tracking: 0.12em;
|
|
2857
|
-
letter-spacing: 0.12em;
|
|
2858
|
-
}
|
|
2859
|
-
.tracking-\[0\.14em\] {
|
|
2860
|
-
--tw-tracking: 0.14em;
|
|
2861
|
-
letter-spacing: 0.14em;
|
|
2862
|
-
}
|
|
2863
|
-
.tracking-\[0\.16em\] {
|
|
2864
|
-
--tw-tracking: 0.16em;
|
|
2865
|
-
letter-spacing: 0.16em;
|
|
2866
|
-
}
|
|
2867
3892
|
.tracking-tight {
|
|
2868
3893
|
--tw-tracking: var(--tracking-tight);
|
|
2869
3894
|
letter-spacing: var(--tracking-tight);
|
|
2870
3895
|
}
|
|
2871
|
-
.tracking-wide {
|
|
2872
|
-
--tw-tracking: var(--tracking-wide);
|
|
2873
|
-
letter-spacing: var(--tracking-wide);
|
|
2874
|
-
}
|
|
2875
|
-
.tracking-wider {
|
|
2876
|
-
--tw-tracking: var(--tracking-wider);
|
|
2877
|
-
letter-spacing: var(--tracking-wider);
|
|
2878
|
-
}
|
|
2879
3896
|
.tracking-widest {
|
|
2880
3897
|
--tw-tracking: var(--tracking-widest);
|
|
2881
3898
|
letter-spacing: var(--tracking-widest);
|
|
@@ -2883,18 +3900,9 @@
|
|
|
2883
3900
|
.text-balance {
|
|
2884
3901
|
text-wrap: balance;
|
|
2885
3902
|
}
|
|
2886
|
-
.text-ellipsis {
|
|
2887
|
-
text-overflow: ellipsis;
|
|
2888
|
-
}
|
|
2889
3903
|
.whitespace-nowrap {
|
|
2890
3904
|
white-space: nowrap;
|
|
2891
3905
|
}
|
|
2892
|
-
.whitespace-pre-wrap {
|
|
2893
|
-
white-space: pre-wrap;
|
|
2894
|
-
}
|
|
2895
|
-
.text-\[color\:var\(--accent\)\] {
|
|
2896
|
-
color: var(--accent);
|
|
2897
|
-
}
|
|
2898
3906
|
.text-\[color\:var\(--boring-success\,var\(--secondary-foreground\)\)\] {
|
|
2899
3907
|
color: var(--boring-success,var(--secondary-foreground));
|
|
2900
3908
|
}
|
|
@@ -2919,12 +3927,6 @@
|
|
|
2919
3927
|
.text-destructive-foreground {
|
|
2920
3928
|
color: var(--boring-destructive-foreground);
|
|
2921
3929
|
}
|
|
2922
|
-
.text-destructive\/70 {
|
|
2923
|
-
color: var(--boring-destructive);
|
|
2924
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2925
|
-
color: color-mix(in oklab, var(--boring-destructive) 70%, transparent);
|
|
2926
|
-
}
|
|
2927
|
-
}
|
|
2928
3930
|
.text-foreground {
|
|
2929
3931
|
color: var(--boring-foreground);
|
|
2930
3932
|
}
|
|
@@ -2934,43 +3936,13 @@
|
|
|
2934
3936
|
color: color-mix(in oklab, var(--boring-foreground) 60%, transparent);
|
|
2935
3937
|
}
|
|
2936
3938
|
}
|
|
2937
|
-
.text-foreground\/90 {
|
|
2938
|
-
color: var(--boring-foreground);
|
|
2939
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2940
|
-
color: color-mix(in oklab, var(--boring-foreground) 90%, transparent);
|
|
2941
|
-
}
|
|
2942
|
-
}
|
|
2943
3939
|
.text-muted-foreground {
|
|
2944
3940
|
color: var(--boring-muted-foreground);
|
|
2945
3941
|
}
|
|
2946
|
-
.text-muted-foreground\/
|
|
2947
|
-
color: var(--boring-muted-foreground);
|
|
2948
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2949
|
-
color: color-mix(in oklab, var(--boring-muted-foreground) 30%, transparent);
|
|
2950
|
-
}
|
|
2951
|
-
}
|
|
2952
|
-
.text-muted-foreground\/60 {
|
|
2953
|
-
color: var(--boring-muted-foreground);
|
|
2954
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2955
|
-
color: color-mix(in oklab, var(--boring-muted-foreground) 60%, transparent);
|
|
2956
|
-
}
|
|
2957
|
-
}
|
|
2958
|
-
.text-muted-foreground\/70 {
|
|
2959
|
-
color: var(--boring-muted-foreground);
|
|
2960
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2961
|
-
color: color-mix(in oklab, var(--boring-muted-foreground) 70%, transparent);
|
|
2962
|
-
}
|
|
2963
|
-
}
|
|
2964
|
-
.text-muted-foreground\/80 {
|
|
2965
|
-
color: var(--boring-muted-foreground);
|
|
2966
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2967
|
-
color: color-mix(in oklab, var(--boring-muted-foreground) 80%, transparent);
|
|
2968
|
-
}
|
|
2969
|
-
}
|
|
2970
|
-
.text-muted-foreground\/85 {
|
|
3942
|
+
.text-muted-foreground\/70 {
|
|
2971
3943
|
color: var(--boring-muted-foreground);
|
|
2972
3944
|
@supports (color: color-mix(in lab, red, red)) {
|
|
2973
|
-
color: color-mix(in oklab, var(--boring-muted-foreground)
|
|
3945
|
+
color: color-mix(in oklab, var(--boring-muted-foreground) 70%, transparent);
|
|
2974
3946
|
}
|
|
2975
3947
|
}
|
|
2976
3948
|
.text-popover-foreground {
|
|
@@ -2991,24 +3963,11 @@
|
|
|
2991
3963
|
.uppercase {
|
|
2992
3964
|
text-transform: uppercase;
|
|
2993
3965
|
}
|
|
2994
|
-
.italic {
|
|
2995
|
-
font-style: italic;
|
|
2996
|
-
}
|
|
2997
|
-
.tabular-nums {
|
|
2998
|
-
--tw-numeric-spacing: tabular-nums;
|
|
2999
|
-
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
3000
|
-
}
|
|
3001
|
-
.line-through {
|
|
3002
|
-
text-decoration-line: line-through;
|
|
3003
|
-
}
|
|
3004
|
-
.underline {
|
|
3005
|
-
text-decoration-line: underline;
|
|
3006
|
-
}
|
|
3007
3966
|
.underline-offset-4 {
|
|
3008
3967
|
text-underline-offset: 4px;
|
|
3009
3968
|
}
|
|
3010
|
-
.
|
|
3011
|
-
|
|
3969
|
+
.accent-primary {
|
|
3970
|
+
accent-color: var(--boring-primary);
|
|
3012
3971
|
}
|
|
3013
3972
|
.opacity-50 {
|
|
3014
3973
|
opacity: 50%;
|
|
@@ -3016,25 +3975,10 @@
|
|
|
3016
3975
|
.opacity-70 {
|
|
3017
3976
|
opacity: 70%;
|
|
3018
3977
|
}
|
|
3019
|
-
.opacity-100 {
|
|
3020
|
-
opacity: 100%;
|
|
3021
|
-
}
|
|
3022
|
-
.shadow {
|
|
3023
|
-
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
3024
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3025
|
-
}
|
|
3026
3978
|
.shadow-2xl {
|
|
3027
3979
|
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
|
|
3028
3980
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3029
3981
|
}
|
|
3030
|
-
.shadow-\[0_1px_2px_-1px_oklch\(0_0_0\/0\.08\)\,0_2px_8px_-4px_oklch\(0_0_0\/0\.10\)\,inset_0_0_0_1px_oklch\(from_var\(--border\)_l_c_h\/0\.7\)\] {
|
|
3031
|
-
--tw-shadow: 0 1px 2px -1px var(--tw-shadow-color, oklch(0 0 0/0.08)), 0 2px 8px -4px var(--tw-shadow-color, oklch(0 0 0/0.10)), inset 0 0 0 1px var(--tw-shadow-color, oklch(from var(--border) l c h/0.7));
|
|
3032
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3033
|
-
}
|
|
3034
|
-
.shadow-\[0_1px_2px_-1px_oklch\(0_0_0\/0\.08\)\,0_12px_32px_-22px_oklch\(0_0_0\/0\.28\)\] {
|
|
3035
|
-
--tw-shadow: 0 1px 2px -1px var(--tw-shadow-color, oklch(0 0 0/0.08)), 0 12px 32px -22px var(--tw-shadow-color, oklch(0 0 0/0.28));
|
|
3036
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3037
|
-
}
|
|
3038
3982
|
.shadow-lg {
|
|
3039
3983
|
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
3040
3984
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -3051,29 +3995,10 @@
|
|
|
3051
3995
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
3052
3996
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3053
3997
|
}
|
|
3054
|
-
.shadow-xl {
|
|
3055
|
-
--tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
3056
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3057
|
-
}
|
|
3058
3998
|
.shadow-xs {
|
|
3059
3999
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
3060
4000
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3061
4001
|
}
|
|
3062
|
-
.ring {
|
|
3063
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
3064
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3065
|
-
}
|
|
3066
|
-
.ring-2 {
|
|
3067
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
3068
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3069
|
-
}
|
|
3070
|
-
.ring-\[color\:var\(--accent\)\] {
|
|
3071
|
-
--tw-ring-color: var(--accent);
|
|
3072
|
-
}
|
|
3073
|
-
.ring-offset-1 {
|
|
3074
|
-
--tw-ring-offset-width: 1px;
|
|
3075
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3076
|
-
}
|
|
3077
4002
|
.ring-offset-background {
|
|
3078
4003
|
--tw-ring-offset-color: var(--boring-background);
|
|
3079
4004
|
}
|
|
@@ -3089,21 +4014,6 @@
|
|
|
3089
4014
|
outline-style: var(--tw-outline-style);
|
|
3090
4015
|
outline-width: 1px;
|
|
3091
4016
|
}
|
|
3092
|
-
.outline-1 {
|
|
3093
|
-
outline-style: var(--tw-outline-style);
|
|
3094
|
-
outline-width: 1px;
|
|
3095
|
-
}
|
|
3096
|
-
.outline-border {
|
|
3097
|
-
outline-color: var(--boring-border);
|
|
3098
|
-
}
|
|
3099
|
-
.filter {
|
|
3100
|
-
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,);
|
|
3101
|
-
}
|
|
3102
|
-
.backdrop-blur-md {
|
|
3103
|
-
--tw-backdrop-blur: blur(var(--blur-md));
|
|
3104
|
-
-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,);
|
|
3105
|
-
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,);
|
|
3106
|
-
}
|
|
3107
4017
|
.transition {
|
|
3108
4018
|
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;
|
|
3109
4019
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -3114,11 +4024,6 @@
|
|
|
3114
4024
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
3115
4025
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
3116
4026
|
}
|
|
3117
|
-
.transition-\[width\,min-width\,max-width\] {
|
|
3118
|
-
transition-property: width,min-width,max-width;
|
|
3119
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
3120
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
3121
|
-
}
|
|
3122
4027
|
.transition-all {
|
|
3123
4028
|
transition-property: all;
|
|
3124
4029
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -3147,10 +4052,6 @@
|
|
|
3147
4052
|
.transition-none {
|
|
3148
4053
|
transition-property: none;
|
|
3149
4054
|
}
|
|
3150
|
-
.duration-120 {
|
|
3151
|
-
--tw-duration: 120ms;
|
|
3152
|
-
transition-duration: 120ms;
|
|
3153
|
-
}
|
|
3154
4055
|
.duration-150 {
|
|
3155
4056
|
--tw-duration: 150ms;
|
|
3156
4057
|
transition-duration: 150ms;
|
|
@@ -3159,26 +4060,10 @@
|
|
|
3159
4060
|
--tw-duration: 200ms;
|
|
3160
4061
|
transition-duration: 200ms;
|
|
3161
4062
|
}
|
|
3162
|
-
.duration-\[200ms\] {
|
|
3163
|
-
--tw-duration: 200ms;
|
|
3164
|
-
transition-duration: 200ms;
|
|
3165
|
-
}
|
|
3166
|
-
.duration-\[280ms\] {
|
|
3167
|
-
--tw-duration: 280ms;
|
|
3168
|
-
transition-duration: 280ms;
|
|
3169
|
-
}
|
|
3170
|
-
.ease-\[cubic-bezier\(0\.22\,1\,0\.36\,1\)\] {
|
|
3171
|
-
--tw-ease: cubic-bezier(0.22,1,0.36,1);
|
|
3172
|
-
transition-timing-function: cubic-bezier(0.22,1,0.36,1);
|
|
3173
|
-
}
|
|
3174
4063
|
.ease-in-out {
|
|
3175
4064
|
--tw-ease: var(--ease-in-out);
|
|
3176
4065
|
transition-timing-function: var(--ease-in-out);
|
|
3177
4066
|
}
|
|
3178
|
-
.ease-out {
|
|
3179
|
-
--tw-ease: var(--ease-out);
|
|
3180
|
-
transition-timing-function: var(--ease-out);
|
|
3181
|
-
}
|
|
3182
4067
|
.outline-none {
|
|
3183
4068
|
--tw-outline-style: none;
|
|
3184
4069
|
outline-style: none;
|
|
@@ -3187,27 +4072,6 @@
|
|
|
3187
4072
|
-webkit-user-select: none;
|
|
3188
4073
|
user-select: none;
|
|
3189
4074
|
}
|
|
3190
|
-
.group-hover\:text-foreground {
|
|
3191
|
-
&:is(:where(.group):hover *) {
|
|
3192
|
-
@media (hover: hover) {
|
|
3193
|
-
color: var(--boring-foreground);
|
|
3194
|
-
}
|
|
3195
|
-
}
|
|
3196
|
-
}
|
|
3197
|
-
.group-hover\:text-muted-foreground {
|
|
3198
|
-
&:is(:where(.group):hover *) {
|
|
3199
|
-
@media (hover: hover) {
|
|
3200
|
-
color: var(--boring-muted-foreground);
|
|
3201
|
-
}
|
|
3202
|
-
}
|
|
3203
|
-
}
|
|
3204
|
-
.group-hover\:opacity-100 {
|
|
3205
|
-
&:is(:where(.group):hover *) {
|
|
3206
|
-
@media (hover: hover) {
|
|
3207
|
-
opacity: 100%;
|
|
3208
|
-
}
|
|
3209
|
-
}
|
|
3210
|
-
}
|
|
3211
4075
|
.group-has-\[\>input\]\/input-group\:pt-2\.5 {
|
|
3212
4076
|
&:is(:where(.group\/input-group):has(>input) *) {
|
|
3213
4077
|
padding-top: calc(var(--spacing) * 2.5);
|
|
@@ -3218,11 +4082,6 @@
|
|
|
3218
4082
|
padding-bottom: calc(var(--spacing) * 2.5);
|
|
3219
4083
|
}
|
|
3220
4084
|
}
|
|
3221
|
-
.group-aria-selected\:text-\[color\:var\(--accent\)\] {
|
|
3222
|
-
&:is(:where(.group)[aria-selected="true"] *) {
|
|
3223
|
-
color: var(--accent);
|
|
3224
|
-
}
|
|
3225
|
-
}
|
|
3226
4085
|
.group-data-\[disabled\=true\]\:pointer-events-none {
|
|
3227
4086
|
&:is(:where(.group)[data-disabled="true"] *) {
|
|
3228
4087
|
pointer-events: none;
|
|
@@ -3238,11 +4097,6 @@
|
|
|
3238
4097
|
opacity: 50%;
|
|
3239
4098
|
}
|
|
3240
4099
|
}
|
|
3241
|
-
.group-data-\[focused\=true\]\:opacity-100 {
|
|
3242
|
-
&:is(:where(.group)[data-focused="true"] *) {
|
|
3243
|
-
opacity: 100%;
|
|
3244
|
-
}
|
|
3245
|
-
}
|
|
3246
4100
|
.group-data-\[orientation\=horizontal\]\/tabs\:h-9 {
|
|
3247
4101
|
&:is(:where(.group\/tabs)[data-orientation="horizontal"] *) {
|
|
3248
4102
|
height: calc(var(--spacing) * 9);
|
|
@@ -3357,14 +4211,6 @@
|
|
|
3357
4211
|
color: var(--boring-muted-foreground);
|
|
3358
4212
|
}
|
|
3359
4213
|
}
|
|
3360
|
-
.placeholder\:text-muted-foreground\/70 {
|
|
3361
|
-
&::placeholder {
|
|
3362
|
-
color: var(--boring-muted-foreground);
|
|
3363
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3364
|
-
color: color-mix(in oklab, var(--boring-muted-foreground) 70%, transparent);
|
|
3365
|
-
}
|
|
3366
|
-
}
|
|
3367
|
-
}
|
|
3368
4214
|
.after\:absolute {
|
|
3369
4215
|
&::after {
|
|
3370
4216
|
content: var(--tw-content);
|
|
@@ -3439,34 +4285,6 @@
|
|
|
3439
4285
|
}
|
|
3440
4286
|
}
|
|
3441
4287
|
}
|
|
3442
|
-
.hover\:-translate-y-\[calc\(50\%\+1px\)\] {
|
|
3443
|
-
&:hover {
|
|
3444
|
-
@media (hover: hover) {
|
|
3445
|
-
--tw-translate-y: calc(calc(50% + 1px) * -1);
|
|
3446
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3447
|
-
}
|
|
3448
|
-
}
|
|
3449
|
-
}
|
|
3450
|
-
.hover\:border-\[color\:var\(--accent\)\]\/40 {
|
|
3451
|
-
&:hover {
|
|
3452
|
-
@media (hover: hover) {
|
|
3453
|
-
border-color: var(--accent);
|
|
3454
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3455
|
-
border-color: color-mix(in oklab, var(--accent) 40%, transparent);
|
|
3456
|
-
}
|
|
3457
|
-
}
|
|
3458
|
-
}
|
|
3459
|
-
}
|
|
3460
|
-
.hover\:bg-accent\/50 {
|
|
3461
|
-
&:hover {
|
|
3462
|
-
@media (hover: hover) {
|
|
3463
|
-
background-color: var(--boring-accent);
|
|
3464
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3465
|
-
background-color: color-mix(in oklab, var(--boring-accent) 50%, transparent);
|
|
3466
|
-
}
|
|
3467
|
-
}
|
|
3468
|
-
}
|
|
3469
|
-
}
|
|
3470
4288
|
.hover\:bg-background {
|
|
3471
4289
|
&:hover {
|
|
3472
4290
|
@media (hover: hover) {
|
|
@@ -3484,16 +4302,6 @@
|
|
|
3484
4302
|
}
|
|
3485
4303
|
}
|
|
3486
4304
|
}
|
|
3487
|
-
.hover\:bg-destructive\/10 {
|
|
3488
|
-
&:hover {
|
|
3489
|
-
@media (hover: hover) {
|
|
3490
|
-
background-color: var(--boring-destructive);
|
|
3491
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3492
|
-
background-color: color-mix(in oklab, var(--boring-destructive) 10%, transparent);
|
|
3493
|
-
}
|
|
3494
|
-
}
|
|
3495
|
-
}
|
|
3496
|
-
}
|
|
3497
4305
|
.hover\:bg-destructive\/90 {
|
|
3498
4306
|
&:hover {
|
|
3499
4307
|
@media (hover: hover) {
|
|
@@ -3504,33 +4312,16 @@
|
|
|
3504
4312
|
}
|
|
3505
4313
|
}
|
|
3506
4314
|
}
|
|
3507
|
-
.hover\:bg-
|
|
3508
|
-
&:hover {
|
|
3509
|
-
@media (hover: hover) {
|
|
3510
|
-
background-color: var(--boring-foreground);
|
|
3511
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3512
|
-
background-color: color-mix(in oklab, var(--boring-foreground) 5%, transparent);
|
|
3513
|
-
}
|
|
3514
|
-
}
|
|
3515
|
-
}
|
|
3516
|
-
}
|
|
3517
|
-
.hover\:bg-foreground\/\[0\.04\] {
|
|
4315
|
+
.hover\:bg-muted\/30 {
|
|
3518
4316
|
&:hover {
|
|
3519
4317
|
@media (hover: hover) {
|
|
3520
|
-
background-color: var(--boring-
|
|
4318
|
+
background-color: var(--boring-muted);
|
|
3521
4319
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3522
|
-
background-color: color-mix(in oklab, var(--boring-
|
|
4320
|
+
background-color: color-mix(in oklab, var(--boring-muted) 30%, transparent);
|
|
3523
4321
|
}
|
|
3524
4322
|
}
|
|
3525
4323
|
}
|
|
3526
4324
|
}
|
|
3527
|
-
.hover\:bg-muted {
|
|
3528
|
-
&:hover {
|
|
3529
|
-
@media (hover: hover) {
|
|
3530
|
-
background-color: var(--boring-muted);
|
|
3531
|
-
}
|
|
3532
|
-
}
|
|
3533
|
-
}
|
|
3534
4325
|
.hover\:bg-muted\/40 {
|
|
3535
4326
|
&:hover {
|
|
3536
4327
|
@media (hover: hover) {
|
|
@@ -3551,16 +4342,6 @@
|
|
|
3551
4342
|
}
|
|
3552
4343
|
}
|
|
3553
4344
|
}
|
|
3554
|
-
.hover\:bg-primary\/40 {
|
|
3555
|
-
&:hover {
|
|
3556
|
-
@media (hover: hover) {
|
|
3557
|
-
background-color: var(--boring-primary);
|
|
3558
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3559
|
-
background-color: color-mix(in oklab, var(--boring-primary) 40%, transparent);
|
|
3560
|
-
}
|
|
3561
|
-
}
|
|
3562
|
-
}
|
|
3563
|
-
}
|
|
3564
4345
|
.hover\:bg-primary\/90 {
|
|
3565
4346
|
&:hover {
|
|
3566
4347
|
@media (hover: hover) {
|
|
@@ -3581,27 +4362,6 @@
|
|
|
3581
4362
|
}
|
|
3582
4363
|
}
|
|
3583
4364
|
}
|
|
3584
|
-
.hover\:bg-transparent {
|
|
3585
|
-
&:hover {
|
|
3586
|
-
@media (hover: hover) {
|
|
3587
|
-
background-color: transparent;
|
|
3588
|
-
}
|
|
3589
|
-
}
|
|
3590
|
-
}
|
|
3591
|
-
.hover\:text-\[color\:var\(--accent\)\] {
|
|
3592
|
-
&:hover {
|
|
3593
|
-
@media (hover: hover) {
|
|
3594
|
-
color: var(--accent);
|
|
3595
|
-
}
|
|
3596
|
-
}
|
|
3597
|
-
}
|
|
3598
|
-
.hover\:text-destructive {
|
|
3599
|
-
&:hover {
|
|
3600
|
-
@media (hover: hover) {
|
|
3601
|
-
color: var(--boring-destructive);
|
|
3602
|
-
}
|
|
3603
|
-
}
|
|
3604
|
-
}
|
|
3605
4365
|
.hover\:text-foreground {
|
|
3606
4366
|
&:hover {
|
|
3607
4367
|
@media (hover: hover) {
|
|
@@ -3623,21 +4383,6 @@
|
|
|
3623
4383
|
}
|
|
3624
4384
|
}
|
|
3625
4385
|
}
|
|
3626
|
-
.hover\:shadow-\[0_2px_4px_-1px_oklch\(0_0_0\/0\.08\)\,0_4px_12px_-4px_oklch\(0_0_0\/0\.10\)\,inset_0_0_0_1px_oklch\(from_var\(--border\)_l_c_h\/0\.9\)\] {
|
|
3627
|
-
&:hover {
|
|
3628
|
-
@media (hover: hover) {
|
|
3629
|
-
--tw-shadow: 0 2px 4px -1px var(--tw-shadow-color, oklch(0 0 0/0.08)), 0 4px 12px -4px var(--tw-shadow-color, oklch(0 0 0/0.10)), inset 0 0 0 1px var(--tw-shadow-color, oklch(from var(--border) l c h/0.9));
|
|
3630
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3631
|
-
}
|
|
3632
|
-
}
|
|
3633
|
-
}
|
|
3634
|
-
.hover\:\[transition-delay\:150ms\] {
|
|
3635
|
-
&:hover {
|
|
3636
|
-
@media (hover: hover) {
|
|
3637
|
-
transition-delay: 150ms;
|
|
3638
|
-
}
|
|
3639
|
-
}
|
|
3640
|
-
}
|
|
3641
4386
|
.focus\:bg-accent {
|
|
3642
4387
|
&:focus {
|
|
3643
4388
|
background-color: var(--boring-accent);
|
|
@@ -3660,53 +4405,24 @@
|
|
|
3660
4405
|
}
|
|
3661
4406
|
}
|
|
3662
4407
|
.focus\:ring-offset-2 {
|
|
3663
|
-
&:focus {
|
|
3664
|
-
--tw-ring-offset-width: 2px;
|
|
3665
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3666
|
-
}
|
|
3667
|
-
}
|
|
3668
|
-
.focus\:outline-hidden {
|
|
3669
|
-
&:focus {
|
|
3670
|
-
--tw-outline-style: none;
|
|
3671
|
-
outline-style: none;
|
|
3672
|
-
@media (forced-colors: active) {
|
|
3673
|
-
outline: 2px solid transparent;
|
|
3674
|
-
outline-offset: 2px;
|
|
3675
|
-
}
|
|
3676
|
-
}
|
|
3677
|
-
}
|
|
3678
|
-
.focus\:outline-none {
|
|
3679
|
-
&:focus {
|
|
3680
|
-
--tw-outline-style: none;
|
|
3681
|
-
outline-style: none;
|
|
3682
|
-
}
|
|
3683
|
-
}
|
|
3684
|
-
.focus-visible\:border-ring {
|
|
3685
|
-
&:focus-visible {
|
|
3686
|
-
border-color: var(--boring-ring);
|
|
3687
|
-
}
|
|
3688
|
-
}
|
|
3689
|
-
.focus-visible\:bg-background {
|
|
3690
|
-
&:focus-visible {
|
|
3691
|
-
background-color: var(--boring-background);
|
|
4408
|
+
&:focus {
|
|
4409
|
+
--tw-ring-offset-width: 2px;
|
|
4410
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3692
4411
|
}
|
|
3693
4412
|
}
|
|
3694
|
-
.focus
|
|
3695
|
-
&:focus
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
4413
|
+
.focus\:outline-hidden {
|
|
4414
|
+
&:focus {
|
|
4415
|
+
--tw-outline-style: none;
|
|
4416
|
+
outline-style: none;
|
|
4417
|
+
@media (forced-colors: active) {
|
|
4418
|
+
outline: 2px solid transparent;
|
|
4419
|
+
outline-offset: 2px;
|
|
3699
4420
|
}
|
|
3700
4421
|
}
|
|
3701
4422
|
}
|
|
3702
|
-
.focus-visible\:
|
|
3703
|
-
&:focus-visible {
|
|
3704
|
-
color: var(--boring-foreground);
|
|
3705
|
-
}
|
|
3706
|
-
}
|
|
3707
|
-
.focus-visible\:opacity-100 {
|
|
4423
|
+
.focus-visible\:border-ring {
|
|
3708
4424
|
&:focus-visible {
|
|
3709
|
-
|
|
4425
|
+
border-color: var(--boring-ring);
|
|
3710
4426
|
}
|
|
3711
4427
|
}
|
|
3712
4428
|
.focus-visible\:ring-0 {
|
|
@@ -3715,12 +4431,6 @@
|
|
|
3715
4431
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3716
4432
|
}
|
|
3717
4433
|
}
|
|
3718
|
-
.focus-visible\:ring-1 {
|
|
3719
|
-
&:focus-visible {
|
|
3720
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
3721
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3722
|
-
}
|
|
3723
|
-
}
|
|
3724
4434
|
.focus-visible\:ring-2 {
|
|
3725
4435
|
&:focus-visible {
|
|
3726
4436
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
@@ -3733,11 +4443,6 @@
|
|
|
3733
4443
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3734
4444
|
}
|
|
3735
4445
|
}
|
|
3736
|
-
.focus-visible\:ring-\[color\:var\(--accent\)\] {
|
|
3737
|
-
&:focus-visible {
|
|
3738
|
-
--tw-ring-color: var(--accent);
|
|
3739
|
-
}
|
|
3740
|
-
}
|
|
3741
4446
|
.focus-visible\:ring-destructive\/20 {
|
|
3742
4447
|
&:focus-visible {
|
|
3743
4448
|
--tw-ring-color: var(--boring-destructive);
|
|
@@ -3746,11 +4451,6 @@
|
|
|
3746
4451
|
}
|
|
3747
4452
|
}
|
|
3748
4453
|
}
|
|
3749
|
-
.focus-visible\:ring-ring {
|
|
3750
|
-
&:focus-visible {
|
|
3751
|
-
--tw-ring-color: var(--boring-ring);
|
|
3752
|
-
}
|
|
3753
|
-
}
|
|
3754
4454
|
.focus-visible\:ring-ring\/40 {
|
|
3755
4455
|
&:focus-visible {
|
|
3756
4456
|
--tw-ring-color: var(--boring-ring);
|
|
@@ -3767,12 +4467,6 @@
|
|
|
3767
4467
|
}
|
|
3768
4468
|
}
|
|
3769
4469
|
}
|
|
3770
|
-
.focus-visible\:ring-offset-1 {
|
|
3771
|
-
&:focus-visible {
|
|
3772
|
-
--tw-ring-offset-width: 1px;
|
|
3773
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3774
|
-
}
|
|
3775
|
-
}
|
|
3776
4470
|
.focus-visible\:outline-1 {
|
|
3777
4471
|
&:focus-visible {
|
|
3778
4472
|
outline-style: var(--tw-outline-style);
|
|
@@ -3790,14 +4484,6 @@
|
|
|
3790
4484
|
outline-style: none;
|
|
3791
4485
|
}
|
|
3792
4486
|
}
|
|
3793
|
-
.active\:bg-muted-foreground\/30 {
|
|
3794
|
-
&:active {
|
|
3795
|
-
background-color: var(--boring-muted-foreground);
|
|
3796
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3797
|
-
background-color: color-mix(in oklab, var(--boring-muted-foreground) 30%, transparent);
|
|
3798
|
-
}
|
|
3799
|
-
}
|
|
3800
|
-
}
|
|
3801
4487
|
.disabled\:pointer-events-none {
|
|
3802
4488
|
&:disabled {
|
|
3803
4489
|
pointer-events: none;
|
|
@@ -3813,11 +4499,6 @@
|
|
|
3813
4499
|
opacity: 50%;
|
|
3814
4500
|
}
|
|
3815
4501
|
}
|
|
3816
|
-
.disabled\:opacity-60 {
|
|
3817
|
-
&:disabled {
|
|
3818
|
-
opacity: 60%;
|
|
3819
|
-
}
|
|
3820
|
-
}
|
|
3821
4502
|
.has-data-\[slot\=alert-dialog-media\]\:grid-rows-\[auto_auto_1fr\] {
|
|
3822
4503
|
&:has(*[data-slot="alert-dialog-media"]) {
|
|
3823
4504
|
grid-template-rows: auto auto 1fr;
|
|
@@ -3833,6 +4514,46 @@
|
|
|
3833
4514
|
grid-template-columns: 1fr auto;
|
|
3834
4515
|
}
|
|
3835
4516
|
}
|
|
4517
|
+
.has-\[\:checked\]\:border-ring\/60 {
|
|
4518
|
+
&:has(*:is(:checked)) {
|
|
4519
|
+
border-color: var(--boring-ring);
|
|
4520
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4521
|
+
border-color: color-mix(in oklab, var(--boring-ring) 60%, transparent);
|
|
4522
|
+
}
|
|
4523
|
+
}
|
|
4524
|
+
}
|
|
4525
|
+
.has-\[\:checked\]\:bg-muted\/40 {
|
|
4526
|
+
&:has(*:is(:checked)) {
|
|
4527
|
+
background-color: var(--boring-muted);
|
|
4528
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4529
|
+
background-color: color-mix(in oklab, var(--boring-muted) 40%, transparent);
|
|
4530
|
+
}
|
|
4531
|
+
}
|
|
4532
|
+
}
|
|
4533
|
+
.has-\[\:disabled\]\:cursor-not-allowed {
|
|
4534
|
+
&:has(*:is(:disabled)) {
|
|
4535
|
+
cursor: not-allowed;
|
|
4536
|
+
}
|
|
4537
|
+
}
|
|
4538
|
+
.has-\[\:disabled\]\:opacity-50 {
|
|
4539
|
+
&:has(*:is(:disabled)) {
|
|
4540
|
+
opacity: 50%;
|
|
4541
|
+
}
|
|
4542
|
+
}
|
|
4543
|
+
.has-\[\:focus-visible\]\:ring-\[3px\] {
|
|
4544
|
+
&:has(*:is(:focus-visible)) {
|
|
4545
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
4546
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4547
|
+
}
|
|
4548
|
+
}
|
|
4549
|
+
.has-\[\:focus-visible\]\:ring-ring\/50 {
|
|
4550
|
+
&:has(*:is(:focus-visible)) {
|
|
4551
|
+
--tw-ring-color: var(--boring-ring);
|
|
4552
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4553
|
+
--tw-ring-color: color-mix(in oklab, var(--boring-ring) 50%, transparent);
|
|
4554
|
+
}
|
|
4555
|
+
}
|
|
4556
|
+
}
|
|
3836
4557
|
.has-\[\[data-slot\=input-group-control\]\:focus-visible\]\:ring-1 {
|
|
3837
4558
|
&:has(*:is([data-slot=input-group-control]:focus-visible)) {
|
|
3838
4559
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
@@ -3950,16 +4671,6 @@
|
|
|
3950
4671
|
}
|
|
3951
4672
|
}
|
|
3952
4673
|
}
|
|
3953
|
-
.aria-selected\:bg-\[color\:oklch\(from_var\(--accent\)_l_c_h\/0\.10\)\] {
|
|
3954
|
-
&[aria-selected="true"] {
|
|
3955
|
-
background-color: oklch(from var(--accent) l c h/0.10);
|
|
3956
|
-
}
|
|
3957
|
-
}
|
|
3958
|
-
.aria-selected\:text-foreground {
|
|
3959
|
-
&[aria-selected="true"] {
|
|
3960
|
-
color: var(--boring-foreground);
|
|
3961
|
-
}
|
|
3962
|
-
}
|
|
3963
4674
|
.data-\[disabled\]\:pointer-events-none {
|
|
3964
4675
|
&[data-disabled] {
|
|
3965
4676
|
pointer-events: none;
|
|
@@ -4112,11 +4823,6 @@
|
|
|
4112
4823
|
background-color: var(--boring-background);
|
|
4113
4824
|
}
|
|
4114
4825
|
}
|
|
4115
|
-
.data-\[state\=active\]\:text-\[color\:var\(--accent\)\] {
|
|
4116
|
-
&[data-state="active"] {
|
|
4117
|
-
color: var(--accent);
|
|
4118
|
-
}
|
|
4119
|
-
}
|
|
4120
4826
|
.data-\[state\=active\]\:text-foreground {
|
|
4121
4827
|
&[data-state="active"] {
|
|
4122
4828
|
color: var(--boring-foreground);
|
|
@@ -4145,14 +4851,6 @@
|
|
|
4145
4851
|
}
|
|
4146
4852
|
}
|
|
4147
4853
|
}
|
|
4148
|
-
.data-\[state\=active\]\:after\:bg-\[color\:var\(--accent\)\] {
|
|
4149
|
-
&[data-state="active"] {
|
|
4150
|
-
&::after {
|
|
4151
|
-
content: var(--tw-content);
|
|
4152
|
-
background-color: var(--accent);
|
|
4153
|
-
}
|
|
4154
|
-
}
|
|
4155
|
-
}
|
|
4156
4854
|
.group-data-\[variant\=line\]\/tabs-list\:data-\[state\=active\]\:after\:opacity-100 {
|
|
4157
4855
|
&:is(:where(.group\/tabs-list)[data-variant="line"] *) {
|
|
4158
4856
|
&[data-state="active"] {
|
|
@@ -4237,11 +4935,6 @@
|
|
|
4237
4935
|
border-radius: 0;
|
|
4238
4936
|
}
|
|
4239
4937
|
}
|
|
4240
|
-
.sm\:max-w-\[640px\] {
|
|
4241
|
-
@media (width >= 40rem) {
|
|
4242
|
-
max-width: 640px;
|
|
4243
|
-
}
|
|
4244
|
-
}
|
|
4245
4938
|
.sm\:max-w-lg {
|
|
4246
4939
|
@media (width >= 40rem) {
|
|
4247
4940
|
max-width: var(--container-lg);
|
|
@@ -4584,11 +5277,6 @@
|
|
|
4584
5277
|
}
|
|
4585
5278
|
}
|
|
4586
5279
|
}
|
|
4587
|
-
.\[\&_\[role\=treeitem\]\]\:\!indent-0 {
|
|
4588
|
-
& [role=treeitem] {
|
|
4589
|
-
text-indent: calc(var(--spacing) * 0) !important;
|
|
4590
|
-
}
|
|
4591
|
-
}
|
|
4592
5280
|
.\[\&_svg\]\:pointer-events-none {
|
|
4593
5281
|
& svg {
|
|
4594
5282
|
pointer-events: none;
|
|
@@ -4752,16 +5440,6 @@
|
|
|
4752
5440
|
border-bottom-left-radius: 0;
|
|
4753
5441
|
}
|
|
4754
5442
|
}
|
|
4755
|
-
.\[\&\>\[data-slot\=command-input-wrapper\]\]\:h-auto {
|
|
4756
|
-
&>[data-slot=command-input-wrapper] {
|
|
4757
|
-
height: auto;
|
|
4758
|
-
}
|
|
4759
|
-
}
|
|
4760
|
-
.\[\&\>\[data-slot\=command-input-wrapper\]\]\:flex-1 {
|
|
4761
|
-
&>[data-slot=command-input-wrapper] {
|
|
4762
|
-
flex: 1;
|
|
4763
|
-
}
|
|
4764
|
-
}
|
|
4765
5443
|
.has-\[select\[aria-hidden\=true\]\:last-child\]\:\[\&\>\[data-slot\=select-trigger\]\:last-of-type\]\:rounded-r-md {
|
|
4766
5444
|
&:has(*:is(select[aria-hidden=true]:last-child)) {
|
|
4767
5445
|
&>[data-slot=select-trigger]:last-of-type {
|
|
@@ -4775,31 +5453,6 @@
|
|
|
4775
5453
|
width: fit-content;
|
|
4776
5454
|
}
|
|
4777
5455
|
}
|
|
4778
|
-
.\[\&\>button\.dialog-close\]\:hidden {
|
|
4779
|
-
&>button.dialog-close {
|
|
4780
|
-
display: none;
|
|
4781
|
-
}
|
|
4782
|
-
}
|
|
4783
|
-
.\[\&\>img\]\:block {
|
|
4784
|
-
&>img {
|
|
4785
|
-
display: block;
|
|
4786
|
-
}
|
|
4787
|
-
}
|
|
4788
|
-
.\[\&\>img\]\:h-auto {
|
|
4789
|
-
&>img {
|
|
4790
|
-
height: auto;
|
|
4791
|
-
}
|
|
4792
|
-
}
|
|
4793
|
-
.\[\&\>img\]\:max-w-full {
|
|
4794
|
-
&>img {
|
|
4795
|
-
max-width: 100%;
|
|
4796
|
-
}
|
|
4797
|
-
}
|
|
4798
|
-
.\[\&\>img\]\:rounded-md {
|
|
4799
|
-
&>img {
|
|
4800
|
-
border-radius: var(--boring-radius-md);
|
|
4801
|
-
}
|
|
4802
|
-
}
|
|
4803
5456
|
.\[\&\>input\]\:flex-1 {
|
|
4804
5457
|
&>input {
|
|
4805
5458
|
flex: 1;
|
|
@@ -4861,60 +5514,6 @@
|
|
|
4861
5514
|
height: calc(var(--spacing) * 4);
|
|
4862
5515
|
}
|
|
4863
5516
|
}
|
|
4864
|
-
.\[\.active-tab_\&\]\:bg-foreground\/45 {
|
|
4865
|
-
.active-tab & {
|
|
4866
|
-
background-color: var(--boring-foreground);
|
|
4867
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
4868
|
-
background-color: color-mix(in oklab, var(--boring-foreground) 45%, transparent);
|
|
4869
|
-
}
|
|
4870
|
-
}
|
|
4871
|
-
}
|
|
4872
|
-
.\[\.active-tab_\&\]\:text-\[color\:var\(--accent\)\] {
|
|
4873
|
-
.active-tab & {
|
|
4874
|
-
color: var(--accent);
|
|
4875
|
-
}
|
|
4876
|
-
}
|
|
4877
|
-
.\[\.active-tab_\&\]\:opacity-50 {
|
|
4878
|
-
.active-tab & {
|
|
4879
|
-
opacity: 50%;
|
|
4880
|
-
}
|
|
4881
|
-
}
|
|
4882
|
-
.\[\.active-tab_\&\]\:hover\:opacity-100 {
|
|
4883
|
-
.active-tab & {
|
|
4884
|
-
&:hover {
|
|
4885
|
-
@media (hover: hover) {
|
|
4886
|
-
opacity: 100%;
|
|
4887
|
-
}
|
|
4888
|
-
}
|
|
4889
|
-
}
|
|
4890
|
-
}
|
|
4891
|
-
.\[\.dv-active-tab_\&\]\:bg-foreground\/45 {
|
|
4892
|
-
.dv-active-tab & {
|
|
4893
|
-
background-color: var(--boring-foreground);
|
|
4894
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
4895
|
-
background-color: color-mix(in oklab, var(--boring-foreground) 45%, transparent);
|
|
4896
|
-
}
|
|
4897
|
-
}
|
|
4898
|
-
}
|
|
4899
|
-
.\[\.dv-active-tab_\&\]\:text-\[color\:var\(--accent\)\] {
|
|
4900
|
-
.dv-active-tab & {
|
|
4901
|
-
color: var(--accent);
|
|
4902
|
-
}
|
|
4903
|
-
}
|
|
4904
|
-
.\[\.dv-active-tab_\&\]\:opacity-50 {
|
|
4905
|
-
.dv-active-tab & {
|
|
4906
|
-
opacity: 50%;
|
|
4907
|
-
}
|
|
4908
|
-
}
|
|
4909
|
-
.\[\.dv-active-tab_\&\]\:hover\:opacity-100 {
|
|
4910
|
-
.dv-active-tab & {
|
|
4911
|
-
&:hover {
|
|
4912
|
-
@media (hover: hover) {
|
|
4913
|
-
opacity: 100%;
|
|
4914
|
-
}
|
|
4915
|
-
}
|
|
4916
|
-
}
|
|
4917
|
-
}
|
|
4918
5517
|
.\[a\&\]\:hover\:bg-accent {
|
|
4919
5518
|
a& {
|
|
4920
5519
|
&:hover {
|
|
@@ -4979,6 +5578,54 @@
|
|
|
4979
5578
|
}
|
|
4980
5579
|
}
|
|
4981
5580
|
}
|
|
5581
|
+
@property --tw-divide-y-reverse {
|
|
5582
|
+
syntax: "*";
|
|
5583
|
+
inherits: false;
|
|
5584
|
+
initial-value: 0;
|
|
5585
|
+
}
|
|
5586
|
+
@keyframes spin {
|
|
5587
|
+
to {
|
|
5588
|
+
transform: rotate(360deg);
|
|
5589
|
+
}
|
|
5590
|
+
}
|
|
5591
|
+
@keyframes pulse {
|
|
5592
|
+
50% {
|
|
5593
|
+
opacity: 0.5;
|
|
5594
|
+
}
|
|
5595
|
+
}
|
|
5596
|
+
@layer properties {
|
|
5597
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
5598
|
+
*, ::before, ::after, ::backdrop {
|
|
5599
|
+
--tw-translate-x: 0;
|
|
5600
|
+
--tw-translate-y: 0;
|
|
5601
|
+
--tw-translate-z: 0;
|
|
5602
|
+
--tw-space-y-reverse: 0;
|
|
5603
|
+
--tw-divide-y-reverse: 0;
|
|
5604
|
+
--tw-border-style: solid;
|
|
5605
|
+
--tw-leading: initial;
|
|
5606
|
+
--tw-font-weight: initial;
|
|
5607
|
+
--tw-tracking: initial;
|
|
5608
|
+
--tw-shadow: 0 0 #0000;
|
|
5609
|
+
--tw-shadow-color: initial;
|
|
5610
|
+
--tw-shadow-alpha: 100%;
|
|
5611
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
5612
|
+
--tw-inset-shadow-color: initial;
|
|
5613
|
+
--tw-inset-shadow-alpha: 100%;
|
|
5614
|
+
--tw-ring-color: initial;
|
|
5615
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
5616
|
+
--tw-inset-ring-color: initial;
|
|
5617
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
5618
|
+
--tw-ring-inset: initial;
|
|
5619
|
+
--tw-ring-offset-width: 0px;
|
|
5620
|
+
--tw-ring-offset-color: #fff;
|
|
5621
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
5622
|
+
--tw-outline-style: solid;
|
|
5623
|
+
--tw-duration: initial;
|
|
5624
|
+
--tw-ease: initial;
|
|
5625
|
+
--tw-content: "";
|
|
5626
|
+
}
|
|
5627
|
+
}
|
|
5628
|
+
}
|
|
4982
5629
|
:root {
|
|
4983
5630
|
--boring-background: oklch(0.995 0.0015 72);
|
|
4984
5631
|
--boring-foreground: oklch(0.18 0.004 72);
|
|
@@ -5326,11 +5973,6 @@
|
|
|
5326
5973
|
inherits: false;
|
|
5327
5974
|
initial-value: 0;
|
|
5328
5975
|
}
|
|
5329
|
-
@property --tw-divide-y-reverse {
|
|
5330
|
-
syntax: "*";
|
|
5331
|
-
inherits: false;
|
|
5332
|
-
initial-value: 0;
|
|
5333
|
-
}
|
|
5334
5976
|
@property --tw-border-style {
|
|
5335
5977
|
syntax: "*";
|
|
5336
5978
|
inherits: false;
|
|
@@ -5557,7 +6199,6 @@
|
|
|
5557
6199
|
--tw-translate-y: 0;
|
|
5558
6200
|
--tw-translate-z: 0;
|
|
5559
6201
|
--tw-space-y-reverse: 0;
|
|
5560
|
-
--tw-divide-y-reverse: 0;
|
|
5561
6202
|
--tw-border-style: solid;
|
|
5562
6203
|
--tw-leading: initial;
|
|
5563
6204
|
--tw-font-weight: initial;
|
|
@@ -5607,6 +6248,7 @@
|
|
|
5607
6248
|
--tw-duration: initial;
|
|
5608
6249
|
--tw-ease: initial;
|
|
5609
6250
|
--tw-content: "";
|
|
6251
|
+
--tw-divide-y-reverse: 0;
|
|
5610
6252
|
}
|
|
5611
6253
|
}
|
|
5612
6254
|
}
|