diff options
author | Eric Bailey <git@esb.lol> | 2025-03-28 16:38:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-28 16:38:41 -0500 |
commit | c2d6fb82f3bfc6fdde04f78468b28e60ac113b48 (patch) | |
tree | 46a84ddd476cc660fe19da03fb1a4cdf8692a748 /src | |
parent | a84ba121fa7ed5e8d6e0e13783ad50c299b112f2 (diff) | |
download | voidsky-c2d6fb82f3bfc6fdde04f78468b28e60ac113b48.tar.zst |
Design tweaks to applied reactions (#8077)
* Adjust styles of applied reactions * Tweaks for applied reactions styles
Diffstat (limited to 'src')
-rw-r--r-- | src/components/dms/MessageItem.tsx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/components/dms/MessageItem.tsx b/src/components/dms/MessageItem.tsx index 60b0b5ed6..84bef952e 100644 --- a/src/components/dms/MessageItem.tsx +++ b/src/components/dms/MessageItem.tsx @@ -154,7 +154,7 @@ let MessageItem = ({ <View style={[ isFromSelf ? a.align_end : a.align_start, - a.px_xs, + a.px_sm, a.pb_2xs, ]}> <View @@ -167,11 +167,15 @@ let MessageItem = ({ isFromSelf ? a.justify_end : a.justify_start, a.flex_wrap, a.pb_xs, - t.atoms.bg, - a.rounded_lg, + t.atoms.bg_contrast_25, a.border, t.atoms.border_contrast_low, - {marginTop: -6}, + a.rounded_lg, + t.atoms.shadow_sm, + { + // vibe coded number + transform: [{translateY: -11}], + }, ]}> {message.reactions.map((reaction, _i, reactions) => { let label |