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:
parent
3b900cb910
commit
d2742751ba
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue