From 53f573b44e04b36bf092d978a731d64113f4ac64 Mon Sep 17 00:00:00 2001 From: agustin-littlehat Date: Sat, 30 May 2026 10:15:47 -0300 Subject: [PATCH] fix(website): loosen mobile shadow reach cap --- website/src/components/GalleryWorkbench/GalleryWorkbench.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/src/components/GalleryWorkbench/GalleryWorkbench.tsx b/website/src/components/GalleryWorkbench/GalleryWorkbench.tsx index 220ff3e8..023bc235 100644 --- a/website/src/components/GalleryWorkbench/GalleryWorkbench.tsx +++ b/website/src/components/GalleryWorkbench/GalleryWorkbench.tsx @@ -164,8 +164,8 @@ const LIGHT_HELPER_SELECTOR = ".dn-light-helper"; const RESPONSIVE_ZOOM_BREAKPOINT = 900; const RESPONSIVE_ZOOM_BOTTOM_RESERVE = 72; const RESPONSIVE_ZOOM_MIN_SCALE = 0.42; -const RESPONSIVE_SHADOW_EXTEND_BASE = 1600; -const RESPONSIVE_SHADOW_EXTEND_MIN = 600; +const RESPONSIVE_SHADOW_EXTEND_BASE = 3200; +const RESPONSIVE_SHADOW_EXTEND_MIN = 2000; function clamp(value: number, min: number, max: number): number { if (!Number.isFinite(value)) return min;