Merge pull request #2673 from oxen-io/clearnet

Fix regression in emoji alignment from previous release
This commit is contained in:
Audric Ackermann 2023-02-09 17:15:23 +11:00 committed by GitHub
commit 9fa95377fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View file

@ -2,7 +2,7 @@
"name": "session-desktop",
"productName": "Session",
"description": "Private messaging from your desktop",
"version": "1.10.6",
"version": "1.10.7",
"license": "GPL-3.0",
"author": {
"name": "Oxen Labs",

View file

@ -46,8 +46,6 @@ const StyledMessageContentContainer = styled.div<{ direction: 'left' | 'right' }
const StyledMessageWithAuthor = styled.div<{ isIncoming: boolean }>`
max-width: ${props => (props.isIncoming ? '100%' : 'calc(100% - 17px)')};
display: flex;
flex-direction: column;
`;
export const MessageContentWithStatuses = (props: Props) => {