From b8d9418121509ea6dc529d3987784140504c43e6 Mon Sep 17 00:00:00 2001 From: Cory Locklear Date: Thu, 11 Jun 2026 10:12:02 -0400 Subject: [PATCH] Fix portrait artifact bank clipping on iPad. Remove inner scroll cap so all draggables stay reachable via page scroll in vertical layout. --- src/App.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.css b/src/App.css index ee42aa3..5917fa2 100644 --- a/src/App.css +++ b/src/App.css @@ -493,8 +493,8 @@ @media (max-width: 52rem) { .artifact-bank__grid { - max-height: 28rem; - overflow-y: auto; + /* More columns in portrait — shorter bank, no inner scroll trap on iPad */ + grid-template-columns: repeat(auto-fill, minmax(7rem, 1fr)); } }