diff --git a/CHANGELOG.md b/CHANGELOG.md index dacc023..788c3e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable user-visible changes are recorded here. Versions follow [Semantic Ve ## Unreleased +### Fixed + +- Widened the vault password fields on the vault setup, unlock, and Account + pages to twice their previous width, so a password is no longer typed into a + box sized for the four-letter recovery-key confirmation. + ### Changed - Prevented Mermaid labels from being clipped by waiting for fonts before diff --git a/app/src/styles/vault.css b/app/src/styles/vault.css index a8c48a6..0fd7281 100644 --- a/app/src/styles/vault.css +++ b/app/src/styles/vault.css @@ -83,6 +83,14 @@ overflow-wrap: anywhere; } +/* + * A password, unlike the four-letter key confirm the base width fits, needs + * room to be typed and checked: twice as wide, still short of the card edge. + */ +.vault-input[type="password"] { + width: 16ch; +} + .vault-input:focus-visible { outline: 2px solid var(--blue); outline-offset: 1px;