This commit is contained in:
ポール ウェッブ 2019-04-15 13:51:51 -05:00
parent cd306baad8
commit 6ea7cb7806
3 changed files with 20 additions and 2 deletions

View file

@ -41,6 +41,11 @@
<?php endif ?>
<h2><?php echo $isSyncAgreed && $isRewardClaimed ? "You're all set!" : "Almost done!" ?></h2>
<div>
<?php echo
$statusData['redeemed_reward']
?>
</div>
<div class="confirmation-steps">
<ul class="bulletless">

View file

@ -30,7 +30,13 @@
</div>
<figure>
<img src="<?php echo $osScreenshotSrc ?>" alt="Screenshot of LBRY"/>
<img
alt="Screenshot of LBRY"
src="<?php echo $osScreenshotSrc ?>"
<?php if ($os === OS::OS_ANDROID): ?>
class="tall"
<?php endif ?>
/>
</figure>
<?php else: ?>

View file

@ -182,8 +182,15 @@
min-width: 12rem; min-height: 12rem;
margin-bottom: 1rem;
max-height: 25rem;
object-fit: contain;
&:not(.tall) {
max-height: 25rem;
}
&.tall {
max-height: 50rem;
}
}
}