From b3b84af960773ab3897a139d5ca2979a4ec1f654 Mon Sep 17 00:00:00 2001 From: ErC Date: Mon, 27 Mar 2023 17:47:26 +0200 Subject: [PATCH] css: fix overflowing text in cells Long strings without spaces don't get wrapped and will result in the text overflowing outside of the cell and messing up the structure of the page. See for example [the tx_extra field in this transaction](https://xmrchain.net/search?value=1ecce7898a4e1c7334241c834ba4866d6b511ee896c318b3445aea1cc926e40f). This small patch makes long text wrap inside the given limit, which would be otherwise "ignored". --- src/templates/css/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/templates/css/style.css b/src/templates/css/style.css index f19ea03..f90c7f1 100644 --- a/src/templates/css/style.css +++ b/src/templates/css/style.css @@ -29,6 +29,7 @@ tr, li, #pages, .info { td { text-align: center; + word-break: break-all; } a:link {