Skip to content

Commit 340f7c8

Browse files
committed
Prevent early account label truncation
1 parent f499141 commit 340f7c8

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/v2/components/layout/header/Header.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,11 +355,14 @@ export class Header extends LitElement {
355355
.account-menu-copy {
356356
display: flex;
357357
flex-direction: column;
358+
flex: 1 1 auto;
358359
min-width: 0;
359360
}
360361
361362
.account-menu-label {
362363
color: var(--header-button-text);
364+
display: block;
365+
max-width: 100%;
363366
overflow: hidden;
364367
text-overflow: ellipsis;
365368
white-space: nowrap;

0 commit comments

Comments
 (0)