fix display of long commit messages on small screens
1 file changed, 6 insertions(+), 0 deletions(-)
changed files
M static/style.css → static/style.css
@@ -183,6 +183,8 @@ } .log pre { white-space: pre-wrap; + word-wrap: break-word; + word-break: break-word; } .mode,@@ -344,6 +346,10 @@ .log { grid-template-columns: 1fr; grid-row-gap: 0em; + } + + .commit-header { + max-width: 80%; } .index {