fix: correct cell content styling order in DraftGrid component

This commit is contained in:
Chris Parsons 2025-10-24 21:25:02 -07:00
parent 74aea1677b
commit 50a94d62af

View file

@ -106,10 +106,10 @@ export function DraftGrid({
const cellContent = (
<div
className={`flex-1 min-w-0 h-20 border-2 rounded-lg p-2 transition-all ${
isCurrent
? "border-blue-500 bg-blue-50 dark:bg-blue-950 shadow-lg"
: isPicked
? "border-green-500 bg-green-50 dark:bg-green-950"
isPicked
? "border-green-500 bg-green-50 dark:bg-green-950"
: isCurrent
? "border-blue-500 bg-blue-50 dark:bg-blue-950 shadow-lg"
: "border-gray-300 bg-white dark:bg-gray-900"
}`}
title={`Overall Pick #${pickNumber}`}