diff options
| author | M. Wacker <[email protected]> | 2019-07-16 09:54:36 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-07-16 10:54:36 +0300 |
| commit | 78c9c8bdd4cad5e6d1fc349d45b7503bad84a19b (patch) | |
| tree | 6870a6839dc871597a645817f824f94c18cb6d23 /scss/_code.scss | |
| parent | bce2b5e7edb532c6919ffe493b6840e1e149c40f (diff) | |
| download | bootstrap-78c9c8bdd4cad5e6d1fc349d45b7503bad84a19b.tar.xz bootstrap-78c9c8bdd4cad5e6d1fc349d45b7503bad84a19b.zip | |
Fix breaking layout breaking error in code (#28328)
Change `word-break: break-word;` to `word-wrap: break-word;`
Diffstat (limited to 'scss/_code.scss')
| -rw-r--r-- | scss/_code.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_code.scss b/scss/_code.scss index 656df4529..f100ddb90 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 > & { |
