Keep inspector from covering call buttons

This commit is contained in:
Robin Townsend 2023-04-19 14:43:37 -04:00
parent 30a224e20e
commit 6ad4663508
2 changed files with 10 additions and 3 deletions

View file

@ -15,7 +15,6 @@ limitations under the License.
*/ */
.inRoom { .inRoom {
position: relative;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
@ -26,6 +25,12 @@ limitations under the License.
--footerHeight: calc(50px + 2 * var(--footerPadding)); --footerHeight: calc(50px + 2 * var(--footerPadding));
} }
.controlsOverlay {
position: relative;
flex: 1;
display: flex;
}
.centerMessage { .centerMessage {
display: flex; display: flex;
flex: 1; flex: 1;

View file

@ -438,8 +438,10 @@ export function InCallView({
</RightNav> </RightNav>
</Header> </Header>
)} )}
{renderContent()} <div className={styles.controlsOverlay}>
{footer} {renderContent()}
{footer}
</div>
<GroupCallInspector <GroupCallInspector
client={client} client={client}
groupCall={groupCall} groupCall={groupCall}