Skip to content

Commit

Permalink
estilo do placar
Browse files Browse the repository at this point in the history
  • Loading branch information
oieusougabi committed Sep 5, 2023
1 parent 0eef0d4 commit dab03fa
Showing 1 changed file with 27 additions and 4 deletions.
31 changes: 27 additions & 4 deletions src/components/BlocoPreparacao.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,30 @@

<div>
<p class="item-jogador" v-for="(jogador, idJogador) in estado.sala.jogadores" :key="idJogador">
<strong>{{ jogador.apelido }}</strong> ({{ jogador.pontos || 0 }} pontos)
<strong>{{ jogador.apelido }}</strong>

<a role="button" class="outline pontuacao">
{{ jogador.pontos || 0 }}
</a>

<span v-if="jogador.pontos_ultima_rodada">
[{{ jogador.pontos_ultima_rodada }} da última rodada!]

<a role="button" class="outline pontuacao">
+ {{ jogador.pontos_ultima_rodada }}
</a>

</span>
<span v-if="idJogador === estado.sala.mediador">
[mediador]
<a role="button" class="outline pontuacao">
mediador
</a>
</span>
<span v-if="idJogador === estado.meuIdJogador">
[você!]

<a role="button" class="outline pontuacao">
você
</a>

</span>
</p>
</div>
Expand Down Expand Up @@ -82,5 +97,13 @@ function iniciarRodada() {
<style>
.item-jogador {
padding-left: 20px;
margin-bottom: 10px;
}

.pontuacao {
margin-left: 15px;
color: blueviolet;
border-color: blueviolet;
padding: 3px 10px;
}
</style>

0 comments on commit dab03fa

Please sign in to comment.