From 5a757d2ed5353ad6f2adea41e57c1058530c5358 Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Wed, 23 Aug 2023 00:39:06 +0100 Subject: [PATCH] fix(gts/css): update word-wrap for fields Update the word wrap in profile fields to make unbreakable words breakable if required. --- example/gotosocial/css/night-owl.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/example/gotosocial/css/night-owl.css b/example/gotosocial/css/night-owl.css index 949c949..9af7d35 100644 --- a/example/gotosocial/css/night-owl.css +++ b/example/gotosocial/css/night-owl.css @@ -86,6 +86,10 @@ html, body { background: var(--night-owl-bg); } +.profile .about-user .fields { + word-wrap: break-word; +} + .profile .toots .toot { border: none; }