2021-05-03 21:39:24 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-05-03 21:39:24 +08:00
|
|
|
Copyright 2021 Šimon Brandner <simon.bra.ag@gmail.com>
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2021-05-03 21:39:24 +08:00
|
|
|
*/
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallPreview {
|
2022-12-28 21:43:44 +08:00
|
|
|
align-items: flex-end;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: $spacing-16;
|
2021-05-03 21:39:24 +08:00
|
|
|
left: 0;
|
2022-12-28 21:43:44 +08:00
|
|
|
position: fixed;
|
2021-05-03 21:39:24 +08:00
|
|
|
top: 0;
|
2023-01-04 12:44:38 +08:00
|
|
|
/* Display above any widget elements */
|
|
|
|
z-index: 102;
|
2021-08-22 21:22:21 +08:00
|
|
|
|
|
|
|
.mx_VideoFeed_remote.mx_VideoFeed_voice {
|
|
|
|
min-height: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_VideoFeed_local {
|
|
|
|
border-radius: 8px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2021-05-03 21:39:24 +08:00
|
|
|
}
|