Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Web/WebMVC/Views/Order/Detail.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@

<article class="esh-orders_detail-items row">
<section class="esh-orders_detail-item col-9"></section>
<section class="esh-orders_detail-item esh-orders_detail-item--mark col-2">$ @Model.Total</section>
<section class="esh-orders_detail-item esh-orders_detail-item--mark col-2">$ @Model.Total.ToString("N2")</section>
</article>
</section>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

<article class="esh-basket-items row">
<section class="esh-basket-item col-10"></section>
<section class="esh-basket-item esh-basket-item--mark col-2">$ @Model.Total()</section>
<section class="esh-basket-item esh-basket-item--mark col-2">$ @Model.Total().ToString("N2")</section>
</article>

<article class="esh-basket-items row">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
right: 0;
top: 2.5rem;
transition: height 0.35s;
z-index: 1;
}

.esh-identity:hover .esh-identity-drop {
Expand Down