Skip to content

Commit

Permalink
Merge branch 'main' into navbar-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
encryptedDegen authored Nov 27, 2024
2 parents b1fad0f + 14a41e1 commit f6a0e7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/navigation/components/menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const Menu: React.FC<MenuProps> = ({ open, setOpen }) => {
return (
<div
className={cn(
'bg-neutral w-[220px] z-50 overflow-x-hidden sm:overflow-auto shadow-md border-[3px] transition-transform rounded-md border-grey absolute top-[120%] flex flex-col items-end -left-[90px]'
'bg-neutral w-[220px] z-50 overflow-x-hidden sm:overflow-visible shadow-md border-[3px] transition-transform rounded-md border-grey absolute top-[120%] flex flex-col items-end -left-[90px]'
)}
>
<div
Expand Down
2 changes: 1 addition & 1 deletion src/components/navigation/components/wallet-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const WalletMenu: React.FC<WalletMenuProps> = ({ isResponsive = true }) => {
{walletMenOpenu && (
<div
className={cn(
'flex w-56 overflow-x-hidden sm:overflow-auto z-50 h-fit shadow-md border-[3px] rounded-lg bg-neutral border-grey absolute top-[120%] flex-col items-end right-0'
'flex w-56 overflow-x-hidden sm:overflow-visible z-50 h-fit shadow-md border-[3px] rounded-lg bg-neutral border-grey absolute top-[120%] flex-col items-end right-0'
)}
>
<div
Expand Down

0 comments on commit f6a0e7e

Please sign in to comment.