Fix long text breaking the snackbar (#2171)
* Fix long text breaking the snackbar * 80px -> 160px * Add a scroll bar in the snackbar Co-authored-by: Fernando <fernando.greco@gmail.com> Co-authored-by: Daniel Sanchez <daniel.sanchez@gnosis.pm>
This commit is contained in:
parent
8d0b512ebf
commit
d2f1e9eb2a
|
@ -279,6 +279,11 @@ const theme = createMuiTheme({
|
|||
'& > span': {
|
||||
display: 'flex',
|
||||
flexDirection: 'row',
|
||||
alignItems: 'stretch',
|
||||
overflowX: 'hidden',
|
||||
overflowY: 'auto',
|
||||
maxHeight: '160px',
|
||||
wordBreak: 'break-word',
|
||||
'& > img': {
|
||||
display: 'block',
|
||||
marginRight: '13px',
|
||||
|
|
Loading…
Reference in New Issue