diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2022-05-05 19:38:32 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2022-05-05 19:38:46 -0300 |
commit | f0dfade71a532cd6fbd1ce6da8b80a750ea064f3 (patch) | |
tree | f7144c006b0736666a26728597f0c28b8d30cce3 /src | |
parent | ceffe8a2770c739c9d8a001c1e5147457ef934e2 (diff) |
improve word wrapping behavior on "by" strings
Diffstat (limited to 'src')
-rw-r--r-- | src/static/site.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/static/site.css b/src/static/site.css index 2b0fd6f3..f2bef2c5 100644 --- a/src/static/site.css +++ b/src/static/site.css @@ -707,10 +707,14 @@ ul.quick-info li:not(:last-child)::after { } li .by { - white-space: nowrap; + display: inline-block; font-style: oblique; } +li .by a { + display: inline-block; +} + p code { font-size: 1em; font-family: 'courier new'; |