From 110ff665e738f74cb855fb6d97231fd90aa5a437 Mon Sep 17 00:00:00 2001 From: Sped0n Date: Tue, 25 Nov 2025 20:29:44 +0800 Subject: [PATCH] fix(gallery): add overflow hidden to prevent scrolling Ensure the fixed gallery modal doesn't allow overflow beyond viewport. Signed-off-by: Sped0n --- assets/scss/_partial/_gallery.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/scss/_partial/_gallery.scss b/assets/scss/_partial/_gallery.scss index cb97ee6..06aaade 100644 --- a/assets/scss/_partial/_gallery.scss +++ b/assets/scss/_partial/_gallery.scss @@ -4,6 +4,7 @@ position: fixed; top: var(--nav-height); z-index: var(--z-nav-gallery); + overflow: hidden; display: flex; flex-direction: column;