Commit ca594c95 by Arjun

style fix

parent 7d608aa1
......@@ -139,7 +139,6 @@ export class AppComponent {
'review'
];
const currentUrl = this.router.url.split('/');
console.log(currentUrl);
const index = restrictedUrl.findIndex(x => x === currentUrl[1]);
if (index > -1 || this.tabData === false) {
return true;
......
......@@ -235,7 +235,7 @@
</div>
</div>
</ion-content>
<ion-footer>
<ion-footer class="hide-on-keyboard-open">
<div class="footer_btnbay" *ngIf="cartService.carts && cartService.carts.length > 0" [hidden]="currentIndex != 0">
<div class="continue" (click)="goToPage('productlist')">
CONTINUE SHOPPING
......
......@@ -591,3 +591,17 @@
}
}
}
@media only screen and (max-width: 350px) {
.cart_wrapper {
.cart_head {
.cart_menu_header {
ul {
li {
font-size: 12px;
}
}
}
}
}
}
\ No newline at end of file
......@@ -221,6 +221,7 @@
height: 100%;
object-fit: cover;
object-position: center;
border-radius: 8px;
}
.featured_overlay {
position: absolute;
......
......@@ -110,6 +110,7 @@
height: 100%;
object-fit: contain;
object-position: center;
background-color: #fff;
}
}
h5 {
......
......@@ -20,9 +20,10 @@
<div class="profile_circle">
<img [src]="loggedUser.profilePhoto" onerror="this.src='./../assets/asset_avatar.png'" />
<div class="edit"></div>
<div class="edit">
<input type="file" accept="image/*;capture=camera" (change)="fileChange($event)" />
</div>
</div>
<h5>{{loggedUser.name}}</h5>
<p (click)="istoggle()">LOGOUT</p>
......
<ion-header>
<div class="nav_header">
<div class="custom-header">
<button class="nav_btn nav_back floatLeft" (click)="closeModal()"></button>
<div class="nav_title floatLeft relative">
<input class="search_bar" placeholder="Search here.. eg:shirts, retailers etc..." (click)="clickSearch()" (input)="searchFun($event.target.value)" #searchText />
</div>
<button class="nav_btn nav_close floatRight" (click)="closeModal()"></button>
<div class="clear"></div>
</div>
</ion-header>
</div>
<div class="search_item_list">
<ul *ngIf="searchService.searchList">
......
.custom-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999;
background-color: #fff;
-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment