From 8b5e6d805d8af86cdd4d4f755fd19b5ee0aa47af Mon Sep 17 00:00:00 2001 From: alemi Date: Fri, 28 Jun 2024 04:11:45 +0200 Subject: [PATCH] fix(web): prevent overflow on long links from lemmy --- web/index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/index.html b/web/index.html index f6a25e5..35e5a96 100644 --- a/web/index.html +++ b/web/index.html @@ -80,6 +80,9 @@ hyphens: auto; border-left: solid 3px var(--background-secondary); } + article { + word-break: break-word; + } article.tl { color: var(--text); border-left: solid 3px var(--accent); @@ -87,7 +90,6 @@ margin-right: 1em; margin-top: 0; margin-bottom: 0; - word-wrap: break-word; } article p { margin: 0 0 0 .5em;