Skip to content
This repository has been archived by the owner on May 5, 2022. It is now read-only.

Commit

Permalink
#VP-6089 add order-summary__small-text strikethrough class (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
kostyrin authored Nov 27, 2020
1 parent a416b91 commit 3895959
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/common-components/paymentMethods.tpl.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
{% if settings.show_prices_with_taxes %}
<span ng-bind="paymentMethod.totalWithTax.formattedAmount"></span>
<span ng-if="paymentMethod.discountAmountWithTax.amount > 0">
<span class="old" ng-bind="paymentMethod.priceWithTax.formattedAmount"></span>
<span class="order-summary__small-text strikethrough" ng-bind="paymentMethod.priceWithTax.formattedAmount"></span>
</span>
{% else %}
<span ng-bind="paymentMethod.total.formattedAmount"></span>
<span ng-if="paymentMethod.discountAmount.amount > 0">
<span class="old" ng-bind="paymentMethod.price.formattedAmount"></span>
<span class="order-summary__small-text strikethrough" ng-bind="paymentMethod.price.formattedAmount"></span>
</span>
{% endif %}
</div>
Expand Down

0 comments on commit 3895959

Please sign in to comment.