Skip to content

Commit

Permalink
Finalizado la eliminación de la pantalla resultado.
Browse files Browse the repository at this point in the history
  • Loading branch information
uo287568 committed Apr 17, 2024
1 parent 212f5fe commit 9354cfb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/main/resources/static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,8 @@ footer {

.nav .nav-link:hover {
color: rgba(255, 255, 255, 0.7) !important; /* Cambia el color del texto del enlace cuando se pasa el mouse */
}

.prueba {
font-weight: bold;
}
2 changes: 1 addition & 1 deletion src/main/resources/templates/game/fragments/gameFrame.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ <h1 class="text-center" th:text="${question.statement}"></h1>
<div th:each="answer, iterStat : ${question.returnScrambledOptions()}" class="col-6 col-md-6 col-12">
<button th:id="${'btn' + answer.id}" class="btn btn-primary btn-block m-2 rounded" th:text="${answer.text}" th:value="${answer}"></button>
</div>
<button id="continueBtn" th:text="#{game.continue}"></button>
</div>
<button id="continueBtn" class="prueba btn btn-primary btn-block m-2 rounded" th:text="#{game.continue}"></button>
</div>
<div id="bottomGamePart">
<div th:replace="~{game/fragments/stopwatch}"></div>
Expand Down

0 comments on commit 9354cfb

Please sign in to comment.