fix link style

This commit is contained in:
Sean Yesmunt 2020-05-18 16:46:03 -04:00
parent 2dccad2247
commit 50361e1edb

View file

@ -29,10 +29,10 @@ export default function FileRenderDownload(props: Props) {
</p> </p>
} }
actions={ actions={
<> <div className="section__actions">
{isFree && <FileDownloadLink uri={uri} buttonType="primary" showLabel />} {isFree && <FileDownloadLink uri={uri} buttonType="primary" showLabel />}
<Button button={!isFree ? 'primary' : 'link'} label={__('Get the App')} href="https://lbry.com/get" /> <Button button={!isFree ? 'primary' : 'link'} label={__('Get the App')} href="https://lbry.com/get" />
</> </div>
} }
/> />
); );