fix: small UI fixes

pull/3055/head
Audric Ackermann 2 years ago
parent cef59be005
commit cc4789cd0f

@ -210,7 +210,6 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
margin-right: -20px; // offsets the edit icon button so it's centered
p { p {
font-size: $session-font-md; font-size: $session-font-md;

@ -51,6 +51,7 @@ const StyledMessageWithAuthor = styled.div`
display: flex; display: flex;
flex-direction: column; flex-direction: column;
min-width: 0; min-width: 0;
gap: var(--margins-xs);
`; `;
export const MessageContentWithStatuses = (props: Props) => { export const MessageContentWithStatuses = (props: Props) => {

@ -39,7 +39,7 @@ export const MessageRequestResponse = (props: PropsForMessageRequestResponse) =>
id={`msg-${messageId}`} id={`msg-${messageId}`}
> >
<SpacerSM /> <SpacerSM />
<Text text={msgText} subtle={true} ellipsisOverflow={true} /> <Text text={msgText} subtle={true} ellipsisOverflow={false} textAlign="center" />
</Flex> </Flex>
</ReadableMessage> </ReadableMessage>
); );

Loading…
Cancel
Save