1
0
mirror of https://github.com/flarum/core.git synced 2025-07-19 07:41:22 +02:00

Merge pull request #1007 from datitisev/1002-break-words-in-post-with-excesive-width

#1002 Handle word wrapping properly in posts
This commit is contained in:
Toby Zerner
2016-07-29 21:23:31 +10:00
committed by GitHub

View File

@@ -92,6 +92,7 @@
line-height: 1.7; line-height: 1.7;
position: relative; position: relative;
overflow: auto; overflow: auto;
overflow-wrap: break-word;
p, ul, ol, blockquote { p, ul, ol, blockquote {
margin-bottom: 1em; margin-bottom: 1em;
@@ -134,6 +135,7 @@
color: #666; color: #666;
font-size: 90%; font-size: 90%;
border-radius: @border-radius; border-radius: @border-radius;
overflow-wrap: normal;
code { code {
padding: 0; padding: 0;