Merge pull request #2698 from Roardom/fix-chrome-code-block

(Fix) Chrome not wrapping code blocks
This commit is contained in:
HDVinnie
2023-04-15 21:39:46 -04:00
committed by GitHub

View File

@@ -532,6 +532,7 @@
padding: 0;
margin: 0;
word-break: normal;
overflow-wrap: anywhere;
white-space: pre-wrap;
background: transparent;
border: 0;
@@ -545,6 +546,8 @@
overflow: visible;
line-height: inherit;
word-wrap: normal;
word-break: normal;
overflow-wrap: anywhere;
background-color: transparent;
border: 0;
}
@@ -554,6 +557,7 @@
line-height: inherit;
word-wrap: normal;
word-break: break-word;
overflow-wrap: anywhere;
white-space: pre-wrap;
}