This commit is contained in:
Владимир Фёдоров 2025-05-31 04:09:23 +07:00
parent ceb744ec12
commit 6180cbffa1

View File

@ -29,7 +29,7 @@
const team = ref<Team>({name: "", actions: []})
const actions = ref<Action[]>([])
const scrollContainer = ref<HTMLDivElement | null>();
const gameState = ref("")
const gameState = ref("STOP")
const gameStateText = ref("")
function getTeam() {
@ -163,7 +163,7 @@
:disabled="gameState == 'STOP'">
</div>
<div class="button-container">
<div class="second-color">{{ gameStateText }}</div>
<div class="second-color info-custom">{{ gameStateText }}</div>
<button
class="button-custom"
type="submit"
@ -218,6 +218,10 @@ body {
font-size: medium;
}
.info-custom {
padding-left: 15px;
}
.logo {
float: left;
margin: 10px;