From bc51ec7d1b6f358b38fcbd4039fb0d36570b0ed5 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Sun, 21 Jan 2024 12:21:37 +0100 Subject: [PATCH] [bugfix/frontend] Break word on profile field names and values (#2551) --- web/source/css/profile.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/source/css/profile.css b/web/source/css/profile.css index 649638fe0..97dbdfe88 100644 --- a/web/source/css/profile.css +++ b/web/source/css/profile.css @@ -244,6 +244,10 @@ flex-direction: column; border-bottom: 0.1rem solid $gray2; + > dt, > dd { + word-break: break-word; + } + &:first-child { border-top: 0.1rem solid $gray2; }