fix(14): styling and text of message

This commit is contained in:
efim 2023-07-02 06:26:28 +00:00
parent 697985a480
commit 4a5a13f6d4
2 changed files with 2 additions and 2 deletions

View File

@ -141,7 +141,7 @@
th:classappend="${showdownState.gameResult.nonEmpty} ? '' : 'invisible'" th:classappend="${showdownState.gameResult.nonEmpty} ? '' : 'invisible'"
> >
<p <p
class="text-6xl tracking-wide text-center uppercase" class="text-6xl font-bold text-center uppercase"
th:text="${showdownState.gameResult.nonEmpty} ? 'You ' + ${showdownState.gameResult.get} : 'awesome'" th:text="${showdownState.gameResult.nonEmpty} ? 'You ' + ${showdownState.gameResult.get} : 'awesome'"
> >
You lose You lose

View File

@ -120,7 +120,7 @@ position: absolute;
if (player == house) { if (player == house) {
"tied" "tied"
} else if (player.isBeating(house)) { } else if (player.isBeating(house)) {
"won" "win"
} else "lose" } else "lose"
}) })
} }