Skip to content

Commit

Permalink
fix token scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
KorbinianK committed Jun 3, 2024
1 parent b145771 commit 214e720
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
bind:value={enteredTokenName}
on:input={searchToken}
class="p-[12px] my-[20px]" />
<ul role="listbox" {id} class="gap-2 overflow-scroll h-[180px]">
<ul role="listbox" {id} class="gap-2 overflow-y-scroll h-[180px]">
{#if activeTab === TabTypes.TOKEN}
{#each filteredTokens as t (t.symbol)}
{@const selected = deepEqual(t, value)}
Expand Down

0 comments on commit 214e720

Please sign in to comment.