поменял лого и правки
This commit is contained in:
gofnnp 2023-02-17 12:25:50 +04:00
parent 9e7b91e117
commit c282a6e521
5 changed files with 34 additions and 34 deletions

View File

@ -9,7 +9,7 @@
"logLevel": "debug"
},
"/icard-proxy": {
"target": "https://p1.icard-proxy.crm4retail.ru",
"target": "https://sakura.lk.crm4retail.ru/api/icard-proxy",
"secure": false,
"pathRewrite": {
"^/icard-proxy": ""

View File

@ -1,5 +1,5 @@
<div class="container-navbar">
<img src="./assets/logo-black.png" alt="Логотип">
<img src="./assets/sakura-logo.png" alt="Логотип">
<!-- <span class="menu" (click)="showMenu()">Меню</span> -->
<app-cart #cart></app-cart>
<app-menu (toggleMenu)="cart.toggleSideBar()"></app-menu>

View File

@ -1,44 +1,44 @@
.container-navbar {
box-sizing: border-box;
padding: 0 54px;
width: 100%;
height: 54px;
// background: var(--orange-main);
color: #fff;
display: flex;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
padding: 16px 54px;
width: 100%;
height: fit-content;
color: #fff;
display: flex;
align-items: center;
justify-content: space-between;
img {
height: 26px;
}
img {
height: 68px;
border-radius: 12px;
}
.menu {
color: #252525;
font-weight: 600;
font-size: 14px;
letter-spacing: 2px;
border-bottom: 2px solid #E16F38;
cursor: pointer;
}
.menu {
color: #252525;
font-weight: 600;
font-size: 14px;
letter-spacing: 2px;
border-bottom: 2px solid #e16f38;
cursor: pointer;
}
}
.title {
font-weight: 400;
font-size: 18px;
margin-left: 12px;
font-weight: 400;
font-size: 18px;
margin-left: 12px;
}
@media screen and (max-width: 600px) {
.container-navbar {
justify-content: center;
}
.container-navbar {
justify-content: center;
}
}
@media screen and (max-width: 549px) {
.container-navbar {
.menu {
display: none;
}
.container-navbar {
.menu {
display: none;
}
}
}
}

View File

@ -57,7 +57,7 @@ export class BonusProgramComponent implements OnInit {
next: (res) => {
this.userName = res.customer_info.name
this.accountData = {
CardNumber: res.customer_info.cards[0].Number,
CardNumber: res.customer_info.cards[0]?.Number || '',
Bonuses: res.customer_info.walletBalances[0].balance
}
barcode("#barcode")

Binary file not shown.

After

Width:  |  Height:  |  Size: 598 KiB