Skip to content

Commit 9a07795

Browse files
authored
Merge pull request #206 from blocknative/fix/wallets-scroll
Only add scroll on mobile devices. Closes #200
2 parents c4e2d6b + d9d46d0 commit 9a07795

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/components/Wallets.svelte

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@
1717
align-items: center;
1818
list-style-type: none;
1919
margin: 1.25em 0;
20-
max-height: 66vh;
21-
overflow-y: scroll;
2220
padding: 0;
23-
scrollbar-width: none;
2421
font-family: inherit;
2522
font-size: inherit;
2623
line-height: 1.15;
@@ -50,7 +47,8 @@
5047
}
5148
5249
ul {
53-
scrollbar-width: unset;
50+
max-height: 66vh;
51+
overflow-y: scroll;
5452
}
5553
}
5654
</style>

0 commit comments

Comments
 (0)