This commit is contained in:
2021-10-22 23:10:23 +02:00
parent ec2617b9d6
commit cdecdf41fa
8 changed files with 296 additions and 38 deletions

View File

@@ -12,6 +12,7 @@
</caption>
<thead v-if="team_id === 0">
<tr>
<th class="player__vac"></th>
<th class="player__avatar"></th>
<th class="player__name"></th>
<th class="player__rank"></th>
@@ -53,6 +54,10 @@
:rounds_played="store.state.matchDetails.score.reduce((a, b) => a + b)"
:steamid64="player.player.steamid64"
:tracked="player.player.tracked"
:vac="player.player.vac"
:vac_date="player.player.vac_date"
:game_ban="player.player.game_ban"
:game_ban_date="player.player.game_ban_date"
/>
</tr>
<tr v-if="team_id === 0" class="hr"></tr>
@@ -120,6 +125,10 @@ table {
height: 20px;;
border-bottom: 1px solid white;
}
.player__vac {
width: 20px;
}
}
@media (max-width: 1200px) {