Browse Source

fix: add cursor-pointer to sidebar navigation menu items #61

Claude 5 months ago
parent
commit
e2aad2d3b8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      shopcall.ai-main/src/components/AppSidebar.tsx

+ 2 - 2
shopcall.ai-main/src/components/AppSidebar.tsx

@@ -86,7 +86,7 @@ export function AppSidebar() {
                         isActive ? 'bg-cyan-500 text-white hover:bg-cyan-600' : ''
                       }`}
                     >
-                      <a onClick={() => {navigate(item.url)}} className="flex items-center gap-3 px-3 py-2 rounded-lg">
+                      <a onClick={() => {navigate(item.url)}} className="flex items-center gap-3 px-3 py-2 rounded-lg cursor-pointer">
                         <item.icon className="w-4 h-4" />
                         <span>{item.title}</span>
                       </a>
@@ -114,7 +114,7 @@ export function AppSidebar() {
                         isActive ? 'bg-cyan-500 text-white hover:bg-cyan-600' : ''
                       }`}
                     >
-                      <a onClick={() => {navigate(item.url)}} className="flex items-center gap-3 px-3 py-2 rounded-lg">
+                      <a onClick={() => {navigate(item.url)}} className="flex items-center gap-3 px-3 py-2 rounded-lg cursor-pointer">
                         <item.icon className="w-4 h-4" />
                         <span>{item.title}</span>
                       </a>