ClearVision / ClearVision-v5

Automatically updating, easily customizable Theme for Discord.
https://clearvision.gitlab.io
Apache License 2.0
145 stars 441 forks source link

Code blocks have bad wrapping #67

Closed shiyah closed 6 years ago

shiyah commented 6 years ago

image 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 image

The addition will end up being

.message-group .comment .markup pre {
    white-space: pre-wrap;
}
Zerthox commented 6 years ago

@OmgDani