Skip to content

Commit

Permalink
Fix text-break in IE and Edge Legacy
Browse files Browse the repository at this point in the history
  • Loading branch information
ihorzenich committed Sep 24, 2020
1 parent 400364c commit 4617492
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scss/utilities/_text.scss
Expand Up @@ -63,8 +63,8 @@
.text-decoration-none { text-decoration: none !important; }

.text-break {
word-break: break-word !important; // IE & < Edge 18
overflow-wrap: break-word !important;
word-break: break-word !important; // we use deprecated `word-break: break-word` to avoid issues with flex containers
word-wrap: break-word !important; // we use `word-wrap` instead of the more common `overflow-wrap` for support IE & Edge Legacy
}

// Reset
Expand Down

0 comments on commit 4617492

Please sign in to comment.