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

15 lines
502 B

<div [ngStyle]="overlayService.visible ? {} : {'display': 'none'}">
<plan-display *ngIf="planService.currentPlan" [backgroundColor]="planColor"></plan-display>
<button (click)="openDialog()">Browse Plans</button>
</div>
<div class="editor" [ngStyle]="overlayService.visible ? {} : {'display': 'none'}">
<plan-editor></plan-editor>
</div>
<div class="settings">
<color-picker [initialColor]="'#00000010'" (color)="planColor = $event">Click me for color picker!</color-picker>
</div>