Skip to content

Commit 89d009c

Browse files
committed
feat(ui): add cursor-pointer in the navbar section (Closes #17)
1 parent 40b5f22 commit 89d009c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/_components/navigation.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default function Navigation({
4949
<button
5050
onClick={() => setActiveTab(tab.id)}
5151
className={cn(
52-
"py-4 px-2 text-[10px] font-medium border-b-2 transition-colors flex flex-col gap-1 items-center justify-between w-full m-0",
52+
"py-4 px-2 text-[10px] font-medium border-b-2 transition-colors flex flex-col gap-1 items-center justify-between w-full m-0 cursor-pointer",
5353
activeTab === tab.id
5454
? "border-primary text-primary"
5555
: "border-transparent text-muted-foreground hover:text-foreground"
@@ -63,7 +63,7 @@ export default function Navigation({
6363
<button
6464
onClick={() => setActiveTab(tab.id)}
6565
className={cn(
66-
"py-4 px-2 text-sm font-medium border-b-2 transition-colors",
66+
"py-4 px-2 text-sm font-medium border-b-2 transition-colors cursor-pointer",
6767
activeTab === tab.id
6868
? "border-primary text-primary"
6969
: "border-transparent text-muted-foreground hover:text-foreground"

0 commit comments

Comments
 (0)