Skip to content

Commit

Permalink
period
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasahle committed Dec 2, 2023
1 parent 32da527 commit c5c5c6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion website/game.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ async function main(date, datas) {
let got = data.secret.filter(w => data.revealed.includes(w)).length;
winLoseText.innerHTML = isWon(data)
? "Hurray! You Won!"
: `You got ${got} out of ${SECRETS}`;
: `You got ${got} out of ${SECRETS}.`;
}
else if (data.hints.length != 0) {
const {clue, n} = data.hints[data.hints.length-1];
Expand Down
6 changes: 3 additions & 3 deletions website/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ body.round-over {
background: #faf8f8;
}

body.game-won {
background: #fff9e2;
body.game-win {
background: #fffae6;
}
body.game-lost {
background: ##ffefef;
background: #ffefef;
}

.container {
Expand Down

0 comments on commit c5c5c6c

Please sign in to comment.