Fix call position upon entering fullscreen after moving pip

This commit is contained in:
IceDBorn 2023-03-24 11:32:57 +02:00
parent 79fcd7eea8
commit dde59f3596
2 changed files with 5 additions and 1 deletions

View file

@ -71,7 +71,7 @@ function JitsiRoom({ isJitsiRoom, setIsJitsiRoom }) {
if (jitsiCallId) {
return (
<Draggable disabled={isJitsiRoom}>
<div className="call">
<div className={isJitsiRoom ? 'call reset_pip' : 'call'}>
<div className={isJitsiRoom ? 'call_header' : 'call_header pip_header'} ref={openerRef}>
{roomName} / {spaceName}
<div className="call_buttons">

View file

@ -14,6 +14,10 @@
background-color: var(--bg-surface);
}
.reset_pip {
transform: translate(0px) !important;
}
.call_header {
text-align: center;
margin-top: 1rem;