Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: OCK z-index overlay #1250

Merged
merged 2 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading