Closed shiyah closed 6 years ago
When lines are too long, the message will not wrap except on newlines. This is because messages inherit white-space: pre from the discord stylesheet.
white-space: pre
This can be changed to be somewhat more functional by changing the rule to white-space: pre-wrap
white-space: pre-wrap
The addition will end up being
.message-group .comment .markup pre { white-space: pre-wrap; }
@OmgDani
When lines are too long, the message will not wrap except on newlines. This is because messages inherit
white-space: pre
from the discord stylesheet.This can be changed to be somewhat more functional by changing the rule to
white-space: pre-wrap
The addition will end up being