Fix inconsistent line height in cipher box footer (#3561)

Closes #3559
This commit is contained in:
Patrick H. Lauke 2022-11-24 17:38:19 +00:00 committed by GitHub
parent 42638c5443
commit 448637243d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -432,6 +432,12 @@ app-vault-view .box-footer {
user-select: auto;
}
/* tweak for inconsistent line heights in cipher view */
.box-footer button,
.box-footer a {
line-height: 1;
}
// Workaround for slow performance on external monitors on Chrome + MacOS
// See: https://bugs.chromium.org/p/chromium/issues/detail?id=971701#c64
@keyframes redraw {

View File

@ -534,3 +534,9 @@ img,
app-vault-view .box-footer {
user-select: auto;
}
/* tweak for inconsistent line heights in cipher view */
.box-footer button,
.box-footer a {
line-height: 1;
}