diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-11-14 21:55:59 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-11-14 21:55:59 +0100 |
| commit | 3f18f02d07802d1fc705a500e5978a9b3cb2e751 (patch) | |
| tree | 283970a2f5a693706456b853c550eeaa669b5d72 /static/pages/settings | |
| parent | 351ad457f0ff95e20301a146b8c88a8f0f659aa1 (diff) | |
implement login
Diffstat (limited to 'static/pages/settings')
| -rw-r--r-- | static/pages/settings/index.css | 2 | ||||
| -rw-r--r-- | static/pages/settings/index.js | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/static/pages/settings/index.css b/static/pages/settings/index.css index 5128c18..eb718ab 100644 --- a/static/pages/settings/index.css +++ b/static/pages/settings/index.css @@ -7,6 +7,8 @@ display: flex; flex-flow: column; gap: 20px; + max-width: 700px; + margin: auto; } #profile-image { diff --git a/static/pages/settings/index.js b/static/pages/settings/index.js index da30ba7..6a0e231 100644 --- a/static/pages/settings/index.js +++ b/static/pages/settings/index.js @@ -45,7 +45,7 @@ export default class SettingsView extends sfw.element.Container { }), Div.new({ id: 'logout', - innerText: 'Log-out', + innerText: 'Logout', onclick: () => this.onlogout(), }), Div.new({ |