fix(chat) Fix horizontal scroll (#13308)

This commit is contained in:
Robert Pintilii
2023-05-02 15:53:30 +03:00
committed by GitHub
parent 43be4324af
commit dff41e0fcb
2 changed files with 6 additions and 6 deletions

View File

@@ -25,7 +25,11 @@ const useStyles = makeStyles()(theme => {
messageGroup: {
display: 'flex',
flexDirection: 'column',
maxWidth: '100%'
maxWidth: '100%',
'&.remote': {
maxWidth: 'calc(100% - 40px)' // 100% - avatar and margin
}
},
groupContainer: {