diff options
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({ |