mirror of
https://github.com/ansible/awx.git
synced 2026-05-07 17:37:37 -02:30
Adding popover for details is showing breaking of words
Now that we are adding popovers for details pages, I noticed a couple of strings wrapping in odd places, update css to avoid that. Also `word-break: break-word` was deprecated.
This commit is contained in:
@@ -21,7 +21,7 @@ const DetailValue = styled(
|
|||||||
<TextListItem {...props} />
|
<TextListItem {...props} />
|
||||||
)
|
)
|
||||||
)`
|
)`
|
||||||
word-break: break-all;
|
overflow-wrap: break-word;
|
||||||
${(props) =>
|
${(props) =>
|
||||||
props.fullWidth &&
|
props.fullWidth &&
|
||||||
`
|
`
|
||||||
|
|||||||
Reference in New Issue
Block a user