Skip to content

Commit

Permalink
fix zindex overlay (#1250)
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkas authored Nov 13, 2024
1 parent 2f03953 commit d11bf62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export function ConnectWalletButton({
</div>
</ConnectWallet>

<WalletDropdown className="rounded-xl bg-white font-sans shadow-md">
<WalletDropdown className="z-50 rounded-xl bg-white font-sans shadow-md">
<Identity className="px-4 pb-2 pt-3 font-display">
<UserAvatar />
<Name
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/Layout/UsernameNav/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function UsernameNav() {
);

return (
<div className="absolute top-0 z-20 flex w-full flex-col">
<div className="absolute top-0 z-50 flex w-full flex-col">
{showDevelopmentWarning && (
<div className="flex items-center justify-center gap-2 bg-orange-10 p-2 text-center text-orange-80">
<p>
Expand Down

0 comments on commit d11bf62

Please sign in to comment.