Fix My Account layout: password form grid gap and panel spacing (v0.11.78)

This commit is contained in:
marvin
2026-09-14 19:59:55 -04:00
parent 2bb875eb98
commit f39d405de8
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "site-gateway",
"version": "0.11.77",
"version": "0.11.78",
"private": true,
"description": "Site Gateway: simple self-hosted website publishing, reverse proxying, and automatic HTTPS.",
"type": "module",
+2 -2
View File
@@ -7,7 +7,7 @@
<title>Site Gateway</title>
<meta name="description" content="Host sites, proxy services, and manage HTTPS from one simple dashboard.">
<link rel="icon" type="image/png" href="/site-gateway-icon-approved.png">
<link rel="stylesheet" href="/styles.css?v=0.11.77">
<link rel="stylesheet" href="/styles.css?v=0.11.78">
</head>
<body>
<div id="login" class="login-shell hidden">
@@ -206,7 +206,7 @@
<form id="account-password-form" class="settings-form">
<label>Current password<input name="currentPassword" type="password" autocomplete="current-password" required></label>
<label>New password<input name="newPassword" type="password" minlength="8" autocomplete="new-password" required></label>
<label>Confirm new password<input name="confirmPassword" type="password" minlength="8" autocomplete="new-password" required></label>
<label style="grid-column:1/-1;max-width:calc(50% - 9px)">Confirm new password<input name="confirmPassword" type="password" minlength="8" autocomplete="new-password" required></label>
<p id="account-password-error" class="error" role="alert"></p>
<div class="dialog-actions"><button class="button primary" type="submit">Change password</button></div>
</form>
+1
View File
@@ -284,3 +284,4 @@ select{appearance:none!important;-webkit-appearance:none!important;background-re
.mfa-qr svg{width:200px;height:200px}
.mfa-recovery-codes{background:#0a1423;border:1px solid var(--line);border-radius:10px;padding:16px;font-size:14px;line-height:1.8;letter-spacing:.02em;white-space:pre-wrap;user-select:all}
@media(prefers-color-scheme:light){.mfa-recovery-codes{background:#f3f6fa}}
#account-view>.dashboard-panel+.dashboard-panel{margin-top:18px}