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".
master
ErC 1 year ago committed by GitHub
parent 6c5d7b17c6
commit b3b84af960
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -29,6 +29,7 @@ tr, li, #pages, .info {
td {
text-align: center;
word-break: break-all;
}
a:link {

Loading…
Cancel
Save