Skip to content

Commit 64157e8

Browse files
committed
fixed ui on find-wallet [Fixes #13421]
1 parent 885edaa commit 64157e8

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

src/components/FindWallet/WalletFilterPersona.tsx

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,23 @@ const WalletFilterPersona = ({
5555

5656
return (
5757
<Grid
58+
css={{
59+
"&::-webkit-scrollbar": {
60+
height: "4px",
61+
},
62+
"&::-webkit-scrollbar-thumb": {
63+
backgroundColor: "darkgray",
64+
},
65+
}}
5866
gap={showMobileSidebar ? 2 : 4}
59-
autoColumns={{ base: "200px", lg: "minmax(0, 1fr)" }}
67+
autoColumns={{ base: "220px", lg: "minmax(0, 1fr)" }}
6068
templateColumns={
6169
showMobileSidebar
6270
? "repeat(2, 1fr)"
63-
: { base: "200px", lg: "minmax(0, 1fr)" }
71+
: { base: "220px", lg: "minmax(0, 1fr)" }
6472
}
6573
mb={showMobileSidebar ? 4 : 2}
66-
overflowX="auto"
74+
overflowX="scroll"
6775
>
6876
{personas.map((persona, idx) => {
6977
return (

0 commit comments

Comments
 (0)