Skip to content

Commit

Permalink
Install header + text align (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob committed Nov 12, 2021
1 parent 6654024 commit a8dc857
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/install-dialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,9 @@ class EwtInstallDialog extends LitElement {
}

_renderInstall(): [string | undefined, TemplateResult, boolean, boolean] {
let heading: string | undefined = `Install ${this._manifest!.name}`;
let heading: string | undefined = `${
this._installConfirmed ? "Installing" : "Install"
} ${this._manifest!.name}`;
let content: TemplateResult;
let hideActions = false;
let allowClosing = false;
Expand Down Expand Up @@ -731,6 +733,7 @@ class EwtInstallDialog extends LitElement {
--mdc-dialog-max-width: 390px;
--mdc-theme-primary: var(--improv-primary-color, #03a9f4);
--mdc-theme-on-primary: var(--improv-on-primary-color, #fff);
text-align: left;
}
ewt-icon-button {
position: absolute;
Expand Down

0 comments on commit a8dc857

Please sign in to comment.