Skip to content

Commit d91b1be

Browse files
authored
Merge pull request #13426 from nipunh/ui-on-find-wallet
fixed ui on find-wallet [Fixes #13421]
2 parents 29d71ea + 64157e8 commit d91b1be

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
@@ -102,15 +102,23 @@ const WalletFilterPersona = ({
102102

103103
return (
104104
<Grid
105+
css={{
106+
"&::-webkit-scrollbar": {
107+
height: "4px",
108+
},
109+
"&::-webkit-scrollbar-thumb": {
110+
backgroundColor: "darkgray",
111+
},
112+
}}
105113
gap={showMobileSidebar ? 2 : 4}
106-
autoColumns={{ base: "200px", lg: "minmax(0, 1fr)" }}
114+
autoColumns={{ base: "220px", lg: "minmax(0, 1fr)" }}
107115
templateColumns={
108116
showMobileSidebar
109117
? "repeat(2, 1fr)"
110-
: { base: "200px", lg: "minmax(0, 1fr)" }
118+
: { base: "220px", lg: "minmax(0, 1fr)" }
111119
}
112120
mb={showMobileSidebar ? 4 : 2}
113-
overflowX="auto"
121+
overflowX="scroll"
114122
>
115123
{personas.map((persona, idx) => {
116124
return (

0 commit comments

Comments
 (0)