mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 06:35:35 +08:00
88ba24f362
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
59 lines
1.4 KiB
SCSS
59 lines
1.4 KiB
SCSS
/*
|
|
Copyright 2015, 2016, 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.mx_VideoFeed_primary {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
&.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;
|
|
}
|
|
}
|
|
|
|
.mx_VideoFeed_secondary {
|
|
border-radius: 4px;
|
|
width: 100%;
|
|
margin-bottom: 12px;
|
|
|
|
&.mx_VideoFeed_voice {
|
|
background-color: $inverted-bg-color;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
min-width: 160px;
|
|
min-height: 90px;
|
|
}
|
|
|
|
&.mx_VideoFeed_video {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
.mx_VideoFeed_mirror {
|
|
transform: scale(-1, 1);
|
|
}
|