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 <noreply@anthropic.com>
This commit is contained in:
Vinta Chen
2026-03-22 14:59:57 +08:00
parent 8271b7c672
commit 57f189b004

View File

@@ -604,8 +604,7 @@ kbd {
} }
.col-name { .col-name {
width: 28%; white-space: nowrap;
overflow-wrap: anywhere;
} }
.col-name > a { .col-name > a {