dev #14384 Правка ошибок отображения WPA КофеЛайк: fix text styles

This commit is contained in:
nikolay 2023-07-20 13:32:05 +04:00
parent 59edb5939b
commit 2d3fc2f4ca
3 changed files with 6 additions and 7 deletions

View File

@ -2,10 +2,10 @@
<ng-container *ngIf="lastOrder">
<h2>Ваш предыдущий заказ</h2>
<p class="flex"><span>Дата: </span>
<span *ngIf="!loading">{{lastOrder!.last_purchase_date}}</span>
<span class="info" *ngIf="!loading">{{lastOrder!.last_purchase_date}}</span>
</p>
<p class="flex"><span>На сумму: </span>
<span *ngIf="!loading">{{lastOrder?.last_purchase_sum}}₽</span>
<span class="info" *ngIf="!loading">{{lastOrder?.last_purchase_sum}}₽</span>
</p>
</ng-container>
<ng-container *ngIf="!lastOrder">

View File

@ -22,6 +22,9 @@
flex-direction: row;
gap: 8px;
}
.info {
font-size: 14px;
}
}
.evaluate-order {

View File

@ -12,6 +12,7 @@
display: flex;
flex-direction: column;
align-items: center;
font-size: 16px;
&__level {
width: 100%;
@ -20,16 +21,11 @@
align-items: center;
justify-content: space-around;
font-size: 16px;
}
& p {
color: var(--button-color);
}
p.top-info__bonus {
font-size: 20px;
}
}
&__qr {