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 <noreply@anthropic.com>
This commit is contained in:
@@ -196,8 +196,9 @@
|
|||||||
background-color: #0a0704;
|
background-color: #0a0704;
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: flex-start;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
overflow-y: auto;
|
||||||
padding: var(--space-8);
|
padding: var(--space-8);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
|
|||||||
@@ -156,8 +156,9 @@
|
|||||||
background-color: rgba(4, 6, 11, 0.98);
|
background-color: rgba(4, 6, 11, 0.98);
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: flex-start;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
overflow-y: auto;
|
||||||
padding: var(--space-6);
|
padding: var(--space-6);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
|
|||||||
Reference in New Issue
Block a user