From 824249271219718861aedfea0a161832ccc29cf2 Mon Sep 17 00:00:00 2001 From: JL Kruger Date: Fri, 27 Mar 2026 16:07:40 +0200 Subject: [PATCH] Fix lightbox overflow on Renegade and Nomad mobile align-items: center clips content at both ends when taller than viewport. Switch to align-items: flex-start + overflow-y: auto so gate scrolls from top. Co-Authored-By: Claude Sonnet 4.6 --- Videos/nomad-soul.html | 3 ++- Videos/renegade-storyteller.html | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Videos/nomad-soul.html b/Videos/nomad-soul.html index e902319..4c9e629 100644 --- a/Videos/nomad-soul.html +++ b/Videos/nomad-soul.html @@ -196,8 +196,9 @@ background-color: #0a0704; z-index: 1000; display: flex; - align-items: center; + align-items: flex-start; justify-content: center; + overflow-y: auto; padding: var(--space-8); opacity: 0; visibility: hidden; diff --git a/Videos/renegade-storyteller.html b/Videos/renegade-storyteller.html index 3c2fe80..31226c7 100644 --- a/Videos/renegade-storyteller.html +++ b/Videos/renegade-storyteller.html @@ -156,8 +156,9 @@ background-color: rgba(4, 6, 11, 0.98); z-index: 1000; display: flex; - align-items: center; + align-items: flex-start; justify-content: center; + overflow-y: auto; padding: var(--space-6); opacity: 0; visibility: hidden;