Skip to content

Commit d03f996

Browse files
committed
fix too long entries in contacts-menu
Signed-off-by: Simon L <szaimen@e.mail.de>
1 parent b36a31c commit d03f996

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

core/src/views/ContactsMenu.vue

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -133,19 +133,15 @@ export default {
133133
.body {
134134
flex-grow: 1;
135135
padding-left: 8px;
136+
min-width: 0;
136137
137138
div {
138139
position: relative;
139140
width: 100%;
141+
overflow-x: hidden;
142+
text-overflow: ellipsis;
140143
}
141144
142-
.full-name, .last-message {
143-
/* TODO: don't use fixed width */
144-
max-width: 204px;
145-
overflow: hidden;
146-
white-space: nowrap;
147-
text-overflow: ellipsis;
148-
}
149145
.last-message, .email-address {
150146
color: var(--color-text-maxcontrast);
151147
}

0 commit comments

Comments
 (0)