Skip to content

Commit f887069

Browse files
authored
Merge pull request ricklamers#65 from IlyaIskra/main
Correct text overflow handling
2 parents c6c2b93 + 3637dee commit f887069

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

client/css/style.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,8 @@ body {
146146
display: flex;
147147
flex-direction: column;
148148
gap: 16px;
149+
flex: auto;
150+
min-width: 0;
149151
}
150152

151153
.conversations .title {
@@ -167,6 +169,8 @@ body {
167169
display: flex;
168170
align-items: center;
169171
gap: 10px;
172+
flex: auto;
173+
min-width: 0;
170174
}
171175

172176
.conversations i {
@@ -177,6 +181,8 @@ body {
177181
.convo-title {
178182
color: var(--colour-3);
179183
font-size: 14px;
184+
overflow: hidden;
185+
text-overflow: ellipsis;
180186
}
181187

182188
.message {
@@ -230,6 +236,7 @@ body {
230236
display: flex;
231237
flex-direction: column;
232238
gap: 18px;
239+
min-width: 0;
233240
}
234241

235242
.message .content p,

0 commit comments

Comments
 (0)