From 26a0fd8e6480311cee0c6048c453ef6718092b55 Mon Sep 17 00:00:00 2001 From: Scott O'Hara Date: Fri, 11 Sep 2020 03:51:36 +1000 Subject: [PATCH] fix(styles) restore wrapping of long text in pre blocks (#6377) --- src/style/_markdown.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/style/_markdown.scss b/src/style/_markdown.scss index c4ae26a9..f53a15db 100644 --- a/src/style/_markdown.scss +++ b/src/style/_markdown.scss @@ -8,6 +8,7 @@ white-space: pre-wrap; background: none; padding: 0px; + overflow-wrap: break-word; } code { @@ -23,4 +24,4 @@ pre > code { display: block; } -} \ No newline at end of file +}