Skip to content

Commit e646060

Browse files
fix(ui): change overflow menu icon from vertical to horizontal
Change the 3-dot menu icon on repo cards from vertical ellipsis (⋮) to horizontal ellipsis (⋯) for better visual alignment.
1 parent fe9a687 commit e646060

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/Board/OverflowMenu.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use client'
22

33
import {
4-
MoreVertical,
4+
MoreHorizontal,
55
Github,
66
ExternalLink,
77
BarChart2,
@@ -79,7 +79,7 @@ export const OverflowMenu = memo<OverflowMenuProps>(
7979
className="p-1 rounded-md hover:bg-accent hover:text-accent-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2"
8080
data-testid={`overflow-menu-trigger-${cardId}`}
8181
>
82-
<MoreVertical className="w-4 h-4" />
82+
<MoreHorizontal className="w-4 h-4" />
8383
<span className="sr-only">Open menu</span>
8484
</DropdownMenuTrigger>
8585
<DropdownMenuContent

0 commit comments

Comments
 (0)