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