Commit ca594c95 by Arjun

style fix

parent 7d608aa1
...@@ -139,7 +139,6 @@ export class AppComponent { ...@@ -139,7 +139,6 @@ export class AppComponent {
'review' 'review'
]; ];
const currentUrl = this.router.url.split('/'); const currentUrl = this.router.url.split('/');
console.log(currentUrl);
const index = restrictedUrl.findIndex(x => x === currentUrl[1]); const index = restrictedUrl.findIndex(x => x === currentUrl[1]);
if (index > -1 || this.tabData === false) { if (index > -1 || this.tabData === false) {
return true; return true;
......
...@@ -235,7 +235,7 @@ ...@@ -235,7 +235,7 @@
</div> </div>
</div> </div>
</ion-content> </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="footer_btnbay" *ngIf="cartService.carts && cartService.carts.length > 0" [hidden]="currentIndex != 0">
<div class="continue" (click)="goToPage('productlist')"> <div class="continue" (click)="goToPage('productlist')">
CONTINUE SHOPPING CONTINUE SHOPPING
......
...@@ -590,4 +590,18 @@ ...@@ -590,4 +590,18 @@
} }
} }
} }
}
@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 @@ ...@@ -221,6 +221,7 @@
height: 100%; height: 100%;
object-fit: cover; object-fit: cover;
object-position: center; object-position: center;
border-radius: 8px;
} }
.featured_overlay { .featured_overlay {
position: absolute; position: absolute;
......
...@@ -110,6 +110,7 @@ ...@@ -110,6 +110,7 @@
height: 100%; height: 100%;
object-fit: contain; object-fit: contain;
object-position: center; object-position: center;
background-color: #fff;
} }
} }
h5 { h5 {
......
...@@ -20,8 +20,9 @@ ...@@ -20,8 +20,9 @@
<div class="profile_circle"> <div class="profile_circle">
<img [src]="loggedUser.profilePhoto" onerror="this.src='./../assets/asset_avatar.png'" /> <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)" /> <input type="file" accept="image/*;capture=camera" (change)="fileChange($event)" />
</div>
</div> </div>
<h5>{{loggedUser.name}}</h5> <h5>{{loggedUser.name}}</h5>
...@@ -31,7 +32,7 @@ ...@@ -31,7 +32,7 @@
<div class="account_header"> <div class="account_header">
<h5 class="floatLeft">ACCOUNT INFORMATION</h5> <h5 class="floatLeft">ACCOUNT INFORMATION</h5>
<span class="floatRight" (click)="goToPage('changedetails', user && user)"><img <span class="floatRight" (click)="goToPage('changedetails', user && user)"><img
src="../../assets/edit.png" /></span> src="../../assets/edit.png" /></span>
<div class="clear"></div> <div class="clear"></div>
</div> </div>
<div class="row"> <div class="row">
...@@ -135,11 +136,11 @@ ...@@ -135,11 +136,11 @@
<p>Are you sure to Logout ?</p> <p>Are you sure to Logout ?</p>
<div class="logout_footer"> <div class="logout_footer">
<button class="btn-cancel floatLeft" (click)="istoggle();"> <button class="btn-cancel floatLeft" (click)="istoggle();">
Cancel Cancel
</button> </button>
<button class="btn-logout floatRight" (click)="authService.SignOut(); istoggle()"> <button class="btn-logout floatRight" (click)="authService.SignOut(); istoggle()">
Logout Logout
</button> </button>
</div> </div>
<div class="clear"></div> <div class="clear"></div>
......
<ion-header> <div class="custom-header">
<div class="nav_header"> <button class="nav_btn nav_back floatLeft" (click)="closeModal()"></button>
<button class="nav_btn nav_back floatLeft" (click)="closeModal()"></button> <div class="nav_title floatLeft relative">
<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 />
<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> </div>
</ion-header> <button class="nav_btn nav_close floatRight" (click)="closeModal()"></button>
<div class="clear"></div>
</div>
<div class="search_item_list"> <div class="search_item_list">
<ul *ngIf="searchService.searchList"> <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