petites modifs

This commit is contained in:
Adrien MALINGREY 2025-05-01 18:21:44 +02:00
parent db9b79fb6d
commit 6b6edd369b
2 changed files with 6 additions and 2 deletions

View File

@ -60,7 +60,7 @@ for (let input of inputs) {
) {
sha256(inputs.map((input) => input.value).join("")).then((hash) => {
if (hash == solution_hashee.value) {
if (confirm("Bravo ! \nUne nouvelle partie ?")) {
if (confirm("Bravo !\nUne nouvelle partie ?")) {
grilleForm.submit();
}
}

View File

@ -52,9 +52,13 @@ h2 {
gap: 1em;
}
.grille {
display: flex;
}
.grille table {
border-collapse: collapse;
margin: 0 auto;
margin: auto;
height: fit-content;
}