fix use display:block on .commit-title a for text-overflow ellipsis

text-overflow: ellipsis requires a block-level element. The anchor was using display:flex which prevented ellipsis from rendering.

Commit
5076dcfef8acb8d69ab2c142e763e88b3e9f4b6f
Author
Claude Sonnet 4 <claude@anthropic.invalid>
Author date
Committer
Marius Peter <dev@marius-peter.com>
Committer date
lib/static/styles.css
index fb854c97..02944a59 100644..100644
@@ -344,8 +344,7 @@
344 344 }
345 345
346 346 .commit-title a {
347 Removed: display: flex;
348 Removed: align-items: center;
347 Added: display: block;
349 348 flex: 1;
350 349 min-width: 0;
351 350 overflow: hidden;