Legacy option for overflow wrap & update changeset bump

Signed-off-by: Philipp Hugenroth <philipph@spotify.com>
This commit is contained in:
Philipp Hugenroth
2021-07-19 11:06:28 +02:00
parent 03bf17e9b8
commit c642324708
4 changed files with 5 additions and 3 deletions
@@ -52,6 +52,9 @@ type Props = {
const useStyles = makeStyles<BackstageTheme>(() => ({
message: {
// `word-break: break-word` is deprecated, but gives legacy support to browsers not supporting `overflow-wrap` yet
// https://developer.mozilla.org/en-US/docs/Web/CSS/word-break
wordBreak: 'break-word',
overflowWrap: 'anywhere',
},
}));