mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
Closes #994
This commit is contained in:
parent
cd306baad8
commit
6ea7cb7806
3 changed files with 20 additions and 2 deletions
|
@ -41,6 +41,11 @@
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
<h2><?php echo $isSyncAgreed && $isRewardClaimed ? "You're all set!" : "Almost done!" ?></h2>
|
<h2><?php echo $isSyncAgreed && $isRewardClaimed ? "You're all set!" : "Almost done!" ?></h2>
|
||||||
|
<div>
|
||||||
|
<?php echo
|
||||||
|
$statusData['redeemed_reward']
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="confirmation-steps">
|
<div class="confirmation-steps">
|
||||||
<ul class="bulletless">
|
<ul class="bulletless">
|
||||||
|
|
|
@ -30,7 +30,13 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<figure>
|
<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>
|
</figure>
|
||||||
|
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
|
|
|
@ -182,8 +182,15 @@
|
||||||
min-width: 12rem; min-height: 12rem;
|
min-width: 12rem; min-height: 12rem;
|
||||||
|
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
max-height: 25rem;
|
|
||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
|
|
||||||
|
&:not(.tall) {
|
||||||
|
max-height: 25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.tall {
|
||||||
|
max-height: 50rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue