UX: grant names some more space on /u (#25576)

This commit is contained in:
Kris 2024-02-06 09:32:07 -05:00 committed by GitHub
parent 7fcd7d53f9
commit 2caaadea4a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -13,7 +13,7 @@ export default Component.extend({
: this.columns.length,
});
this._table.style.gridTemplateColumns = `minmax(13em, 3fr) repeat(${this._columnCount}, minmax(max-content, 1fr))`;
this._table.style.gridTemplateColumns = `minmax(15em, 3fr) repeat(${this._columnCount}, minmax(max-content, 1fr))`;
},
@action

View File

@ -17,11 +17,13 @@
.name-line {
> a {
display: flex;
gap: 0.5em;
flex-wrap: wrap;
gap: 0 0.5em;
color: var(--primary-high);
}
.name,
.username {
width: 100%;
@include ellipsis;
}
@ -39,6 +41,7 @@
.title {
color: var(--primary-medium);
@include ellipsis;
}
}