Skip to content

Commit

Permalink
Merge pull request #2569 from robintown/horizontal-overflow
Browse files Browse the repository at this point in the history
Fix long call names overflowing the interface
  • Loading branch information
robintown authored Aug 16, 2024
2 parents f562cc1 + e2c4eae commit 61bc4dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/Header.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,14 @@ limitations under the License.
.nameLine {
grid-area: name;
flex-grow: 1;
min-width: 0;
display: flex;
align-items: center;
gap: var(--cpd-space-1x);
}

.nameLine > h1 {
margin: 0;
/* XXX I can't actually get this ellipsis overflow to trigger, because
constraint propagation in a nested flexbox layout is a massive pain */
overflow: hidden;
text-overflow: ellipsis;
}
Expand Down
1 change: 1 addition & 0 deletions src/room/InCallView.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ limitations under the License.
flex-direction: column;
height: 100%;
width: 100%;
overflow-x: hidden;
overflow-y: auto;
}

Expand Down

0 comments on commit 61bc4dc

Please sign in to comment.