diff options
| author | Martijn Cuppens <[email protected]> | 2019-02-06 11:38:13 +0100 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-02-06 12:38:13 +0200 |
| commit | 58470c0ac508df1b03e93faf5c2ff0e11fa3c078 (patch) | |
| tree | eeb033ef5f478e63a366ca7fb885e3dcde1dc4f5 /scss | |
| parent | 6ea000d2bccee5ffabc4429a6fbc7cecf5152007 (diff) | |
| download | bootstrap-58470c0ac508df1b03e93faf5c2ff0e11fa3c078.tar.xz bootstrap-58470c0ac508df1b03e93faf5c2ff0e11fa3c078.zip | |
Fix text break in Firefox (#28063)
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/utilities/_text.scss | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scss/utilities/_text.scss b/scss/utilities/_text.scss index 7b137211f..589e5687a 100644 --- a/scss/utilities/_text.scss +++ b/scss/utilities/_text.scss @@ -62,7 +62,10 @@ .text-decoration-none { text-decoration: none !important; } -.text-break { word-break: break-word !important; } +.text-break { + word-break: break-word !important; // IE & < Edge 18 + overflow-wrap: break-word !important; +} // Reset |
