diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-10-16 00:08:31 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-11-02 22:12:49 -0300 |
commit | d0fffed941b3df3cf7f020a1493bf6148e840f89 (patch) | |
tree | f4f50d605aae459beaaba8d0cb5157793dd26ed5 /src | |
parent | e2da977cf111c23e603128afd8a102cfd6ad0a58 (diff) |
css: avoid word wrap within nav links
This will have zero unforeseen consequences.
Diffstat (limited to 'src')
-rw-r--r-- | src/static/css/site.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/static/css/site.css b/src/static/css/site.css index 77d2a56a..11616555 100644 --- a/src/static/css/site.css +++ b/src/static/css/site.css @@ -804,6 +804,10 @@ a:not([href]):hover { color: white; } +.nav-link { + display: inline-block; +} + .nav-link a.series { font-style: oblique; } |