From 57f189b0046112db84dca0d8dee39815e113b344 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Sun, 22 Mar 2026 14:59:57 +0800 Subject: [PATCH] style(css): use white-space nowrap for .col-name instead of fixed width Removes the 28% fixed width and overflow-wrap on the project name column. white-space: nowrap lets the column size naturally to its content instead of forcing wrapping at an arbitrary width. Co-Authored-By: Claude --- website/static/style.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/website/static/style.css b/website/static/style.css index cf05a78b..4a63bc43 100644 --- a/website/static/style.css +++ b/website/static/style.css @@ -604,8 +604,7 @@ kbd { } .col-name { - width: 28%; - overflow-wrap: anywhere; + white-space: nowrap; } .col-name > a {