Skip to content

Commit

Permalink
VC-1403: Invite link screen looks bad (#619)
Browse files Browse the repository at this point in the history
https://jesusfilmmedia.atlassian.net/browse/VC-1403

Co-authored-by: Vlad Mitkovsky <vlad@mitkovsky.com>
  • Loading branch information
lumberman and Vlad Mitkovsky authored Mar 26, 2021
1 parent d31c2bf commit 1b468cb
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/domain/Adventure/Share/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,18 +122,22 @@ function AdventureShareCode(props) {
{isVideoInvite && (
<Flex direction="column" align="center">
<Text style={[st.fs22, st.white, st.pb4]}>{t('inviteLink')}: </Text>
<Touchable onPress={() => copyToClipboard(invitation.url)}>
<Touchable
onPress={() => copyToClipboard(invitation.url)}
style={{ width: '100%' }}
>
<Flex
style={[
st.bw1,
st.borderWhite,
st.br5,
st.bgOffBlue,
st.pv5,
st.ph2,
st.ph4,
{ width: '100%' },
]}
>
<Text style={[st.white, st.fs24]}>
<Text style={[st.white, { fontSize: 18, textAlign: 'center' }]}>
{isVideoInvite ? invitation.url : invitation.code}
</Text>
</Flex>
Expand Down

0 comments on commit 1b468cb

Please sign in to comment.