Skip to content

Commit

Permalink
nav menu - fix chains items width
Browse files Browse the repository at this point in the history
  • Loading branch information
manishiwa committed May 21, 2024
1 parent d1234fb commit 5a8ceb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/layout/SidebarMenuGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ export default function SidebarMenuGroup({
{chains.map((option, i) => {
return (
<Tooltip key={option.key} placement="top-start">
<TooltipTrigger className="px-0 md:pl-5">
<TooltipTrigger className="px-0 md:pl-5 w-full">
<Link
className={`group flex items-center justify-items-center rounded-l-full md:rounded-r-none relative w-full ${
urlParts[1]
Expand Down Expand Up @@ -395,7 +395,7 @@ export default function SidebarMenuGroup({
<Tooltip placement="right">
<TooltipTrigger className="h-6 pl-0 md:pl-8 overflow-visible w-full relative">
<div
className="relative group flex items-center justify-items-start mb-2 cursor-pointer"
className="relative group flex items-center justify-items-start mb-2 cursor-pointer"
onClick={handleToggle}
>
<div className="w-6 mx-0">
Expand Down

0 comments on commit 5a8ceb5

Please sign in to comment.