diff options
| author | Zak B. Elep <zakame@zakame.net> | 2024-06-07 13:00:49 +0800 |
|---|---|---|
| committer | Neo <50623835+neobooru@users.noreply.github.com> | 2024-09-29 13:48:06 +0200 |
| commit | 031131506ee49629e97714ba7667f01658aed5eb (patch) | |
| tree | c135888d41b3edd20674c655ff06b6d6815d2719 | |
| parent | d102578b544226207fac055d0c6ed1a45a12e471 (diff) | |
client/css: fix comment word-break
`break-all` makes it hard to read actual comments.
| -rw-r--r-- | client/css/comment-control.styl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/css/comment-control.styl b/client/css/comment-control.styl index 21bbf72..cd2d729 100644 --- a/client/css/comment-control.styl +++ b/client/css/comment-control.styl @@ -129,7 +129,7 @@ $comment-border-color = #DDD .comment-content p word-wrap: normal - word-break: break-all + word-break: break-word ul, ol list-style-position: inside |