Skip to content

Commit 0424012

Browse files
authored
fix(website): loosen mobile shadow reach cap (#48)
Co-authored-by: agustin-littlehat <minotopo@gmail.com>
1 parent af74189 commit 0424012

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

website/src/components/GalleryWorkbench/GalleryWorkbench.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ const LIGHT_HELPER_SELECTOR = ".dn-light-helper";
164164
const RESPONSIVE_ZOOM_BREAKPOINT = 900;
165165
const RESPONSIVE_ZOOM_BOTTOM_RESERVE = 72;
166166
const RESPONSIVE_ZOOM_MIN_SCALE = 0.42;
167-
const RESPONSIVE_SHADOW_EXTEND_BASE = 1600;
168-
const RESPONSIVE_SHADOW_EXTEND_MIN = 600;
167+
const RESPONSIVE_SHADOW_EXTEND_BASE = 3200;
168+
const RESPONSIVE_SHADOW_EXTEND_MIN = 2000;
169169

170170
function clamp(value: number, min: number, max: number): number {
171171
if (!Number.isFinite(value)) return min;

0 commit comments

Comments
 (0)