Fix some sizing issue on video feeds

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-08-22 10:10:05 +02:00
parent 61188561d2
commit d29a18b182
No known key found for this signature in database
GPG Key ID: 55C211A1226CB17D
2 changed files with 6 additions and 2 deletions

View File

@ -33,10 +33,9 @@ limitations under the License.
> .mx_VideoFeed {
width: 100%;
border-radius: 4px;
&.mx_VideoFeed_voice {
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;

View File

@ -19,6 +19,7 @@ limitations under the License.
position: relative;
box-sizing: border-box;
border: transparent 2px solid;
display: flex;
&.mx_VideoFeed_voice {
background-color: $inverted-bg-color;
@ -27,6 +28,10 @@ limitations under the License.
&.mx_VideoFeed_speaking {
border: $accent-color 2px solid;
.mx_VideoFeed_video {
border-radius: 0;
}
}
.mx_VideoFeed_video {