mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04: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:
parent
a083ceaf44
commit
b010d2663d
@ -122,6 +122,9 @@ body.mce-fullscreen, body.markdown-fullscreen {
|
||||
max-width: 100%;
|
||||
height: auto !important;
|
||||
}
|
||||
td {
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
// diffs
|
||||
ins,
|
||||
|
Loading…
Reference in New Issue
Block a user