diff --git a/apps/web/src/components/tools/meme-generator-preview.tsx b/apps/web/src/components/tools/meme-generator-preview.tsx index f21e5bdd..1703564c 100644 --- a/apps/web/src/components/tools/meme-generator-preview.tsx +++ b/apps/web/src/components/tools/meme-generator-preview.tsx @@ -53,7 +53,7 @@ function TextPreviewOverlay({ const value = textValues.find((v) => v.id === box.id); const text = value?.text || box.defaultText || ""; const displayText = allCaps ? text.toUpperCase() : text; - const autoSize = `clamp(10px, ${box.height * 0.45}cqi, 60px)`; + const autoSize = `clamp(10px, ${box.height * 0.35}vw, 60px)`; const appliedSize = fontSize > 0 ? `${fontSize}px` : autoSize; return ( @@ -347,8 +347,7 @@ function EditorPreview() {