We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 885edaa commit 64157e8Copy full SHA for 64157e8
src/components/FindWallet/WalletFilterPersona.tsx
@@ -55,15 +55,23 @@ const WalletFilterPersona = ({
55
56
return (
57
<Grid
58
+ css={{
59
+ "&::-webkit-scrollbar": {
60
+ height: "4px",
61
+ },
62
+ "&::-webkit-scrollbar-thumb": {
63
+ backgroundColor: "darkgray",
64
65
+ }}
66
gap={showMobileSidebar ? 2 : 4}
- autoColumns={{ base: "200px", lg: "minmax(0, 1fr)" }}
67
+ autoColumns={{ base: "220px", lg: "minmax(0, 1fr)" }}
68
templateColumns={
69
showMobileSidebar
70
? "repeat(2, 1fr)"
- : { base: "200px", lg: "minmax(0, 1fr)" }
71
+ : { base: "220px", lg: "minmax(0, 1fr)" }
72
}
73
mb={showMobileSidebar ? 4 : 2}
- overflowX="auto"
74
+ overflowX="scroll"
75
>
76
{personas.map((persona, idx) => {
77
0 commit comments