update separation between quantity and price
All checks were successful
Hugo / build (push) Successful in 13s

This commit is contained in:
brooke 2024-07-31 20:38:42 -04:00
parent 3271065109
commit dfa2f0eea7
2 changed files with 8 additions and 3 deletions

View file

@ -73,7 +73,9 @@
<strong>Dimensions:</strong> <strong>Dimensions:</strong>
<span>{{ .dimensions }}</span> <span>{{ .dimensions }}</span>
</div> </div>
{{ end }} {{ if ne .baseCost "" }} {{ end }}
<div class="border-b-[1px] mx-1 my-2"></div>
{{ if ne .baseCost "" }}
<div class="flex flex-row justify-between"> <div class="flex flex-row justify-between">
<strong>Purchase Cost:</strong> <strong>Purchase Cost:</strong>
<span>{{ .purchaseCost }}</span> <span>{{ .purchaseCost }}</span>
@ -130,7 +132,10 @@
> >
<div class="sm:flex sm:items-start"> <div class="sm:flex sm:items-start">
<div class="z-20 w-full mt-3 text-center sm:mt-0 sm:text-left"> <div class="z-20 w-full mt-3 text-center sm:mt-0 sm:text-left">
<div class="relative text-xl mb-2 font-semibold" id="modal-title"> <div
class="relative text-xl mb-2 font-semibold"
id="modal-title"
>
{{ .item }} {{ .item }}
</div> </div>
<div class="flex flex-col sm:flex-row"> <div class="flex flex-col sm:flex-row">

File diff suppressed because one or more lines are too long