Skip to content

Commit

Permalink
Update solo overlay to work with the new team animations
Browse files Browse the repository at this point in the history
  • Loading branch information
slmnio committed May 12, 2023
1 parent 85baf18 commit 7873366
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion website/src/components/broadcast/IngameTeam.vue
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export default {
<style scoped>
.ingame-team {
--team-expand: 0px;
width: calc(690px + var(--team-expand));
width: calc(567px + var(--team-expand));
height: 48px;
display: flex;
Expand Down
4 changes: 2 additions & 2 deletions website/src/components/broadcast/SoloOverlay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<div class="solo-pixel-info">200px</div>
<transition-group name="fade" mode="out-in">
<IngameTeam :key="`${team.name}-${i}`" v-for="(team, i) in teams"
:team="team" :right="i === 1" :score="scores[i]"/>
:team="team" :right="i === 1" :score="scores[i]" :active="true"/>
</transition-group>
<!-- :score="scores[i]" :hideScores="broadcast.hide_scores"
:width="teamWidth" :codes="codes" -->

<transition name="mid" mode="out-in">
<Middle v-if="autoMiddle" :text="autoMiddle" :key="autoMiddle" />
<Middle v-if="autoMiddle" :text="autoMiddle" :key="autoMiddle" :active="true" :tiny="true" />
</transition>
</div>

Expand Down

0 comments on commit 7873366

Please sign in to comment.