Skip to content

Commit acc916d

Browse files
committed
implement dark background for tailwind cssA
1 parent 58b7e86 commit acc916d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/app/tictactoe/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ export default function TicTacToe() {
331331
key={i}
332332
onClick={() => handleCellClick(i)}
333333
disabled={!canMakeMove || cell !== ""}
334-
className={`border-2 border-black w-full h-full flex items-center justify-center text-3xl font-bold ${
334+
className={`border-2 border-black dark:border-white w-full h-full flex items-center justify-center text-3xl font-bold ${
335335
canMakeMove && cell === "" ? "cursor-pointer hover:bg-gray-100 active:bg-gray-200" : "cursor-not-allowed opacity-60"
336336
}`}
337337
>

0 commit comments

Comments
 (0)