openvidu/openvidu-components-angular/projects/openvidu-angular/src/lib/components/session/session.component.html

26 lines
670 B
HTML
Raw Normal View History

<div id="session-container">
<mat-sidenav-container class="sidenav-container">
<mat-sidenav
#sidenav
mode="{{ sidenavMode }}"
position="end"
class="sidenav-menu"
fixedInViewport="true"
fixedTopGap="0"
fixedBottomGap="0"
>
<ng-container *ngTemplateOutlet="panelTemplate"></ng-container>
</mat-sidenav>
<mat-sidenav-content class="sidenav-main">
<div id="layout-container">
<ng-container *ngTemplateOutlet="layoutTemplate"></ng-container>
</div>
</mat-sidenav-content>
</mat-sidenav-container>
<div id="footer-container" class="ovToolbar">
<ng-container *ngTemplateOutlet="toolbarTemplate"></ng-container>
</div>
</div>