From b6119878ec477bdeefc9f30e18138b0856b24f82 Mon Sep 17 00:00:00 2001 From: Naiyuan Qing <145280634+NevilleQingNY@users.noreply.github.com> Date: Sun, 29 Mar 2026 17:43:06 +0800 Subject: [PATCH] fix(ui): improve board card hover with shadow and text contrast Cards now show muted title text by default that becomes full contrast on hover, paired with a shadow-md elevation effect. Removes the old opacity-based hover that made cards fade out. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/web/features/issues/components/board-card.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/web/features/issues/components/board-card.tsx b/apps/web/features/issues/components/board-card.tsx index 8c0537ca..d418b103 100644 --- a/apps/web/features/issues/components/board-card.tsx +++ b/apps/web/features/issues/components/board-card.tsx @@ -62,7 +62,7 @@ export function BoardCardContent({ const showBottom = showAssignee || showDueDate; return ( -
+
{/* Priority */} {showPriority && (editable ? ( @@ -91,7 +91,7 @@ export function BoardCardContent({ {/* Title */}

{issue.title}

@@ -197,7 +197,7 @@ export function DraggableBoardCard({ issue }: { issue: Issue }) { >