Update web/static/app.css

This commit is contained in:
Joshua Laymon 2025-08-14 16:26:44 +00:00
parent 1cab6dfeb6
commit c92ad253b6

View File

@ -351,4 +351,24 @@ code,kbd{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono
border:1px solid #fecaca; background:#fef2f2; color:#7f1d1d; border:1px solid #fecaca; background:#fef2f2; color:#7f1d1d;
border-radius:10px; font-size:14px; border-radius:10px; font-size:14px;
} }
.login-field-error{ color:#b91c1c; font-size:13px; margin:6px 0 0; } .login-field-error{ color:#b91c1c; font-size:13px; margin:6px 0 0; }
/* keep row items inline */
.search-row { display:flex; gap:8px; align-items:center; }
/* the panel sits below the row, full-width, and is hidden by default */
.help-panel {
display: none;
margin-top: 12px;
border: 1px solid var(--border);
border-radius: 12px;
background: #fff;
padding: 14px 16px;
box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
/* shown when toggled */
.help-panel.open { display: block; }
/* optional: smaller heading spacing in the panel */
.help-panel h3 { margin: 4px 0 10px; }