Skip to content

Commit

Permalink
removed rounded edges
Browse files Browse the repository at this point in the history
  • Loading branch information
Thapelo64 committed Oct 22, 2023
1 parent 6be51a2 commit 02bb073
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
3 changes: 2 additions & 1 deletion libs/app/listing/feature/src/listing.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</div>
<div class="swiper-container-wrapper">
<ion-buttons slot="start" class="swiper-button1" #one>
<ion-button style="height: 100px" (click)="goPrev()" #one>
<ion-button *ngIf="list.photos.length>1" style="height: 100px" (click)="goPrev()" #one>
<img src="assets/icon/arrow1.svg" #back alt="swiper-back"/>
</ion-button>
</ion-buttons>
Expand All @@ -58,6 +58,7 @@
</swiper-container>
<ion-buttons slot="end" class="swiper-button2" #two>
<ion-button
*ngIf="list.photos.length>1"
id="next-button"
style="height: 100px"
(click)="goNext($event)"
Expand Down
17 changes: 9 additions & 8 deletions libs/app/listing/feature/src/listing.page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
align-items: center;
}

.uploaded-image img {
width: 100%;
}
// .uploaded-image img {
// width: 100%;
// }

.swiper-container {
position: relative;
width: 80%;
Expand Down Expand Up @@ -112,7 +113,7 @@ swiper-slide {
swiper-slide img {
width: auto;
height: 600px;
border-radius: 20px;
// border-radius: 20px;
margin: auto;
display: flex;
}
Expand Down Expand Up @@ -383,7 +384,7 @@ ion-col {
width: 100%;
height: 13px;
background-color: rgb(150, 150, 150);
border-radius: 5px;
// border-radius: 5px;
margin-bottom: 5px;
}

Expand All @@ -393,7 +394,7 @@ ion-col {
left: 0;
height: 100%;
background-color: green;
border-radius: 5px;
// border-radius: 5px;
transition: width 0.3s ease-in-out;
}

Expand All @@ -407,7 +408,7 @@ ion-col {
left: 0;
height: 100%;
background-color: red;
border-radius: 5px;
// border-radius: 5px;
transition: width 0.3s ease-in-out;
}

Expand All @@ -417,7 +418,7 @@ ion-col {
left: 0;
height: 100%;
background-color: #ffcc00;
border-radius: 5px;
// border-radius: 5px;
transition: width 0.3s ease-in-out;
}

Expand Down

0 comments on commit 02bb073

Please sign in to comment.