1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 02:03:39 +00:00

[PS-1674] Correct truncation of ciphers in browser (#3792)

This commit is contained in:
Oscar Hinton
2022-10-17 19:57:51 +02:00
committed by GitHub
parent 930359fb18
commit a9ebed0d8d
4 changed files with 64 additions and 34 deletions

View File

@@ -152,3 +152,16 @@
height: 100%;
overflow-y: auto;
}
.truncate-box {
display: flex;
align-items: center;
gap: 5px;
}
.truncate {
display: inline-block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}