diff --git a/src/components/BulgarianSolitaire.tsx b/src/components/BulgarianSolitaire.tsx index 1cac503..955519f 100644 --- a/src/components/BulgarianSolitaire.tsx +++ b/src/components/BulgarianSolitaire.tsx @@ -440,10 +440,12 @@ const BulgarianSolitaire: React.FC = ({ showSocialShare onDragStart={(e) => handleDragStart(e, boxId)} onDoubleClick={() => handleDoubleClick(boxId)} className={`w-8 h-8 rounded cursor-move transition-all duration-300 flex items-center justify-center text-xs font-medium mx-auto ${ - highlightedBoxes.has(boxId) + isAnimating && highlightedBoxes.has(boxId) + ? 'animate-[fade-red_1.6s_ease-in-out_infinite] shadow-lg scale-110 text-white' + : highlightedBoxes.has(boxId) ? 'bg-red-500 text-white shadow-lg scale-110' : 'bg-primary text-primary-foreground hover:bg-primary/80' - } ${isAnimating && highlightedBoxes.has(boxId) ? 'animate-[fade-red_1.6s_ease-in-out_infinite]' : ''}`} + }`} title="Drag to move or double-click to move to last-used column" > @@ -485,7 +487,7 @@ const BulgarianSolitaire: React.FC = ({ showSocialShare {showInstructions && (