Skip to content

Commit b730685

Browse files
committed
Added cursor pointer on the DropdownMenuItems
1 parent 254fc9c commit b730685

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/js/components/UserMenuContent.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ defineProps<Props>();
2121
<DropdownMenuSeparator />
2222
<DropdownMenuGroup>
2323
<DropdownMenuItem :as-child="true">
24-
<Link class="block w-full" :href="route('profile.edit')" as="button">
24+
<Link class="block w-full cursor-pointer" :href="route('profile.edit')" as="button">
2525
<Settings class="mr-2 h-4 w-4" />
2626
Settings
2727
</Link>
2828
</DropdownMenuItem>
2929
</DropdownMenuGroup>
3030
<DropdownMenuSeparator />
3131
<DropdownMenuItem :as-child="true">
32-
<Link class="block w-full" method="post" :href="route('logout')" as="button">
32+
<Link class="block w-full cursor-pointer" method="post" :href="route('logout')" as="button">
3333
<LogOut class="mr-2 h-4 w-4" />
3434
Log out
3535
</Link>

0 commit comments

Comments
 (0)