Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions app/src/styles/vault.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down