Merge pull request 'Set a minimum width for text in posts' (#122) from anon-css-fixes into config

Reviewed-on: leftypol/leftypol#122
This commit is contained in:
Zankaria 2025-05-02 16:20:17 -05:00
commit a586025a62

View file

@ -575,6 +575,13 @@ div.post div.body {
white-space: pre-wrap;
}
div.post div.body:before {
content: "";
width: 18ch;
display: block;
overflow: hidden;
}
div.post.reply.highlighted {
background: #D6BAD0;
}