[OCaml] Mobile-friendly clone of cgit.
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.
lib/static/styles.css
@@ -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;