Merge pull request #1670 from Half-Shot/patch-1

#1664 Set a maximum height for codeblocks
This commit is contained in:
Matthew Hodgson 2016-06-24 19:16:50 +01:00 committed by GitHub
commit 486adb717b

View file

@ -17,3 +17,8 @@ limitations under the License.
.mx_MTextBody {
white-space: pre-wrap;
}
.mx_MTextBody pre{
overflow-y: auto;
max-height: 30vh;
}