mirror of
https://github.com/spacebarchat/client.git
synced 2024-11-22 10:22:30 +01:00
fix text pushing member sidebar
This commit is contained in:
parent
665e8542a7
commit
dd81402647
@ -38,7 +38,7 @@ const MessageTimestamp = styled.div`
|
|||||||
const MessageContent = styled.div<{ sending?: boolean; failed?: boolean }>`
|
const MessageContent = styled.div<{ sending?: boolean; failed?: boolean }>`
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
word-wrap: break-word;
|
word-wrap: anywhere;
|
||||||
opacity: ${(props) => (props.sending ? 0.5 : undefined)};
|
opacity: ${(props) => (props.sending ? 0.5 : undefined)};
|
||||||
color: ${(props) => (props.failed ? "var(--error)" : undefined)};
|
color: ${(props) => (props.failed ? "var(--error)" : undefined)};
|
||||||
`;
|
`;
|
||||||
|
@ -27,7 +27,7 @@ const TextInput = styled.div`
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
outline: none;
|
outline: none;
|
||||||
word-wrap: break-word;
|
word-wrap: anywhere;
|
||||||
padding: 12px 16px;
|
padding: 12px 16px;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user