Skip to content

Commit

Permalink
fix(media): user video class/styling (#3306)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonwoodland committed May 27, 2022
1 parent e8e50a3 commit ea04065
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/views/media/user/User.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</div>
</div>

<div v-if="screenStream">
<div v-if="screenStream" class="video-stream-container">
<video
class="video-stream screen-stream"
:src-object.prop="screenStream"
Expand All @@ -14,7 +14,7 @@
></video>
</div>

<div v-else-if="videoStream">
<div v-else-if="videoStream" class="video-stream-container">
<video
class="video-stream"
:src-object.prop="videoStream"
Expand Down
2 changes: 2 additions & 0 deletions components/views/media/user/User.less
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
width: 100%;
height: 100%;
border-radius: @corner-rounding;
object-fit: cover;
box-shadow: none;
}
}

Expand Down

0 comments on commit ea04065

Please sign in to comment.