fix userlist columns last row not honoring size

This commit is contained in:
litemotiv 2025-02-05 11:56:31 +01:00
parent cc381753a8
commit c3d8a83eed
1 changed files with 4 additions and 5 deletions

View File

@ -141,18 +141,17 @@ code > span.fl {
/* Page content */
.user-list {
display: flex;
flex-flow: row wrap;
justify-content: space-evenly;
list-style-type: none;
padding: 0;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
}
.user-list a {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
flex: 10em;
}
.user-list b {
background-color: #fb5;
color:#000;