diff --git a/src/components/BulgarianSolitaire.tsx b/src/components/BulgarianSolitaire.tsx index 2730f26..b9910fc 100644 --- a/src/components/BulgarianSolitaire.tsx +++ b/src/components/BulgarianSolitaire.tsx @@ -476,11 +476,11 @@ const BulgarianSolitaire: React.FC = ({ showSocialShare 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) && animationPhase === 'fade-to-red' - ? 'animate-fade-to-red shadow-lg scale-110 text-white' + ? 'animate-fade-to-red shadow-lg text-white' : highlightedBoxes.has(boxId) && (animationPhase === 'red-pause' || animationPhase === 'moving') - ? 'bg-red-500 text-white shadow-lg scale-110' + ? 'bg-red-500 text-white shadow-lg' : highlightedBoxes.has(boxId) && animationPhase === 'fade-from-red' - ? 'animate-fade-from-red shadow-lg scale-110' + ? 'animate-fade-from-red shadow-lg' : 'bg-primary text-primary-foreground hover:bg-primary/80' }`} title="Drag to move or double-click to move to last-used column"