refactor(pos): Optimize cart total section layout

- Reduced spacing around 'Итого:' line for more compact design
- Changed from h5 to strong tags for better space utilization
- Removed bottom margin from cart list
- Set symmetric padding (py-1) for total section
- More vertical space now available for cart items
This commit is contained in:
2025-11-16 21:47:45 +03:00
parent 660c0cb97b
commit 740ed09113

View File

@@ -41,12 +41,12 @@
</button> </button>
</div> </div>
<div class="card-body d-flex flex-column" style="min-height: 0;"> <div class="card-body d-flex flex-column" style="min-height: 0;">
<div id="cartList" class="flex-grow-1 mb-3" style="overflow-y: auto;"></div> <div id="cartList" class="flex-grow-1" style="overflow-y: auto;"></div>
<div class="mt-auto"> <div class="mt-auto">
<div class="d-flex justify-content-between align-items-center mb-3 pb-3 border-top pt-3"> <div class="d-flex justify-content-between align-items-center py-1 border-top">
<h5 class="mb-0">Итого:</h5> <strong class="mb-0">Итого:</strong>
<h5 class="mb-0 text-primary" id="cartTotal">0.00</h5> <strong class="mb-0 text-primary fs-5" id="cartTotal">0.00</strong>
</div> </div>
</div> </div>
</div> </div>