1
0
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:
Puyodead1 2023-06-01 10:42:57 -04:00
parent 665e8542a7
commit dd81402647
No known key found for this signature in database
GPG Key ID: BA5F91AAEF68E5CE
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ const MessageTimestamp = styled.div`
const MessageContent = styled.div<{ sending?: boolean; failed?: boolean }>`
font-size: 16px;
white-space: pre-wrap;
word-wrap: break-word;
word-wrap: anywhere;
opacity: ${(props) => (props.sending ? 0.5 : undefined)};
color: ${(props) => (props.failed ? "var(--error)" : undefined)};
`;

View File

@ -27,7 +27,7 @@ const TextInput = styled.div`
left: 0;
width: 100%;
outline: none;
word-wrap: break-word;
word-wrap: anywhere;
padding: 12px 16px;
`;