mirror of
https://github.com/Unleash/unleash.git
synced 2025-08-04 13:48:56 +02:00
chore: use pre-wrap
for whitespace to break when necessary. (#10245)
Use `white-space: pre-wrap` on event diff lines instead of just `pre`. This prevents us from getting a horizontal overflow and will instead wrap the lines if it needs to, but preserve indentation and other spaces (as explained in [MDN's white-space docs](https://developer.mozilla.org/en-US/docs/Web/CSS/white-space)). Means that instead of getting a horizontal overflow and a scroll bar, we get something like this instead: 
This commit is contained in:
parent
88514077f5
commit
d7c465fd20
@ -29,7 +29,7 @@ interface IEventDiffProps {
|
|||||||
const DiffStyles = styled('div')(({ theme }) => ({
|
const DiffStyles = styled('div')(({ theme }) => ({
|
||||||
color: theme.palette.text.secondary,
|
color: theme.palette.text.secondary,
|
||||||
fontFamily: 'monospace',
|
fontFamily: 'monospace',
|
||||||
whiteSpace: 'pre',
|
whiteSpace: 'pre-wrap',
|
||||||
fontSize: theme.typography.body2.fontSize,
|
fontSize: theme.typography.body2.fontSize,
|
||||||
|
|
||||||
'.deletion, .addition': {
|
'.deletion, .addition': {
|
||||||
|
Loading…
Reference in New Issue
Block a user