Skip to content

Commit

Permalink
cursor pointer on title
Browse files Browse the repository at this point in the history
  • Loading branch information
subinsk committed Jan 15, 2023
1 parent fced206 commit c47386c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/courses/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export default function Courses() {
.map((course: any) => {
return (
<div
className="cursor-pointer bg-primary/5 shadow-xl duration-150 transition-all p-6 w-full md:w-[20rem] rounded-md flex flex-col gap-3"
className=" bg-primary/5 shadow-xl duration-150 transition-all p-6 w-full md:w-[20rem] rounded-md flex flex-col gap-3"
key={course.id}
>
<div className="flex gap-7 items-center justify-between">
Expand All @@ -194,7 +194,7 @@ export default function Courses() {
'/courses/' + course.id
)
}
className="font-semibold text-primary hover:underline duration-150 transition-all text-xl"
className="font-semibold cursor-pointer text-primary hover:underline duration-150 transition-all text-xl"
>
{course.title}
</p>
Expand Down

0 comments on commit c47386c

Please sign in to comment.