You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Nothing/src/app/app.component.html

22 lines
922 B

<div *ngIf="!overlayService.isOverlay" class="main-container standalone">
<mat-tab-group mat-stretch-tabs="false" class="tabs">
<mat-tab>
<ng-template mat-tab-label>
<span class="tab-label">Settings</span>
</ng-template>
<settings class="content"></settings>
</mat-tab>
<mat-tab>
<ng-template mat-tab-label>
<span class="tab-label">Editor</span>
</ng-template>
<plan-editor class="content"></plan-editor> </mat-tab>
</mat-tab-group>
</div>
<ng-container *ngIf="overlayService.isOverlay">
<div class="main-container overlay" *ngIf="overlayService.isOverlay"
[ngStyle]="overlayService.interactable ? {'background-color' : configService.config.backdropBg} : {} ">
<plan-display [backgroundColor]="configService.config.planBg"></plan-display>
</div>
</ng-container>