Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maheshj01 committed Oct 23, 2024
1 parent 07e094c commit a6827b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/(main)/_components/SideBarItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const SidebarItem: React.FC<SidebarItemProps> = ({ selected, id, log, onLogClick
onClick={handleonAction}
className="dropdown-class">
<EllipsisHorizontalIcon
className='h-4 w-7 cursor-pointer transition-all duration-100' />
className='h-5 md:h-4 w-7 cursor-pointer transition-all duration-100' />
</PSDropdown>
);
}
Expand Down Expand Up @@ -200,7 +200,7 @@ const SidebarItem: React.FC<SidebarItemProps> = ({ selected, id, log, onLogClick
onMouseLeave={() => setIsHovered(false)}
>
<div
className={`text-xs dark:text-slate-200 cursor-pointer py-2 transition-all duration-100 px-2 rounded-md whitespace-nowrap overflow-hidden relative ${selected ? 'bg-background' : ''} ${className}`}
className={`text-sm md:text-xs dark:text-slate-200 cursor-pointer py-2 transition-all duration-100 px-2 rounded-md whitespace-nowrap overflow-hidden relative ${selected ? 'bg-background' : ''} ${className}`}
onClick={() => onLogClick(log)}
>
<div className='flex justify-between items-center'>
Expand Down

0 comments on commit a6827b9

Please sign in to comment.