dev #14384 Правка ошибок отображения WPA КофеЛайк: fix text styles
This commit is contained in:
parent
59edb5939b
commit
2d3fc2f4ca
@ -2,10 +2,10 @@
|
|||||||
<ng-container *ngIf="lastOrder">
|
<ng-container *ngIf="lastOrder">
|
||||||
<h2>Ваш предыдущий заказ</h2>
|
<h2>Ваш предыдущий заказ</h2>
|
||||||
<p class="flex"><span>Дата: </span>
|
<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>
|
||||||
<p class="flex"><span>На сумму: </span>
|
<p class="flex"><span>На сумму: </span>
|
||||||
<span *ngIf="!loading">{{lastOrder?.last_purchase_sum}}₽</span>
|
<span class="info" *ngIf="!loading">{{lastOrder?.last_purchase_sum}}₽</span>
|
||||||
</p>
|
</p>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
<ng-container *ngIf="!lastOrder">
|
<ng-container *ngIf="!lastOrder">
|
||||||
|
|||||||
@ -22,6 +22,9 @@
|
|||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
}
|
}
|
||||||
|
.info {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.evaluate-order {
|
.evaluate-order {
|
||||||
|
|||||||
@ -12,6 +12,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
font-size: 16px;
|
||||||
|
|
||||||
&__level {
|
&__level {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -20,16 +21,11 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
& p {
|
& p {
|
||||||
color: var(--button-color);
|
color: var(--button-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
p.top-info__bonus {
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__qr {
|
&__qr {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user