From 78c9c8bdd4cad5e6d1fc349d45b7503bad84a19b Mon Sep 17 00:00:00 2001
From: "M. Wacker" <wackerm@users.noreply.github.com>
Date: Tue, 16 Jul 2019 09:54:36 +0200
Subject: [PATCH] Fix breaking layout breaking error in code (#28328)

Change `word-break: break-word;` to `word-wrap: break-word;`
---
 scss/_code.scss | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scss/_code.scss b/scss/_code.scss
index 656df45297..f100ddb901 100644
--- a/scss/_code.scss
+++ b/scss/_code.scss
@@ -2,7 +2,7 @@
 code {
   @include font-size($code-font-size);
   color: $code-color;
-  word-break: break-word;
+  word-wrap: break-word;
 
   // Streamline the style when inside anchors to avoid broken underline and more
   a > & {
-- 
GitLab