Can someone show me how to achieve this design? https://i.sstatic.net/xbrJC.png
I'm currently using bootstrap 4 and my current layout looks like this https://i.sstatic.net/o78ZN.png
This is the code I have so far:
<div class="col-2 row align-items-center">
<div class="col-6">
{{cart.quantity}}
</div>
<div class="col-6 text-left">
<div class="col-12">
+
</div>
<div class="col-12">
-
</div>
</div>
Could someone please point out any mistakes in my code?