Skip to content

Commit

Permalink
fixed dropdown behind input box
Browse files Browse the repository at this point in the history
Fixes #423
  • Loading branch information
Bullrich committed Jun 21, 2024
1 parent 3dc7e9c commit 4bc4292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/lib/components/NetworkDropdown.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<Chevron />
</div>
</div>
<ul tabindex="-1" class="dropdown-content menu p-2 shadow bg-base-100 rounded-box w-full text-white">
<ul tabindex="-1" class="dropdown-content z-10 menu p-2 shadow bg-base-100 rounded-box w-full text-white">
{#each Networks as { network, url }}
<li class:selected={network.networkName === currentNetwork.networkName}>
<a data-testid={`network-${network.networkName}`} href={url}>{network.networkName} </a>
Expand Down

0 comments on commit 4bc4292

Please sign in to comment.