fix
This commit is contained in:
parent
ceb744ec12
commit
6180cbffa1
@ -29,7 +29,7 @@
|
|||||||
const team = ref<Team>({name: "", actions: []})
|
const team = ref<Team>({name: "", actions: []})
|
||||||
const actions = ref<Action[]>([])
|
const actions = ref<Action[]>([])
|
||||||
const scrollContainer = ref<HTMLDivElement | null>();
|
const scrollContainer = ref<HTMLDivElement | null>();
|
||||||
const gameState = ref("")
|
const gameState = ref("STOP")
|
||||||
const gameStateText = ref("")
|
const gameStateText = ref("")
|
||||||
|
|
||||||
function getTeam() {
|
function getTeam() {
|
||||||
@ -163,7 +163,7 @@
|
|||||||
:disabled="gameState == 'STOP'">
|
:disabled="gameState == 'STOP'">
|
||||||
</div>
|
</div>
|
||||||
<div class="button-container">
|
<div class="button-container">
|
||||||
<div class="second-color">{{ gameStateText }}</div>
|
<div class="second-color info-custom">{{ gameStateText }}</div>
|
||||||
<button
|
<button
|
||||||
class="button-custom"
|
class="button-custom"
|
||||||
type="submit"
|
type="submit"
|
||||||
@ -218,6 +218,10 @@ body {
|
|||||||
font-size: medium;
|
font-size: medium;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.info-custom {
|
||||||
|
padding-left: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
float: left;
|
float: left;
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user