diff --git a/src/components/ChessboardRepaintPuzzle.tsx b/src/components/ChessboardRepaintPuzzle.tsx index e1b1b99..58b589c 100644 --- a/src/components/ChessboardRepaintPuzzle.tsx +++ b/src/components/ChessboardRepaintPuzzle.tsx @@ -221,7 +221,6 @@ const ChessboardRepaintPuzzle: React.FC = ({ showS transition-all duration-200 hover:scale-105 ${isBlack ? 'bg-gray-800' : 'bg-gray-100'} ${isAffected ? 'border-2 border-red-500' : ''} - ${isBottomRight ? 'bg-yellow-50' : ''} `} title={isBottomRight ? `Hover for 3s to switch mode (current: ${bottomRightMode})` : undefined} /> @@ -320,10 +319,7 @@ const ChessboardRepaintPuzzle: React.FC = ({ showS
Hover to preview affected squares -
-
- Bottom-right corner (switchable mode) -
+ @@ -355,7 +351,7 @@ const ChessboardRepaintPuzzle: React.FC = ({ showS
  • Repaint a 2×2 square: Click any square to flip all four squares in the 2×2 region with that square as the top-left corner.
  • Repaint a row: Click any square in the rightmost column to flip all squares in that entire row.
  • Repaint a column: Click any square in the bottom row to flip all squares in that entire column.
  • -
  • Bottom-right corner: Hover for 3 seconds to switch between row and column mode. The corner square is highlighted in light yellow.
  • +
  • Bottom-right corner: Hover for 3 seconds to switch between row and column mode.
  • Preview: Hover over any square to see which squares will be affected (highlighted with red border).
  • Goal: Achieve exactly one black square on the entire board.