Fix some sizing issue on video feeds
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>pull/21833/head
parent
61188561d2
commit
d29a18b182
|
@ -33,10 +33,9 @@ limitations under the License.
|
||||||
|
|
||||||
> .mx_VideoFeed {
|
> .mx_VideoFeed {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
&.mx_VideoFeed_voice {
|
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
|
||||||
|
&.mx_VideoFeed_voice {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
|
@ -19,6 +19,7 @@ limitations under the License.
|
||||||
position: relative;
|
position: relative;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border: transparent 2px solid;
|
border: transparent 2px solid;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
&.mx_VideoFeed_voice {
|
&.mx_VideoFeed_voice {
|
||||||
background-color: $inverted-bg-color;
|
background-color: $inverted-bg-color;
|
||||||
|
@ -27,6 +28,10 @@ limitations under the License.
|
||||||
|
|
||||||
&.mx_VideoFeed_speaking {
|
&.mx_VideoFeed_speaking {
|
||||||
border: $accent-color 2px solid;
|
border: $accent-color 2px solid;
|
||||||
|
|
||||||
|
.mx_VideoFeed_video {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_VideoFeed_video {
|
.mx_VideoFeed_video {
|
||||||
|
|
Loading…
Reference in New Issue