Merge pull request #10078 from KaemonIsland/update-header-styles

Change header style word-wrap from break-all to break-word
This commit is contained in:
Ben Lambert
2022-03-15 13:21:26 +01:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-components': patch
---
Change header style `word-wrap` from `break-all` to `break-word`
@@ -66,7 +66,7 @@ const useStyles = makeStyles<BackstageTheme>(
},
title: {
color: theme.palette.bursts.fontColor,
wordBreak: 'break-all',
wordBreak: 'break-word',
fontSize: theme.typography.h3.fontSize,
marginBottom: 0,
},