diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2022-05-23 09:34:09 +0100 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2022-05-23 09:34:09 +0100 |
| commit | de736bf7c624049e554db93a70ee45ea43d6bc79 (patch) | |
| tree | 13b63c5ff387336fb6f5989d04fa9a18a70725d8 /resources/css | |
| parent | 45a1e4077f3b43f54dc90432b0719064e94d25c3 (diff) | |
| download | webtrees-de736bf7c624049e554db93a70ee45ea43d6bc79.tar.gz webtrees-de736bf7c624049e554db93a70ee45ea43d6bc79.tar.bz2 webtrees-de736bf7c624049e554db93a70ee45ea43d6bc79.zip | |
Fix: #4421 - wrong CSS for breaking long words
Diffstat (limited to 'resources/css')
| -rw-r--r-- | resources/css/_base.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/css/_base.css b/resources/css/_base.css index 8814c3af33..860727859c 100644 --- a/resources/css/_base.css +++ b/resources/css/_base.css @@ -120,7 +120,7 @@ a:hover, .btn-link:hover, .nav-link:hover { unicode-bidi: isolate; /* Long words without spaces can break the page layout */ - word-break: break-all; + overflow-wrap: break-word; } .wt-nested-edit-fields { |
