Bugfixing currency icon positioning on smaller screens

This commit is contained in:
lepipele
2018-03-28 01:09:53 -05:00
parent 8e5ec822dc
commit fc278d12fc
2 changed files with 12 additions and 1 deletions

View File

@@ -149,7 +149,7 @@
</div>
<div class="bp-view payment scan" id="scan">
<div class="payment__scan">
<img v-bind:src="srvModel.cryptoImage" style="position: absolute; height:64px; width:64px; left:118px; top:96px;" />
<img v-bind:src="srvModel.cryptoImage" class="qr_currency_icon" />
<qrcode v-bind:val="srvModel.invoiceBitcoinUrlQR" v-bind:size="256" bg-color="#f5f5f7" fg-color="#000">
</qrcode>
</div>

View File

@@ -9883,6 +9883,17 @@ strong {
border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.qr_currency_icon {
height: 64px;
width: 64px;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto;
}
/* Warning Page */
.manual__step-two--warning {
display: block;