1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-31 00:16:47 +01:00

fix: wrap long legal values/descriptions (#927)

This commit is contained in:
olav 2022-04-29 13:28:51 +02:00 committed by GitHub
parent 860656a95e
commit efe52cb1aa
2 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@ import { makeStyles } from '@material-ui/core/styles';
export const useStyles = makeStyles(theme => ({
container: {
display: 'inline-block',
wordBreak: 'break-word',
},
value: {
lineHeight: 1.33,

View File

@ -11,6 +11,7 @@ export const useStyles = makeStyles(theme => ({
padding: '0.5rem',
background: theme.palette.grey[200],
borderRadius: theme.borders.radius.main,
wordBreak: 'break-word',
},
label: {
fontSize: theme.fontSizes.smallBody,