~rdpate


#143 Long text lines are not wrapped a month ago

Comment by ~rdpate on ~sircmpwn/lists.sr.ht

To fix this locally, I've started using this CSS:

div.container {
    max-width: 100ch;
}

pre {
    /* Selector does not include .message-body because that is missing from https://lists.sr.ht/~USER. */
    overflow: visible;
    padding: 1em;
    white-space: pre-wrap;
    font-family: inherit;
    font-size: 100%;
    line-height: 1.2;
    hyphens: auto;
    hyphenate-limit-chars: auto 4;
}