@prisma/studio-core 0.0.0-dev.202505091017 → 0.0.0-dev.202505091027
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ui/index.cjs +2 -2
- package/dist/ui/index.css +4 -96
- package/dist/ui/index.js +2 -2
- package/package.json +1 -1
package/dist/ui/index.css
CHANGED
|
@@ -1594,277 +1594,219 @@ body {
|
|
|
1594
1594
|
}
|
|
1595
1595
|
}
|
|
1596
1596
|
|
|
1597
|
+
/* Portals are outside the studio DOM scope */
|
|
1598
|
+
[data-radix-popper-content-wrapper] {
|
|
1599
|
+
z-index: 9999 !important;
|
|
1600
|
+
}
|
|
1597
1601
|
.file\:ps-border-0::file-selector-button {
|
|
1598
1602
|
border-width: 0px;
|
|
1599
1603
|
}
|
|
1600
|
-
|
|
1601
1604
|
.file\:ps-bg-transparent::file-selector-button {
|
|
1602
1605
|
background-color: transparent;
|
|
1603
1606
|
}
|
|
1604
|
-
|
|
1605
1607
|
.file\:ps-text-sm::file-selector-button {
|
|
1606
1608
|
font-size: 0.875rem;
|
|
1607
1609
|
line-height: 1.25rem;
|
|
1608
1610
|
}
|
|
1609
|
-
|
|
1610
1611
|
.file\:ps-font-medium::file-selector-button {
|
|
1611
1612
|
font-weight: 500;
|
|
1612
1613
|
}
|
|
1613
|
-
|
|
1614
1614
|
.file\:ps-text-foreground::file-selector-button {
|
|
1615
1615
|
color: hsl(var(--foreground));
|
|
1616
1616
|
}
|
|
1617
|
-
|
|
1618
1617
|
.placeholder\:ps-text-muted-foreground::-moz-placeholder {
|
|
1619
1618
|
color: hsl(var(--muted-foreground));
|
|
1620
1619
|
}
|
|
1621
|
-
|
|
1622
1620
|
.placeholder\:ps-text-muted-foreground::placeholder {
|
|
1623
1621
|
color: hsl(var(--muted-foreground));
|
|
1624
1622
|
}
|
|
1625
|
-
|
|
1626
1623
|
.hover\:ps-border-table-border:hover {
|
|
1627
1624
|
border-color: hsl(var(--table-border));
|
|
1628
1625
|
}
|
|
1629
|
-
|
|
1630
1626
|
.hover\:ps-bg-accent:hover {
|
|
1631
1627
|
background-color: hsl(var(--accent));
|
|
1632
1628
|
}
|
|
1633
|
-
|
|
1634
1629
|
.hover\:ps-bg-destructive\/80:hover {
|
|
1635
1630
|
background-color: hsl(var(--destructive) / 0.8);
|
|
1636
1631
|
}
|
|
1637
|
-
|
|
1638
1632
|
.hover\:ps-bg-destructive\/90:hover {
|
|
1639
1633
|
background-color: hsl(var(--destructive) / 0.9);
|
|
1640
1634
|
}
|
|
1641
|
-
|
|
1642
1635
|
.hover\:ps-bg-muted\/50:hover {
|
|
1643
1636
|
background-color: hsl(var(--muted) / 0.5);
|
|
1644
1637
|
}
|
|
1645
|
-
|
|
1646
1638
|
.hover\:ps-bg-primary\/80:hover {
|
|
1647
1639
|
background-color: hsl(var(--primary) / 0.8);
|
|
1648
1640
|
}
|
|
1649
|
-
|
|
1650
1641
|
.hover\:ps-bg-primary\/90:hover {
|
|
1651
1642
|
background-color: hsl(var(--primary) / 0.9);
|
|
1652
1643
|
}
|
|
1653
|
-
|
|
1654
1644
|
.hover\:ps-bg-secondary\/80:hover {
|
|
1655
1645
|
background-color: hsl(var(--secondary) / 0.8);
|
|
1656
1646
|
}
|
|
1657
|
-
|
|
1658
1647
|
.hover\:ps-text-accent-foreground:hover {
|
|
1659
1648
|
color: hsl(var(--accent-foreground));
|
|
1660
1649
|
}
|
|
1661
|
-
|
|
1662
1650
|
.hover\:ps-text-foreground:hover {
|
|
1663
1651
|
color: hsl(var(--foreground));
|
|
1664
1652
|
}
|
|
1665
|
-
|
|
1666
1653
|
.hover\:ps-underline:hover {
|
|
1667
1654
|
text-decoration-line: underline;
|
|
1668
1655
|
}
|
|
1669
|
-
|
|
1670
1656
|
.hover\:ps-opacity-100:hover {
|
|
1671
1657
|
opacity: 1;
|
|
1672
1658
|
}
|
|
1673
|
-
|
|
1674
1659
|
.focus\:ps-bg-accent:focus {
|
|
1675
1660
|
background-color: hsl(var(--accent));
|
|
1676
1661
|
}
|
|
1677
|
-
|
|
1678
1662
|
.focus\:ps-text-accent-foreground:focus {
|
|
1679
1663
|
color: hsl(var(--accent-foreground));
|
|
1680
1664
|
}
|
|
1681
|
-
|
|
1682
1665
|
.focus\:ps-outline-none:focus {
|
|
1683
1666
|
outline: 2px solid transparent;
|
|
1684
1667
|
outline-offset: 2px;
|
|
1685
1668
|
}
|
|
1686
|
-
|
|
1687
1669
|
.focus\:ps-ring-1:focus {
|
|
1688
1670
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1689
1671
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1690
1672
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1691
1673
|
}
|
|
1692
|
-
|
|
1693
1674
|
.focus\:ps-ring-2:focus {
|
|
1694
1675
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1695
1676
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1696
1677
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1697
1678
|
}
|
|
1698
|
-
|
|
1699
1679
|
.focus\:ps-ring-ring:focus {
|
|
1700
1680
|
--tw-ring-color: hsl(var(--ring));
|
|
1701
1681
|
}
|
|
1702
|
-
|
|
1703
1682
|
.focus\:ps-ring-offset-2:focus {
|
|
1704
1683
|
--tw-ring-offset-width: 2px;
|
|
1705
1684
|
}
|
|
1706
|
-
|
|
1707
1685
|
.focus-visible\:ps-outline-none:focus-visible {
|
|
1708
1686
|
outline: 2px solid transparent;
|
|
1709
1687
|
outline-offset: 2px;
|
|
1710
1688
|
}
|
|
1711
|
-
|
|
1712
1689
|
.focus-visible\:ps-ring-0:focus-visible {
|
|
1713
1690
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1714
1691
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1715
1692
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1716
1693
|
}
|
|
1717
|
-
|
|
1718
1694
|
.focus-visible\:ps-ring-1:focus-visible {
|
|
1719
1695
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1720
1696
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1721
1697
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1722
1698
|
}
|
|
1723
|
-
|
|
1724
1699
|
.focus-visible\:ps-ring-2:focus-visible {
|
|
1725
1700
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1726
1701
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1727
1702
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1728
1703
|
}
|
|
1729
|
-
|
|
1730
1704
|
.focus-visible\:ps-ring-ring:focus-visible {
|
|
1731
1705
|
--tw-ring-color: hsl(var(--ring));
|
|
1732
1706
|
}
|
|
1733
|
-
|
|
1734
1707
|
.focus-visible\:ps-ring-offset-2:focus-visible {
|
|
1735
1708
|
--tw-ring-offset-width: 2px;
|
|
1736
1709
|
}
|
|
1737
|
-
|
|
1738
1710
|
.focus-visible\:ps-ring-offset-background:focus-visible {
|
|
1739
1711
|
--tw-ring-offset-color: hsl(var(--background));
|
|
1740
1712
|
}
|
|
1741
|
-
|
|
1742
1713
|
.disabled\:ps-pointer-events-none:disabled {
|
|
1743
1714
|
pointer-events: none;
|
|
1744
1715
|
}
|
|
1745
|
-
|
|
1746
1716
|
.disabled\:ps-cursor-not-allowed:disabled {
|
|
1747
1717
|
cursor: not-allowed;
|
|
1748
1718
|
}
|
|
1749
|
-
|
|
1750
1719
|
.disabled\:ps-opacity-50:disabled {
|
|
1751
1720
|
opacity: 0.5;
|
|
1752
1721
|
}
|
|
1753
|
-
|
|
1754
1722
|
.ps-peer:disabled ~ .peer-disabled\:ps-cursor-not-allowed {
|
|
1755
1723
|
cursor: not-allowed;
|
|
1756
1724
|
}
|
|
1757
|
-
|
|
1758
1725
|
.ps-peer:disabled ~ .peer-disabled\:ps-opacity-70 {
|
|
1759
1726
|
opacity: 0.7;
|
|
1760
1727
|
}
|
|
1761
|
-
|
|
1762
1728
|
.data-\[disabled\]\:ps-pointer-events-none[data-disabled] {
|
|
1763
1729
|
pointer-events: none;
|
|
1764
1730
|
}
|
|
1765
|
-
|
|
1766
1731
|
.data-\[side\=bottom\]\:ps-translate-y-1[data-side="bottom"] {
|
|
1767
1732
|
--tw-translate-y: 0.25rem;
|
|
1768
1733
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1769
1734
|
}
|
|
1770
|
-
|
|
1771
1735
|
.data-\[side\=left\]\:ps--translate-x-1[data-side="left"] {
|
|
1772
1736
|
--tw-translate-x: -0.25rem;
|
|
1773
1737
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1774
1738
|
}
|
|
1775
|
-
|
|
1776
1739
|
.data-\[side\=right\]\:ps-translate-x-1[data-side="right"] {
|
|
1777
1740
|
--tw-translate-x: 0.25rem;
|
|
1778
1741
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1779
1742
|
}
|
|
1780
|
-
|
|
1781
1743
|
.data-\[side\=top\]\:ps--translate-y-1[data-side="top"] {
|
|
1782
1744
|
--tw-translate-y: -0.25rem;
|
|
1783
1745
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1784
1746
|
}
|
|
1785
|
-
|
|
1786
1747
|
.data-\[state\=checked\]\:ps-translate-x-4[data-state="checked"] {
|
|
1787
1748
|
--tw-translate-x: 1rem;
|
|
1788
1749
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1789
1750
|
}
|
|
1790
|
-
|
|
1791
1751
|
.data-\[state\=unchecked\]\:ps-translate-x-0[data-state="unchecked"] {
|
|
1792
1752
|
--tw-translate-x: 0px;
|
|
1793
1753
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1794
1754
|
}
|
|
1795
|
-
|
|
1796
1755
|
.data-\[active\=true\]\:ps-bg-slate-200[data-active="true"] {
|
|
1797
1756
|
--tw-bg-opacity: 1;
|
|
1798
1757
|
background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
|
|
1799
1758
|
}
|
|
1800
|
-
|
|
1801
1759
|
.data-\[state\=checked\]\:ps-bg-primary[data-state="checked"] {
|
|
1802
1760
|
background-color: hsl(var(--primary));
|
|
1803
1761
|
}
|
|
1804
|
-
|
|
1805
1762
|
.data-\[state\=open\]\:ps-bg-accent[data-state="open"] {
|
|
1806
1763
|
background-color: hsl(var(--accent));
|
|
1807
1764
|
}
|
|
1808
|
-
|
|
1809
1765
|
.data-\[state\=open\]\:ps-bg-secondary[data-state="open"] {
|
|
1810
1766
|
background-color: hsl(var(--secondary));
|
|
1811
1767
|
}
|
|
1812
|
-
|
|
1813
1768
|
.data-\[state\=selected\]\:ps-bg-muted[data-state="selected"] {
|
|
1814
1769
|
background-color: hsl(var(--muted));
|
|
1815
1770
|
}
|
|
1816
|
-
|
|
1817
1771
|
.data-\[state\=unchecked\]\:ps-bg-input[data-state="unchecked"] {
|
|
1818
1772
|
background-color: hsl(var(--input));
|
|
1819
1773
|
}
|
|
1820
|
-
|
|
1821
1774
|
.data-\[active\=true\]\:ps-text-foreground[data-active="true"] {
|
|
1822
1775
|
color: hsl(var(--foreground));
|
|
1823
1776
|
}
|
|
1824
|
-
|
|
1825
1777
|
.data-\[placeholder\]\:ps-text-muted-foreground[data-placeholder] {
|
|
1826
1778
|
color: hsl(var(--muted-foreground));
|
|
1827
1779
|
}
|
|
1828
|
-
|
|
1829
1780
|
.data-\[state\=checked\]\:ps-text-primary-foreground[data-state="checked"] {
|
|
1830
1781
|
color: hsl(var(--primary-foreground));
|
|
1831
1782
|
}
|
|
1832
|
-
|
|
1833
1783
|
.data-\[state\=open\]\:ps-text-accent-foreground[data-state="open"] {
|
|
1834
1784
|
color: hsl(var(--accent-foreground));
|
|
1835
1785
|
}
|
|
1836
|
-
|
|
1837
1786
|
.data-\[state\=open\]\:ps-text-muted-foreground[data-state="open"] {
|
|
1838
1787
|
color: hsl(var(--muted-foreground));
|
|
1839
1788
|
}
|
|
1840
|
-
|
|
1841
1789
|
.data-\[disabled\]\:ps-opacity-50[data-disabled] {
|
|
1842
1790
|
opacity: 0.5;
|
|
1843
1791
|
}
|
|
1844
|
-
|
|
1845
1792
|
.data-\[focus\=true\]\:ps-ring-2[data-focus="true"] {
|
|
1846
1793
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1847
1794
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1848
1795
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1849
1796
|
}
|
|
1850
|
-
|
|
1851
1797
|
.data-\[focus\=true\]\:ps-ring-inset[data-focus="true"] {
|
|
1852
1798
|
--tw-ring-inset: inset;
|
|
1853
1799
|
}
|
|
1854
|
-
|
|
1855
1800
|
.data-\[focus\=true\]\:ps-ring-indigo-400[data-focus="true"] {
|
|
1856
1801
|
--tw-ring-opacity: 1;
|
|
1857
1802
|
--tw-ring-color: rgb(129 140 248 / var(--tw-ring-opacity, 1));
|
|
1858
1803
|
}
|
|
1859
|
-
|
|
1860
1804
|
.data-\[state\=closed\]\:ps-duration-300[data-state="closed"] {
|
|
1861
1805
|
transition-duration: 300ms;
|
|
1862
1806
|
}
|
|
1863
|
-
|
|
1864
1807
|
.data-\[state\=open\]\:ps-duration-500[data-state="open"] {
|
|
1865
1808
|
transition-duration: 500ms;
|
|
1866
1809
|
}
|
|
1867
|
-
|
|
1868
1810
|
.data-\[state\=open\]\:ps-animate-in[data-state="open"] {
|
|
1869
1811
|
animation-name: enter;
|
|
1870
1812
|
animation-duration: 150ms;
|
|
@@ -1874,7 +1816,6 @@ body {
|
|
|
1874
1816
|
--tw-enter-translate-x: initial;
|
|
1875
1817
|
--tw-enter-translate-y: initial;
|
|
1876
1818
|
}
|
|
1877
|
-
|
|
1878
1819
|
.data-\[state\=closed\]\:ps-animate-out[data-state="closed"] {
|
|
1879
1820
|
animation-name: exit;
|
|
1880
1821
|
animation-duration: 150ms;
|
|
@@ -1884,95 +1825,72 @@ body {
|
|
|
1884
1825
|
--tw-exit-translate-x: initial;
|
|
1885
1826
|
--tw-exit-translate-y: initial;
|
|
1886
1827
|
}
|
|
1887
|
-
|
|
1888
1828
|
.data-\[state\=closed\]\:ps-fade-out-0[data-state="closed"] {
|
|
1889
1829
|
--tw-exit-opacity: 0;
|
|
1890
1830
|
}
|
|
1891
|
-
|
|
1892
1831
|
.data-\[state\=open\]\:ps-fade-in-0[data-state="open"] {
|
|
1893
1832
|
--tw-enter-opacity: 0;
|
|
1894
1833
|
}
|
|
1895
|
-
|
|
1896
1834
|
.data-\[state\=closed\]\:ps-zoom-out-95[data-state="closed"] {
|
|
1897
1835
|
--tw-exit-scale: .95;
|
|
1898
1836
|
}
|
|
1899
|
-
|
|
1900
1837
|
.data-\[state\=open\]\:ps-zoom-in-95[data-state="open"] {
|
|
1901
1838
|
--tw-enter-scale: .95;
|
|
1902
1839
|
}
|
|
1903
|
-
|
|
1904
1840
|
.data-\[side\=bottom\]\:ps-slide-in-from-top-2[data-side="bottom"] {
|
|
1905
1841
|
--tw-enter-translate-y: -0.5rem;
|
|
1906
1842
|
}
|
|
1907
|
-
|
|
1908
1843
|
.data-\[side\=left\]\:ps-slide-in-from-right-2[data-side="left"] {
|
|
1909
1844
|
--tw-enter-translate-x: 0.5rem;
|
|
1910
1845
|
}
|
|
1911
|
-
|
|
1912
1846
|
.data-\[side\=right\]\:ps-slide-in-from-left-2[data-side="right"] {
|
|
1913
1847
|
--tw-enter-translate-x: -0.5rem;
|
|
1914
1848
|
}
|
|
1915
|
-
|
|
1916
1849
|
.data-\[side\=top\]\:ps-slide-in-from-bottom-2[data-side="top"] {
|
|
1917
1850
|
--tw-enter-translate-y: 0.5rem;
|
|
1918
1851
|
}
|
|
1919
|
-
|
|
1920
1852
|
.data-\[state\=closed\]\:ps-slide-out-to-bottom[data-state="closed"] {
|
|
1921
1853
|
--tw-exit-translate-y: 100%;
|
|
1922
1854
|
}
|
|
1923
|
-
|
|
1924
1855
|
.data-\[state\=closed\]\:ps-slide-out-to-left[data-state="closed"] {
|
|
1925
1856
|
--tw-exit-translate-x: -100%;
|
|
1926
1857
|
}
|
|
1927
|
-
|
|
1928
1858
|
.data-\[state\=closed\]\:ps-slide-out-to-left-1\/2[data-state="closed"] {
|
|
1929
1859
|
--tw-exit-translate-x: -50%;
|
|
1930
1860
|
}
|
|
1931
|
-
|
|
1932
1861
|
.data-\[state\=closed\]\:ps-slide-out-to-right[data-state="closed"] {
|
|
1933
1862
|
--tw-exit-translate-x: 100%;
|
|
1934
1863
|
}
|
|
1935
|
-
|
|
1936
1864
|
.data-\[state\=closed\]\:ps-slide-out-to-top[data-state="closed"] {
|
|
1937
1865
|
--tw-exit-translate-y: -100%;
|
|
1938
1866
|
}
|
|
1939
|
-
|
|
1940
1867
|
.data-\[state\=closed\]\:ps-slide-out-to-top-\[48\%\][data-state="closed"] {
|
|
1941
1868
|
--tw-exit-translate-y: -48%;
|
|
1942
1869
|
}
|
|
1943
|
-
|
|
1944
1870
|
.data-\[state\=open\]\:ps-slide-in-from-bottom[data-state="open"] {
|
|
1945
1871
|
--tw-enter-translate-y: 100%;
|
|
1946
1872
|
}
|
|
1947
|
-
|
|
1948
1873
|
.data-\[state\=open\]\:ps-slide-in-from-left[data-state="open"] {
|
|
1949
1874
|
--tw-enter-translate-x: -100%;
|
|
1950
1875
|
}
|
|
1951
|
-
|
|
1952
1876
|
.data-\[state\=open\]\:ps-slide-in-from-left-1\/2[data-state="open"] {
|
|
1953
1877
|
--tw-enter-translate-x: -50%;
|
|
1954
1878
|
}
|
|
1955
|
-
|
|
1956
1879
|
.data-\[state\=open\]\:ps-slide-in-from-right[data-state="open"] {
|
|
1957
1880
|
--tw-enter-translate-x: 100%;
|
|
1958
1881
|
}
|
|
1959
|
-
|
|
1960
1882
|
.data-\[state\=open\]\:ps-slide-in-from-top[data-state="open"] {
|
|
1961
1883
|
--tw-enter-translate-y: -100%;
|
|
1962
1884
|
}
|
|
1963
|
-
|
|
1964
1885
|
.data-\[state\=open\]\:ps-slide-in-from-top-\[48\%\][data-state="open"] {
|
|
1965
1886
|
--tw-enter-translate-y: -48%;
|
|
1966
1887
|
}
|
|
1967
|
-
|
|
1968
1888
|
.data-\[state\=closed\]\:ps-duration-300[data-state="closed"] {
|
|
1969
1889
|
animation-duration: 300ms;
|
|
1970
1890
|
}
|
|
1971
|
-
|
|
1972
1891
|
.data-\[state\=open\]\:ps-duration-500[data-state="open"] {
|
|
1973
1892
|
animation-duration: 500ms;
|
|
1974
1893
|
}
|
|
1975
|
-
|
|
1976
1894
|
@media (min-width: 640px) {
|
|
1977
1895
|
|
|
1978
1896
|
.sm\:ps-max-w-sm {
|
|
@@ -2001,7 +1919,6 @@ body {
|
|
|
2001
1919
|
text-align: left;
|
|
2002
1920
|
}
|
|
2003
1921
|
}
|
|
2004
|
-
|
|
2005
1922
|
@media (min-width: 768px) {
|
|
2006
1923
|
|
|
2007
1924
|
.md\:ps-text-sm {
|
|
@@ -2009,44 +1926,35 @@ body {
|
|
|
2009
1926
|
line-height: 1.25rem;
|
|
2010
1927
|
}
|
|
2011
1928
|
}
|
|
2012
|
-
|
|
2013
1929
|
.\[\&\:last-of-type_td\]\:ps-border-b-0:last-of-type td {
|
|
2014
1930
|
border-bottom-width: 0px;
|
|
2015
1931
|
}
|
|
2016
|
-
|
|
2017
1932
|
.\[\&\>span\]\:ps-line-clamp-1>span {
|
|
2018
1933
|
overflow: hidden;
|
|
2019
1934
|
display: -webkit-box;
|
|
2020
1935
|
-webkit-box-orient: vertical;
|
|
2021
1936
|
-webkit-line-clamp: 1;
|
|
2022
1937
|
}
|
|
2023
|
-
|
|
2024
1938
|
.\[\&\>svg\]\:ps-size-4>svg {
|
|
2025
1939
|
width: 1rem;
|
|
2026
1940
|
height: 1rem;
|
|
2027
1941
|
}
|
|
2028
|
-
|
|
2029
1942
|
.\[\&\>svg\]\:ps-shrink-0>svg {
|
|
2030
1943
|
flex-shrink: 0;
|
|
2031
1944
|
}
|
|
2032
|
-
|
|
2033
1945
|
.\[\&\>tr\]\:last\:ps-border-b-0:last-child>tr {
|
|
2034
1946
|
border-bottom-width: 0px;
|
|
2035
1947
|
}
|
|
2036
|
-
|
|
2037
1948
|
.\[\&_svg\]\:ps-pointer-events-none svg {
|
|
2038
1949
|
pointer-events: none;
|
|
2039
1950
|
}
|
|
2040
|
-
|
|
2041
1951
|
.\[\&_svg\]\:ps-size-4 svg {
|
|
2042
1952
|
width: 1rem;
|
|
2043
1953
|
height: 1rem;
|
|
2044
1954
|
}
|
|
2045
|
-
|
|
2046
1955
|
.\[\&_svg\]\:ps-shrink-0 svg {
|
|
2047
1956
|
flex-shrink: 0;
|
|
2048
1957
|
}
|
|
2049
|
-
|
|
2050
1958
|
.\[\&_tr\:last-child\]\:ps-border-0 tr:last-child {
|
|
2051
1959
|
border-width: 0px;
|
|
2052
1960
|
}
|