From 877d3f16d39bae9e2bf91deb1fa78f797d8c2364 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Fri, 13 Feb 2026 18:21:14 +0900 Subject: [PATCH] =?UTF-8?q?fix:=ED=95=84=EB=93=9C=20=EC=97=90=EB=94=94?= =?UTF-8?q?=ED=84=B0=20=EC=98=A4=EB=B2=84=EB=A0=88=EC=9D=B4=20=EA=B8=B0?= =?UTF-8?q?=EB=B3=B8=20=EC=A0=95=EB=A0=AC=EC=9D=84=20=EC=99=BC=EC=AA=BD?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - template-fields/fields FieldOverlay: justify-center → text_align 기반 정렬 - 기본값 justify-start(왼쪽), text_align에 따라 L/C/R 반영 Co-Authored-By: Claude Opus 4.6 --- resources/views/esign/fields.blade.php | 2 +- resources/views/esign/template-fields.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/esign/fields.blade.php b/resources/views/esign/fields.blade.php index 0bd3607c..2d7ee12e 100644 --- a/resources/views/esign/fields.blade.php +++ b/resources/views/esign/fields.blade.php @@ -263,7 +263,7 @@ className={`w-full relative rounded border-2 transition-all ${p === currentPage touchAction: 'none', boxShadow: resizeMode ? `0 0 0 2px ${color}, 0 2px 12px rgba(0,0,0,0.2)` : (selected ? `0 0 0 1px ${color}, 0 2px 8px rgba(0,0,0,0.15)` : 'none'), }} - className="flex items-center justify-center select-none group transition-shadow"> + className={`flex items-center select-none group transition-shadow ${{'L':'justify-start','C':'justify-center','R':'justify-end'}[field.text_align] || 'justify-start'}`}>
{typeInfo.icon} {field.field_variable ? (field.field_value || `{{${field.field_variable}}}`) : (field.field_label || signerName)} diff --git a/resources/views/esign/template-fields.blade.php b/resources/views/esign/template-fields.blade.php index f8d94efe..03a7dcaa 100644 --- a/resources/views/esign/template-fields.blade.php +++ b/resources/views/esign/template-fields.blade.php @@ -237,7 +237,7 @@ className={`w-full relative rounded border-2 transition-all ${p === currentPage touchAction: 'none', boxShadow: resizeMode ? `0 0 0 2px ${color}, 0 2px 12px rgba(0,0,0,0.2)` : (selected ? `0 0 0 1px ${color}, 0 2px 8px rgba(0,0,0,0.15)` : 'none'), }} - className="flex items-center justify-center select-none group transition-shadow"> + className={`flex items-center select-none group transition-shadow ${{'L':'justify-start','C':'justify-center','R':'justify-end'}[field.text_align] || 'justify-start'}`}>
{typeInfo.icon} {field.field_variable ? `{{${field.field_variable}}}` : (field.field_label || signerName)}