diff options
author | Alex Scerba <alex@scerba.org> | 2024-08-21 23:16:06 -0400 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2024-08-21 23:16:06 -0400 |
commit | 7eff2f9b7d40c900816532d2d6c716b25226c78c (patch) | |
tree | 7362be09fd7016fa4ff01ef5400f4c7c6ce1442a | |
parent | a9ec57528d4adbcd0121d235bb6e7a4e55975bf0 (diff) |
Add line wrap to <pre> element
-rw-r--r-- | static/style.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index a4263b1..f922e82 100644 --- a/static/style.css +++ b/static/style.css @@ -195,6 +195,10 @@ p { line-height: 1.25;
}
+pre {
+ white-space: pre-wrap;
+}
+
.name {
font-weight: bold;
margin: auto .3rem;
|