Make CallView use CallFeed

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner
2021-03-10 12:18:57 +01:00
parent 62e9d7f46b
commit bb13dc49a6
5 changed files with 185 additions and 68 deletions
+1
View File
@@ -112,6 +112,7 @@ limitations under the License.
z-index: 30;
border-radius: 8px;
overflow: hidden;
display: flex;
}
.mx_CallView_video_hold {
+14 -4
View File
@@ -14,11 +14,21 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
.mx_VideoFeed_remote {
width: 100%;
height: 100%;
.mx_VideoFeed_voice {
// We don't want to collide with the call controls that have 52px of height
padding-bottom: 52px;
background-color: $inverted-bg-color;
}
.mx_VideoFeed_video {
background-color: #000;
z-index: 50;
}
.mx_VideoFeed_remote {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
.mx_VideoFeed_local {