Revert "fix(chat) Make the name fit the chat bubble"

This reverts commit e56c7070c2.
This commit is contained in:
damencho
2023-04-28 11:25:06 -05:00
committed by Дамян Минков
parent 2b71fa512b
commit c384d0d3a9

View File

@@ -23,7 +23,7 @@ interface IProps extends AbstractProps {
const styles = (theme: Theme) => {
return {
chatMessageWrapper: {
maxWidth: 'calc(100% - 40px)' // 100% - avatar and margin
maxWidth: '100%'
},
chatMessage: {
@@ -62,8 +62,7 @@ const styles = (theme: Theme) => {
replyWrapper: {
display: 'flex',
flexDirection: 'row' as const,
alignItems: 'center',
maxWidth: '100%'
alignItems: 'center'
},
messageContent: {