An ATproto social media client -- with an independent Appview.

fix: chat bubbles and send button (#50)

authored by

serenity and committed by
GitHub
13f1612f d3adda39

+3 -3
+1 -1
src/components/dms/MessageItem.tsx
··· 209 209 }> 210 210 <RichText 211 211 value={rt} 212 - style={[a.text_md, isFromSelf && {color: t.palette.white}]} 212 + style={[a.text_md, isFromSelf && {color: t.palette.black}]} 213 213 interactiveStyle={a.underline} 214 214 enableTags 215 215 emojiMultiplier={3}
+1 -1
src/screens/Messages/components/MessageInput.tsx
··· 200 200 ]} 201 201 onPress={onSubmit} 202 202 disabled={needsEmailVerification}> 203 - <PaperPlane fill={t.palette.white} style={[a.relative, {left: 1}]} /> 203 + <PaperPlane fill={t.palette.black} style={[a.relative, {left: 1}]} /> 204 204 </Pressable> 205 205 </View> 206 206 </View>
+1 -1
src/screens/Messages/components/MessageInput.web.tsx
··· 246 246 }, 247 247 ]} 248 248 onPress={onSubmit}> 249 - <PaperPlane fill={t.palette.white} style={[a.relative, {left: 1}]} /> 249 + <PaperPlane fill={t.palette.black} style={[a.relative, {left: 1}]} /> 250 250 </Pressable> 251 251 </View> 252 252 </View>