add style
This commit is contained in:
parent
90ee2451f4
commit
d00e308b05
2 changed files with 57 additions and 26 deletions
|
|
@ -1,4 +1,31 @@
|
|||
#wallet-backup-phrase {
|
||||
h3 {
|
||||
padding: 15px;
|
||||
}
|
||||
.button-confirm {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
.password-required {
|
||||
padding: 1rem;
|
||||
}
|
||||
.password-prompt {
|
||||
background-color: $subtle-gray;
|
||||
padding: 2rem;
|
||||
.explanation {
|
||||
padding: 0 1rem;
|
||||
margin: 1rem 0;
|
||||
}
|
||||
.description {
|
||||
text-align: center;
|
||||
font-size: 15px;
|
||||
color: #000;
|
||||
margin: 1rem 0;
|
||||
}
|
||||
input {
|
||||
width: 100%;
|
||||
padding: 1rem;
|
||||
}
|
||||
}
|
||||
.bar.bar-royal .title {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -59,13 +59,17 @@
|
|||
## STEP 3
|
||||
-->
|
||||
<div id="wallet-backup-phrase-step-3" class="ng-hide" ng-show="step == 3">
|
||||
<div class="password-prompt"><span translate>Enter your password</span>
|
||||
<label class="item item-input item-stacked-label">
|
||||
<div class="input-label" translate>In order to verify your wallet backup, please type your password.</div>
|
||||
<input type="text" id="passphrase" ng-model="data.passphrase" autocapitalize="off" spellcheck="false" autofocus/>
|
||||
</label>
|
||||
<button ng-disabled="!data.passphrase" class="button button-standard button-primary" ng-click="goToStep(4);" translate>Confirm
|
||||
</button>
|
||||
<h3 translate>Enter your password</h3>
|
||||
<div class="password-prompt">
|
||||
<div class="explanation">
|
||||
<div class="description" translate>In order to verify your wallet backup, please type your password.</div>
|
||||
<div class="input">
|
||||
<input type="password" id="passphrase" ng-model="data.passphrase" autocapitalize="off" spellcheck="false" autofocus/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="button-confirm">
|
||||
<button ng-disabled="!data.passphrase" class="button button-standard button-primary" ng-click="goToStep(4);" translate>Confirm</button>
|
||||
</div>
|
||||
</div>
|
||||
</ion-content>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue