diff --git a/app/globals.css b/app/globals.css index dc98be7..b179344 100644 --- a/app/globals.css +++ b/app/globals.css @@ -120,3 +120,7 @@ @apply bg-background text-foreground; } } + +.chess-piece { + font-family: 'GeistSans', 'GeistSans Fallback', sans-serif; +} diff --git a/components/chess-square.tsx b/components/chess-square.tsx index 5c96068..0c1be8c 100644 --- a/components/chess-square.tsx +++ b/components/chess-square.tsx @@ -27,7 +27,7 @@ export default function ChessSquare({ piece, position, isLight, isSelected, isVa {piece && ( diff --git a/components/game-info.tsx b/components/game-info.tsx index 7112b1a..0f28cb2 100644 --- a/components/game-info.tsx +++ b/components/game-info.tsx @@ -87,7 +87,7 @@ export default function GameInfo({ currentPlayer, gameStatus, moveHistory, captu
{capturedPieces[PieceColor.BLACK].length > 0 ? ( capturedPieces[PieceColor.BLACK].map((piece, i) => ( - + {getPieceSymbol(piece)} )) @@ -104,7 +104,7 @@ export default function GameInfo({ currentPlayer, gameStatus, moveHistory, captu
{capturedPieces[PieceColor.WHITE].length > 0 ? ( capturedPieces[PieceColor.WHITE].map((piece, i) => ( - + {getPieceSymbol(piece)} ))