Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/CallView/Grid/Grid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ export default {
&:not(.stripe) {
grid-row-gap: 8px;
grid-column-gap: 8px;
padding: 0 8px 8px 8px;
padding: 1px 8px 8px 8px;
}
}

Expand Down
2 changes: 2 additions & 0 deletions src/components/CallView/shared/LocalVideo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,7 @@ export default {
left: 0;
box-shadow: inset 0 0 0 3px white;
cursor: pointer;
border-radius: var(--border-radius-large);
}

.bottom-bar {
Expand Down Expand Up @@ -413,6 +414,7 @@ export default {
// Always display the local video in the last row
#localVideoContainer {
grid-row-end: -1;
border-radius: var(--border-radius-large);
}

</style>
3 changes: 3 additions & 0 deletions src/components/CallView/shared/Video.vue
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,7 @@ export default {
.video {
height: 100%;
width: 100%;
border-radius: var(--border-radius-large);
}

.videoWrapper.icon-loading:after {
Expand Down Expand Up @@ -605,6 +606,7 @@ export default {
top: 0;
left: 0;
box-shadow: inset 0 0 0 2px white;
border-radius: var(--border-radius-large);
}

.hover-shadow {
Expand All @@ -615,6 +617,7 @@ export default {
left: 0;
box-shadow: inset 0 0 0 3px white;
cursor: pointer;
border-radius: var(--border-radius-large);
}

</style>