Limit the width of usernames in tables

Fixes the layout issues caused very long usernames in the forum and elsewhere.
This commit is contained in:
NamelessContributor
2022-03-01 14:59:58 +01:00
committed by GitHub
parent 99221af855
commit a43291018a

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;
}