]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix breaking layout breaking error in code (#28328)
authorM. Wacker <wackerm@users.noreply.github.com>
Tue, 16 Jul 2019 07:54:36 +0000 (09:54 +0200)
committerXhmikosR <xhmikosr@gmail.com>
Tue, 16 Jul 2019 07:54:36 +0000 (10:54 +0300)
Change `word-break: break-word;` to `word-wrap: break-word;`

scss/_code.scss

index 656df45297aa81e5bcc49de3c4ada698252006de..f100ddb901843b05a801244011b72012efe97db0 100644 (file)
@@ -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 > & {