Fix call position upon entering fullscreen after moving pip
This commit is contained in:
parent
79fcd7eea8
commit
dde59f3596
2 changed files with 5 additions and 1 deletions
|
@ -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">
|
||||
|
|
|
@ -14,6 +14,10 @@
|
|||
background-color: var(--bg-surface);
|
||||
}
|
||||
|
||||
.reset_pip {
|
||||
transform: translate(0px) !important;
|
||||
}
|
||||
|
||||
.call_header {
|
||||
text-align: center;
|
||||
margin-top: 1rem;
|
||||
|
|
Loading…
Reference in a new issue