Skip to content

Commit

Permalink
Small fix of listen in bug
Browse files Browse the repository at this point in the history
  • Loading branch information
slmnio committed Sep 8, 2023
1 parent f44c2f1 commit 70793b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="overlay ingame-comms-overlay" v-if="match && match.teams">
<div class="teams" :class="{'flip': match.flip_teams}" :style="{ marginTop: topOffset }">
<div class="team" v-for="(team, i) in match.teams" :key="team.id" :style="{ width: teamWidth }" :class="{'left': match.flip_teams ? i === 1 : i === 0}">
<ThemeTransition class="listen-in-holder" :duration="250" :theme="team.theme"
<ThemeTransition class="listen-in-holder" :duration="250" :theme="team.theme" use-fit-content
:active="activeTeamIndex === i"
:start="match.flip_teams ? i === 1 : i === 0 ? 'left' : 'right'"
:end="match.flip_teams ? i === 1 : i === 0 ? 'right' : 'left'">
Expand Down

0 comments on commit 70793b3

Please sign in to comment.