diff --git a/pac-man-board-game/ClientApp/src/components/gameButton.tsx b/pac-man-board-game/ClientApp/src/components/gameButton.tsx index ac434a8..9e96d26 100644 --- a/pac-man-board-game/ClientApp/src/components/gameButton.tsx +++ b/pac-man-board-game/ClientApp/src/components/gameButton.tsx @@ -15,12 +15,12 @@ const GameButton: Component = ( }) => { const currentPlayer = useAtomValue(currentPlayerAtom); const thisPlayer = useAtomValue(thisPlayerAtom); - + if (currentPlayer === undefined || currentPlayer.State === State.waitingForPlayers) { return ; } if (!thisPlayer?.isTurn()) { - return ; + return ; } return ; }; diff --git a/pac-man-board-game/ClientApp/src/index.css b/pac-man-board-game/ClientApp/src/index.css index a1adf7a..13ce7d5 100644 --- a/pac-man-board-game/ClientApp/src/index.css +++ b/pac-man-board-game/ClientApp/src/index.css @@ -26,3 +26,7 @@ br { button, button[type=submit], input[type=button], input[type=submit] { @apply bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded; } + +button[disabled] { + @apply bg-gray-500; +}