tablet: make pending-transaction cart list scrollable

.cart-items clipped overflow instead of scrolling, so once the cart
had more line items than fit in the 38vh cart panel the extra rows
were just invisible. overflow-y: auto lets it scroll while still
anchoring to the bottom (justify-content: flex-end) when short.

Closes #39.
This commit is contained in:
iris 2026-07-30 09:08:08 +02:00
commit d2742751ba

View file

@ -216,7 +216,7 @@ button.danger { background: #5a2a2a; border-color: #7a3a3a; color: #fff; }
.cart-items { .cart-items {
flex: 1 1 0; flex: 1 1 0;
min-height: 0; min-height: 0;
overflow: hidden; overflow-y: auto;
margin-bottom: 6px; margin-bottom: 6px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;