[Feat] : move end turn button, remove self statistics overlay
release-tag / release-image (push) Successful in 29s

Closes #18
This commit is contained in:
2024-05-16 11:43:59 +02:00
parent 12589f1fb4
commit 6d3a11577b
3 changed files with 30 additions and 44 deletions
+7 -3
View File
@@ -92,14 +92,18 @@ const prepare_champion = (target: Card) => run_effect(CardEffects.PREPARE, targe
</div>
</template>
<div id="player_banner">
<div class="ready-bubble not-ready" v-if="!props.player.ready && !goStore.current_game?.started">Pas encore prêt...</div>
<div class="ready-bubble not-ready" v-if="!props.player.ready && !goStore.current_game?.started">Pas encore
prêt...
</div>
<div class="ready-bubble ready" v-if="props.player.ready && !goStore.current_game?.started">Prêt!</div>
<div id="player_info">
<PlayerIcon :player="props.player"></PlayerIcon>
</div>
<div id="player_stats">
<PlayerStats v-if="goStore.current_game?.started" :player="props.player"></PlayerStats>
<template v-if="goStore.current_game?.started">
<PlayerStats v-if="props.player != goStore.self" :player="props.player"></PlayerStats>
<SelfView v-if="props.player === goStore.self" :player="props.player"></SelfView>
</template>
</div>
</div>
<div id="current_player_board">