Bluesky app fork with some witchin' additions 💫

fix bg color (#8102)

authored by samuel.fm and committed by

GitHub 0897a692 c5900034

+4 -2
+4 -2
src/components/dms/EmojiReactionPicker.tsx
··· 53 53 54 54 const limitReacted = hasReachedReactionLimit(message, currentAccount?.did) 55 55 56 + const bgColor = t.scheme === 'light' ? t.atoms.bg : t.atoms.bg_contrast_25 57 + 56 58 return ( 57 59 <View 58 60 onLayout={evt => setLayout(evt.nativeEvent.layout)} 59 61 style={[ 62 + bgColor, 60 63 a.rounded_full, 61 64 a.absolute, 62 65 {bottom: '100%'}, 63 66 isFromSelf ? a.right_0 : a.left_0, 64 - t.scheme === 'light' ? t.atoms.bg : t.atoms.bg_contrast_25, 65 67 a.flex_row, 66 68 a.p_xs, 67 69 a.gap_xs, ··· 97 99 } 98 100 : alreadyReacted 99 101 ? {backgroundColor: t.palette.primary_200} 100 - : t.atoms.bg, 102 + : bgColor, 101 103 {height: 40, width: 40}, 102 104 a.justify_center, 103 105 a.align_center,