This commit is contained in:
Gabriel Bazán 2017-07-10 11:36:57 -03:00
commit 33c80cc392
2 changed files with 6 additions and 3 deletions

View file

@ -26,10 +26,13 @@
font-size:0.9em; font-size:0.9em;
color: $v-mid-gray; color: $v-mid-gray;
.text { .text {
padding-left: 30px; padding-left: 25px;
} }
.icon { .icon {
position: absolute; position: absolute;
img {
width: 20px;
}
} }
} }
&-explanation, &-button-group { &-explanation, &-button-group {

View file

@ -30,11 +30,11 @@
</ion-radio> </ion-radio>
</div> </div>
<div class="comment" ng-if="showMinWarning"> <div class="comment" ng-if="showMinWarning">
<i class="icon"><img src="img/icon-warning.png" width="20px"></i> <i class="icon"><img src="img/icon-warning.png"></i>
<span class="text" translate>Your fee is lower than the minimum recommended ({{getMinimumRecommeded()}} satoshis/byte). Your transaction may never get confirmed.</span> <span class="text" translate>Your fee is lower than the minimum recommended ({{getMinimumRecommeded()}} satoshis/byte). Your transaction may never get confirmed.</span>
</div> </div>
<div class="comment" ng-if="showMaxWarning"> <div class="comment" ng-if="showMaxWarning">
<i class="icon"><img src="img/icon-warning.png" width="20px"></i> <i class="icon"><img src="img/icon-warning.png"></i>
<span class="text" translate>Your could not set a fee higher than 1000 satoshis/byte.</span> <span class="text" translate>Your could not set a fee higher than 1000 satoshis/byte.</span>
</div> </div>
</ion-content> </ion-content>