diff --git a/html/admin.html b/html/admin.html index 00c00d8..de847ba 100644 --- a/html/admin.html +++ b/html/admin.html @@ -538,7 +538,7 @@
@@ -644,8 +644,8 @@
- {{ .strings.aboutProgram }} - {{ .strings.userProfiles }} + {{ .strings.aboutProgram }} + {{ .strings.userProfiles }}
diff --git a/ts/modules/accounts.ts b/ts/modules/accounts.ts index e5d2b78..391b9e8 100644 --- a/ts/modules/accounts.ts +++ b/ts/modules/accounts.ts @@ -193,8 +193,10 @@ class user implements User { if (!u) { this._notifyDropdown.querySelector(".accounts-area-matrix").classList.add("unfocused"); this._matrix.innerHTML = ` - ${window.lang.strings("add")} - +
+ ${window.lang.strings("add")} + +
`; (this._matrix.querySelector("span") as HTMLSpanElement).onclick = this._addMatrix; } else { diff --git a/ts/modules/settings.ts b/ts/modules/settings.ts index 5559069..d6fe608 100644 --- a/ts/modules/settings.ts +++ b/ts/modules/settings.ts @@ -549,7 +549,7 @@ export class settingsList { this._sections[name] = section; this._panel.appendChild(this._sections[name].asElement()); const button = document.createElement("span") as HTMLSpanElement; - button.classList.add("button", "~neutral", "@low", "settings-section-button", "mb-2"); + button.classList.add("button", "~neutral", "@low", "settings-section-button", "justify-between", "mb-2"); button.textContent = s.meta.name; if (subButton) { button.appendChild(subButton); } button.onclick = () => { this._showPanel(name); };