Skip to content

Commit

Permalink
Fix scroll bars (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
nialexsan authored Aug 20, 2024
1 parent 7269e91 commit a9d11d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/views/ExploreWallets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function ExploreWallets({ onGetWallet }: ExploreWalletsProps) {

return (
<Stack spacing={0} flexGrow={1} overflow="hidden">
<Stack px={5} pb={5} overflow="scroll">
<Stack px={5} pb={5} overflow="auto">
<Stack spacing="1rem">
{wallets?.map((wallet, idx) => {
// If the wallet has install links, we move to next view to install
Expand Down
2 changes: 1 addition & 1 deletion components/views/WalletSelection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function WalletSelection({

const content = (
<Stack spacing={0} flexGrow={1} overflow="hidden">
<Stack overflow="scroll" px={4} pb={5} flexGrow={1}>
<Stack overflow="auto" px={4} pb={5} flexGrow={1}>
<ServiceList
onSelectWallet={onSelectWallet}
selectedWallet={selectedWallet}
Expand Down

0 comments on commit a9d11d2

Please sign in to comment.