Skip to content

Instantly share code, notes, and snippets.

@Bilkiss
Created January 6, 2022 14:21
Show Gist options
  • Save Bilkiss/5b38c259cac3b218f09cc268a16b6671 to your computer and use it in GitHub Desktop.
Save Bilkiss/5b38c259cac3b218f09cc268a16b6671 to your computer and use it in GitHub Desktop.
<div class="row g-0">
<div class="col">
<dl class="text-end">
<dt>Subtotal: </dt>
<dd>Discount (5%): </dd>
<dd>VAT (15%): </dd>
<dt class="fs-5">Total: </dt>
</dl>
</div>
<div class="col-2">
<dl class="text-end pe-5">
<dt>{{displayProductData.subtotal | currency}}</dt>
<dd>{{displayProductData.discount | currency}}</dd>
<dd>{{displayProductData.vat | currency}}</dd>
<dt class="fs-5">{{displayProductData.total | currency}}</dt>
</dl>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment