From 4203cc1fd2fb4e8e6ebefcef8afc4e3da5689bb0 Mon Sep 17 00:00:00 2001 From: hamid zarghami Date: Wed, 26 Nov 2025 15:59:17 +0330 Subject: [PATCH] set paggind default 0 --- src/pages/editor/components/tools/TextShape.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/editor/components/tools/TextShape.tsx b/src/pages/editor/components/tools/TextShape.tsx index 7159b33..5127199 100644 --- a/src/pages/editor/components/tools/TextShape.tsx +++ b/src/pages/editor/components/tools/TextShape.tsx @@ -139,7 +139,7 @@ const TextShape = ({ textarea.style.width = `${textNode.width() * scaleX}px`; textarea.style.fontSize = `${textNode.fontSize() * scaleY}px`; textarea.style.border = "none"; - textarea.style.padding = "50px"; + textarea.style.padding = "0px"; textarea.style.margin = "0px"; textarea.style.overflow = "hidden"; textarea.style.background = "transparent";