From c3d8a83eed54585ffb21508abda01ea2a2f3bf52 Mon Sep 17 00:00:00 2001 From: litemotiv Date: Wed, 5 Feb 2025 11:56:31 +0100 Subject: [PATCH] fix userlist columns last row not honoring size --- style.css | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/style.css b/style.css index 590e636..7d5b588 100644 --- a/style.css +++ b/style.css @@ -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;