Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
lidel committed Feb 5, 2021
2 parents 04068d0 + 00a40c1 commit 6a3caf1
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/components/copy-link/CopyLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,21 @@ class CopyLink extends React.Component {
<div className="overflow-hidden">
<div className="flex flex-column items-center mb3 appear-from-below">
<span className="f7 charcoal-muted lh-copy pb2">{t('copyLink.qrLabel')}</span>
<QRCode value={shareLink}/>
<QRCode
value={shareLink}
bgColor={'#ffffff'}
fgColor={'#022E44'}
level={'M'}
renderAs={'svg'}
imageSettings={{
src: 'favicon-32x32.png',
x: null,
y: null,
height: 32,
width: 32,
excavate: true
}}
/>
</div>
</div>
</div>
Expand Down

0 comments on commit 6a3caf1

Please sign in to comment.