Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
fix(call): separate element
Browse files Browse the repository at this point in the history
fix #954
  • Loading branch information
lemredd committed Nov 15, 2022
1 parent 375688c commit aec3e9b
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions components/consultation/call/other_participants.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
<div class="other-participants">
<div
v-for="participant in otherParticipants"
:id="participant.remoteID"
:key="participant.remoteID"
class="track-container">
<div
:id="participant.remoteID"
class="participant-container">
</div>
</div>
</div>
</template>
Expand All @@ -29,11 +32,14 @@
@apply m-1;
@apply bg-blue-gray-400 bg-opacity-20;
width: 100%;
height: 100%;
max-height:600px;
min-height:300px;
position: absolute;
.participant-container {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
max-height:600px;
min-height:300px;
}
}
}
</style>
Expand Down

0 comments on commit aec3e9b

Please sign in to comment.