Skip to content

Commit

Permalink
fix: small UI issues (#1604)
Browse files Browse the repository at this point in the history
  • Loading branch information
suschneider authored Mar 12, 2024
1 parent 194d4d4 commit 7643c5f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@
<div class="col-lg-12">
<ul class="share-tools">
<ng-container *ishFeature="'wishlists'">
<li
*ngIf="configuration$('addToWishlist') | async"
class="mr-2"
[attr.data-testing-id]="'wishlist-' + product.sku"
>
<li *ngIf="configuration$('addToWishlist') | async" [attr.data-testing-id]="'wishlist-' + product.sku">
<ish-lazy-product-add-to-wishlist displayType="animated" />
</li>
</ng-container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
type="button"
data-testing-id="btn-date-picker"
>
<fa-icon class="text-secondary" icon="calendar-day" />
<fa-icon class="text-primary" icon="calendar-day" />
</div>
</div>
</div>
4 changes: 4 additions & 0 deletions src/styles/pages/category/product-list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@

&.list-view {
width: 100%;

.product-tile-actions {
justify-content: flex-start;
}
}
}

Expand Down
4 changes: 4 additions & 0 deletions src/styles/pages/productdetail/productdetail.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
margin-top: divide($space-default, 3);
margin-bottom: ($space-default);
}

button.add-to-wishlist {
display: contents;
}
}

.panel-group {
Expand Down

0 comments on commit 7643c5f

Please sign in to comment.