Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

[PAY-1526] Mobile chat reaction picker shadow #3642

Merged
merged 1 commit into from
Jun 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion packages/mobile/src/screens/chat-screen/ReactionPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,11 @@ const useStyles = makeStyles(({ spacing, palette, typography }) => ({
zIndex: zIndex.CHAT_REACTIONS_POPUP_CONTENT,
width: Dimensions.get('window').width - spacing(10),
backgroundColor: palette.white,
marginHorizontal: spacing(5)
marginHorizontal: spacing(5),
shadowColor: 'black',
shadowOpacity: 0.08,
shadowRadius: 10,
shadowOffset: { width: 0, height: 2 }
},
popupChatMessage: {
position: 'absolute',
Expand Down