From d2742751bae1353187ce1dda42225e4c2f93836a Mon Sep 17 00:00:00 2001 From: iris Date: Thu, 30 Jul 2026 09:08:08 +0200 Subject: [PATCH] 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. --- client/src/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/styles.css b/client/src/styles.css index f1f1d9c..077469a 100644 --- a/client/src/styles.css +++ b/client/src/styles.css @@ -216,7 +216,7 @@ button.danger { background: #5a2a2a; border-color: #7a3a3a; color: #fff; } .cart-items { flex: 1 1 0; min-height: 0; - overflow: hidden; + overflow-y: auto; margin-bottom: 6px; display: flex; flex-direction: column;