Skip to content

Commit 65bc0d4

Browse files
author
Héctor Tovar
committed
style: enhance problem list table row with hover effects
1 parent ac4fa73 commit 65bc0d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/_components/week/weekInfo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ const WeekInfo = async ({ id }: { id: string }) => {
9191
</thead>
9292
<tbody>
9393
{week.problems.map((problem) => (
94-
<tr key={problem.id} className="text-white">
94+
<tr key={problem.id} className="text-white transition duration-300 hover:scale-[1.01] hover:bg-gray-800/50 cursor-pointer">
9595
<td className="py-2">
9696
<a
9797
href={problem.leetcodeUrl}

0 commit comments

Comments
 (0)