From d68a652a64c2e25a8ae992c88a9ba656259a0978 Mon Sep 17 00:00:00 2001 From: oimwiodev Date: Sat, 16 May 2026 21:00:34 +0100 Subject: [PATCH] Tighten supplied model mobile framing --- components/GlassesModelSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/GlassesModelSection.tsx b/components/GlassesModelSection.tsx index 5d38e57..5381d25 100644 --- a/components/GlassesModelSection.tsx +++ b/components/GlassesModelSection.tsx @@ -86,7 +86,7 @@ export default function GlassesModelSection({ t }: { t: Messages }) { const resize = () => { const { width, height } = wrap.getBoundingClientRect(); const pixelRatio = Math.min(window.devicePixelRatio || 1, 1.7); - const scale = width < 640 ? 0.5 : width < 1024 ? 0.68 : 0.9; + const scale = width < 640 ? 0.42 : width < 1024 ? 0.68 : 0.9; renderer.setPixelRatio(pixelRatio); renderer.setSize(width, height, false); group.scale.setScalar(scale);