show wait

This commit is contained in:
Alberto Xamin 2020-11-29 22:05:16 +01:00
parent a10dee0bfd
commit 11ea738f64
No known key found for this signature in database
GPG Key ID: 4F026F48309500A2
2 changed files with 2 additions and 1 deletions

View File

@ -64,7 +64,7 @@ export default {
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0,0,0,0.8); /* Black background with opacity */
background-color: rgba(0,0,0,0.7); /* Black background with opacity */
z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
display: flex;
color: white;

View File

@ -31,6 +31,7 @@
<transition name="list">
<p v-if="hint"><i>{{hint}}</i></p>
</transition>
<Chooser v-if="is_my_turn && pending_action == 4" :text="$t('wait')" :cards="[]"/>
<Chooser v-if="card_against" :text="$t('card_against')" :cards="visiblePlayers" :select="selectAgainst" :cancel="cancelCardAgainst"/>
<Chooser v-if="pending_action == 3" :text="respondText" :cards="respondCards" :select="respond"/>
<Chooser v-if="shouldChooseCard" :text="$t('choose_card_to_get')" :cards="available_cards" :select="choose"/>