diff --git a/packages/status-react/src/routes/chat/components/chat-input/index.tsx b/packages/status-react/src/routes/chat/components/chat-input/index.tsx index 4985e943..bfa18811 100644 --- a/packages/status-react/src/routes/chat/components/chat-input/index.tsx +++ b/packages/status-react/src/routes/chat/components/chat-input/index.tsx @@ -6,7 +6,7 @@ import { GifIcon } from '~/src/icons/gif-icon' import { ImageIcon } from '~/src/icons/image-icon' import { StickerIcon } from '~/src/icons/sticker-icon' import { styled } from '~/src/styles/config' -import { Flex, IconButton } from '~/src/system' +import { Box, Flex, IconButton } from '~/src/system' import { InputReply } from './input-reply' @@ -34,9 +34,11 @@ export const ChatInput = (props: Props) => { return ( - - - + + + + + {state.message && } @@ -67,7 +69,7 @@ const Wrapper = styled('div', { display: 'flex', overflow: 'hidden', alignItems: 'flex-end', - padding: '12px 8px 12px 10px', + padding: '12px 8px 12px 4px', gap: 4, }) diff --git a/packages/status-react/src/routes/chat/components/chat-input/input-reply.tsx b/packages/status-react/src/routes/chat/components/chat-input/input-reply.tsx index 47fc353d..7463bdbf 100644 --- a/packages/status-react/src/routes/chat/components/chat-input/input-reply.tsx +++ b/packages/status-react/src/routes/chat/components/chat-input/input-reply.tsx @@ -38,7 +38,7 @@ export const InputReply = (props: Props) => { {message.type === 'text' && ( - + {message.text} @@ -56,7 +56,7 @@ export const InputReply = (props: Props) => { {message.type === 'image-text' && ( - + {message.text} diff --git a/packages/status-react/src/routes/chat/components/chat-message/index.tsx b/packages/status-react/src/routes/chat/components/chat-message/index.tsx index b8a70887..e4f73108 100644 --- a/packages/status-react/src/routes/chat/components/chat-message/index.tsx +++ b/packages/status-react/src/routes/chat/components/chat-message/index.tsx @@ -65,7 +65,7 @@ export const ChatMessage = (props: Props) => { - + -
+ {contact.name} -
+
}> View Profile diff --git a/packages/status-react/src/routes/chat/components/chat-message/message-reply.tsx b/packages/status-react/src/routes/chat/components/chat-message/message-reply.tsx index 2436e880..a2b6b18f 100644 --- a/packages/status-react/src/routes/chat/components/chat-message/message-reply.tsx +++ b/packages/status-react/src/routes/chat/components/chat-message/message-reply.tsx @@ -24,14 +24,7 @@ export const MessageReply = (props: Props) => { {reply.type === 'text' && ( - + {reply.text} @@ -50,7 +43,7 @@ export const MessageReply = (props: Props) => { )} {reply.type === 'image-text' && ( - + {reply.text}