Skip to content

Commit

Permalink
Increase chat reaction emoji sizes (#7241)
Browse files Browse the repository at this point in the history
  • Loading branch information
dharit-tan authored Jan 19, 2024
1 parent 26b0f0c commit 270f107
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions packages/mobile/src/screens/chat-screen/ChatMessageListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,23 +111,23 @@ const useStyles = makeStyles(({ spacing, palette, typography }) => ({
transform: [{ scaleX: -1 }]
},
reaction: {
height: spacing(8),
width: spacing(8)
height: spacing(16),
width: spacing(16)
},
reactionContainer: {
position: 'relative',
display: 'flex',
flexDirection: 'row-reverse',
justifyContent: 'flex-end',
bottom: spacing(4),
gap: -spacing(4),
bottom: spacing(8),
gap: -spacing(12),
height: 0
},
reactionContainerIsAuthor: {
right: spacing(4)
right: spacing(8)
},
reactionContainerOtherUser: {
left: spacing(4),
left: spacing(8),
flexDirection: 'row'
},
reactionMarginBottom: {
Expand Down
4 changes: 2 additions & 2 deletions packages/mobile/src/screens/chat-screen/ReactionPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const useStyles = makeStyles(({ spacing, palette, typography }) => ({
zIndex: zIndex.CHAT_REACTIONS_POPUP_CONTENT
},
emoji: {
height: spacing(17)
height: spacing(22)
},
copyContainer: {
zIndex: zIndex.CHAT_REACTIONS_POPUP_CONTENT
Expand Down Expand Up @@ -237,7 +237,7 @@ export const ReactionPopup = ({
selectedReaction={selectedReaction as ReactionTypes}
onChange={handleReactionChanged}
isVisible={true}
scale={1.6}
scale={2}
style={{
emoji: styles.emoji
}}
Expand Down

0 comments on commit 270f107

Please sign in to comment.