Skip to content

Commit

Permalink
fixed ui on find-wallet [Fixes #13421]
Browse files Browse the repository at this point in the history
  • Loading branch information
nipunh committed Jul 18, 2024
1 parent 885edaa commit 64157e8
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/components/FindWallet/WalletFilterPersona.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,23 @@ const WalletFilterPersona = ({

return (
<Grid
css={{
"&::-webkit-scrollbar": {
height: "4px",
},
"&::-webkit-scrollbar-thumb": {
backgroundColor: "darkgray",
},
}}
gap={showMobileSidebar ? 2 : 4}
autoColumns={{ base: "200px", lg: "minmax(0, 1fr)" }}
autoColumns={{ base: "220px", lg: "minmax(0, 1fr)" }}
templateColumns={
showMobileSidebar
? "repeat(2, 1fr)"
: { base: "200px", lg: "minmax(0, 1fr)" }
: { base: "220px", lg: "minmax(0, 1fr)" }
}
mb={showMobileSidebar ? 4 : 2}
overflowX="auto"
overflowX="scroll"
>
{personas.map((persona, idx) => {
return (
Expand Down

0 comments on commit 64157e8

Please sign in to comment.