mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-06-20 12:21:28 +08:00
Fix table width style
Tables generated by the markdown renderer don't honour the max-width property without applying word-break styling to the td elements
This commit is contained in:
@ -122,6 +122,9 @@ body.mce-fullscreen, body.markdown-fullscreen {
|
|||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
height: auto !important;
|
height: auto !important;
|
||||||
}
|
}
|
||||||
|
td {
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
// diffs
|
// diffs
|
||||||
ins,
|
ins,
|
||||||
|
Reference in New Issue
Block a user