Skip to content

Commit

Permalink
chore: Update Pending changes dropdown component to improve menu styl…
Browse files Browse the repository at this point in the history
…ing (#20015)
  • Loading branch information
Siddhant-K-code authored Jul 10, 2024
1 parent 3bb64fa commit 42159b8
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ export default function PendingChangesDropdown({ gitStatus }: { gitStatus?: Work
return <div className="text-sm text-gray-400 dark:text-gray-500">No Changes</div>;
}
return (
<ContextMenu menuEntries={menuEntries} customClasses="w-64 max-h-48 overflow-scroll mx-auto left-0 right-0">
<ContextMenu
menuEntries={menuEntries}
customClasses="w-64 max-h-48 overflow-y-scroll overflow-x-clip mx-auto left-0 right-0"
>
<p className="flex items-center text-gitpod-red">
<span>
{totalChanges} Change{totalChanges === 1 ? "" : "s"}
Expand Down

0 comments on commit 42159b8

Please sign in to comment.