web-remote/src/app/components/settings/stage-chord-preview/stage-chord-preview.compone...

14 lines
426 B
HTML

<div class="stage-preview-container" #stageViewContainer>
<app-stage-view
#stageView
*ngIf="stageType === 'stage'"
[embedded]="true"
[style.--openlp-stage-font-scale]="fontScale"
></app-stage-view>
<app-chord-view
#chordsView
*ngIf="stageType === 'chords'"
[embedded]="true"
[style.--openlp-stage-font-scale]="fontScale"
></app-chord-view>
</div>