Skip to content

Commit

Permalink
Update footer design
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettmflynn committed Feb 6, 2024
1 parent da917e3 commit 5097f2e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/renderer/src/stories/pages/guided-mode/GuidedFooter.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,14 @@ export class GuidedFooter extends LitElement {
render() {
return html`
<nwb-footer style="display: flex; align-items: center; justify-content: space-between;">
<div>
${this.exit ? html`<nwb-button @click=${this.onExit}>${this.exit}</nwb-button>` : ""}
</div>
<div>
${this.back ? html`<nwb-button @click=${this.onBack}>${this.back}</nwb-button>` : ""}
${this.next ? html`<nwb-button @click=${this.onNext} primary>${this.next}</nwb-button>` : ""}
</div>
${this.exit ? html`<nwb-button @click=${this.onExit}>${this.exit}</nwb-button>` : ""}
</nwb-footer>
`;
}
Expand Down

0 comments on commit 5097f2e

Please sign in to comment.