diff options
| author | XhmikosR <[email protected]> | 2020-06-04 10:04:33 +0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2020-06-04 17:53:16 +0300 |
| commit | 288b9b82b5a5cb64ec3aaadef13ac934a957e5d2 (patch) | |
| tree | dfab2bfe25ad02e1a4235d21495e5c7b55fe01e9 /scss | |
| parent | ac3c2e2356afb2e6fbc2aef4abfda5e60f6544a0 (diff) | |
| download | bootstrap-288b9b82b5a5cb64ec3aaadef13ac934a957e5d2.tar.xz bootstrap-288b9b82b5a5cb64ec3aaadef13ac934a957e5d2.zip | |
Backport #30932
Restore word-break: break-word on .text-break to fix text breaking on flex containers
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/utilities/_text.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scss/utilities/_text.scss b/scss/utilities/_text.scss index d2b2a22ed..5d0f1c845 100644 --- a/scss/utilities/_text.scss +++ b/scss/utilities/_text.scss @@ -63,7 +63,8 @@ .text-decoration-none { text-decoration: none !important; } .text-break { - word-wrap: break-word !important; + word-break: break-word !important; // IE & < Edge 18 + overflow-wrap: break-word !important; } // Reset |
