Make CallView use CallFeed

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-03-07 08:13:35 +01:00
parent 62e9d7f46b
commit bb13dc49a6
No known key found for this signature in database
GPG key ID: 9760693FDD98A790
5 changed files with 185 additions and 68 deletions

View file

@ -112,6 +112,7 @@ limitations under the License.
z-index: 30;
border-radius: 8px;
overflow: hidden;
display: flex;
}
.mx_CallView_video_hold {

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 {