From 4b317407581ec56a21f6122c385c4c23effd331f Mon Sep 17 00:00:00 2001 From: Joscha Date: Sun, 6 Aug 2023 01:35:36 +0200 Subject: [PATCH] Wrap more text in commit view --- static/base.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/static/base.css b/static/base.css index ac5a67e..ed8894d 100644 --- a/static/base.css +++ b/static/base.css @@ -79,7 +79,7 @@ dd { .commit dl { display: grid; - grid: auto-flow / min-content max-content; + grid: auto-flow / min-content 1fr; column-gap: 1ch; } @@ -87,3 +87,7 @@ dd { .commit .untracked a { color: #777; } + +.commit pre { + white-space: pre-wrap; +}