diff --git a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/chat-panel/chat-panel.component.css b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/chat-panel/chat-panel.component.css index 06ffa974..fc1a9fc0 100644 --- a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/chat-panel/chat-panel.component.css +++ b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/chat-panel/chat-panel.component.css @@ -2,8 +2,8 @@ margin: 20px; background-color: var(--ov-light-color); border-radius: var(--ov-panel-radius); - height: -webkit-fill-available; - height: -moz-available; + max-height: calc(100% - 40px); + min-height: calc(100% - 40px); } .header-container { diff --git a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/participants-panel/participant-panel-item/participant-panel-item.component.ts b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/participants-panel/participant-panel-item/participant-panel-item.component.ts index 9e2bc6b2..b5b4a01b 100644 --- a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/participants-panel/participant-panel-item/participant-panel-item.component.ts +++ b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/participants-panel/participant-panel-item/participant-panel-item.component.ts @@ -45,8 +45,6 @@ export class ParticipantPanelItemComponent implements OnInit, OnDestroy { private subscribeToParticipantPanelItemDirectives() { this.muteButtonSub = this.libService.participantItemMuteButton.subscribe((value: boolean) => { - console.warn("show mute", value); - this.showMuteButton = value; this.cd.markForCheck(); }); diff --git a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/participants-panel/participants-panel/participants-panel.component.css b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/participants-panel/participants-panel/participants-panel.component.css index e381b608..ed5b7984 100644 --- a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/participants-panel/participants-panel/participants-panel.component.css +++ b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/panel/participants-panel/participants-panel/participants-panel.component.css @@ -2,8 +2,8 @@ margin: 20px; background-color: var(--ov-light-color); border-radius: var(--ov-panel-radius); - height: -webkit-fill-available; - height: -moz-available; + max-height: calc(100% - 40px); + min-height: calc(100% - 40px); } .header-container { diff --git a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/pre-join/pre-join.component.css b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/pre-join/pre-join.component.css index fa00db67..20fbd25b 100644 --- a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/pre-join/pre-join.component.css +++ b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/pre-join/pre-join.component.css @@ -4,6 +4,10 @@ background-color: var(--ov-light-dark-color); } +#layout-container { + display: block !important; +} + h4 { margin-bottom: 1px; font-weight: bold; diff --git a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/pre-join/pre-join.component.html b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/pre-join/pre-join.component.html index 31c1ab99..1165162b 100644 --- a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/pre-join/pre-join.component.html +++ b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/pre-join/pre-join.component.html @@ -1,5 +1,5 @@