Moved to an easier dictionary and added invalid word guesses back
All checks were successful
/ publish (push) Successful in 1m19s

Also added a spinner
This commit is contained in:
Leon Mika 2025-04-05 09:33:22 +11:00
parent 36b079681c
commit 566f55ed12
7 changed files with 105 additions and 57 deletions

View file

@ -217,4 +217,26 @@ div.overlay-message {
.hide {
display: none !important;
}
.loader {
margin-top: 6rem;
width: 48px;
height: 48px;
border: 5px solid #FFF;
border-bottom-color: var(--color-no-letter-bg);
border-radius: 50%;
display: inline-block;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}