Merge pull request #5025 from NamelessContributor/patch-1

Limit the width of usernames in tables
This commit is contained in:
evazion
2022-03-01 20:45:07 -06:00
committed by GitHub

View File

@@ -76,3 +76,11 @@ table.table-sm {
table.table-md {
th, td { padding: 0.5rem; }
}
td > .user {
display: inline-block;
max-width: max(15vw, 150px);
overflow: hidden;
text-overflow: ellipsis;
vertical-align: bottom;
}