I'm working on a minimalist checkout interface using bootstrap. Here's my progress so far:
https://i.sstatic.net/DMVAJ.png
<ul class="list-group list-group-flush">
<li class="list-group-item bg-light px-0">
<h6 class="my-0">Category Name</h6>
<div class="row">
<div class="col text-left"><small class="lh-condensed">Product Name</small></div>
<div class="col text-right"><small class="lh-condensed">$100.00</small></div>
</div>
<div class="row">
<div class="col text-left"><small>Product Name</small></div>
<div class="col text-right"><small>$130.39</small></div>
</div>
</li>
<li class="list-group-item bg-light px-0">
<h6 class="my-0">Category Name</h6>
<div class="row">
<div class="col text-left"><small class="lh-condensed">Product Name</small></div>
<div class="col text-right"><small class="lh-condensed">$100.00</small></div>
</div>
<div class="row">
<div class="col text-left"><small>Product Name</small></div>
<div class="col text-right"><small>$130.39</small></div>
</div>
</li>
</ul>
Does anyone know how I can reduce the spacing between the "Product Name" rows? There doesn't seem to be any margin or padding.. so I'm not sure how to solve this.
Appreciate any assistance you can provide!