From 0ac463069524239a3241b7484cecc7ca1e62a9b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Sat, 1 Nov 2025 01:05:31 -0300 Subject: [PATCH] Update SectionTemplateForm to adjust HTML content field styling: Changed minimum height from 400px to 200px and added horizontal overflow for improved usability in the form schema. --- .../Resources/SectionTemplates/Schemas/SectionTemplateForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Filament/Admin/Resources/SectionTemplates/Schemas/SectionTemplateForm.php b/app/Filament/Admin/Resources/SectionTemplates/Schemas/SectionTemplateForm.php index 0e68a02..8baad7e 100644 --- a/app/Filament/Admin/Resources/SectionTemplates/Schemas/SectionTemplateForm.php +++ b/app/Filament/Admin/Resources/SectionTemplates/Schemas/SectionTemplateForm.php @@ -32,7 +32,7 @@ class SectionTemplateForm ->columnSpanFull() ->helperText(__('section-templates.field_html_content_help')) ->extraAttributes([ - 'style' => 'min-height: 400px;', + 'style' => 'min-height: 200px; overflow-x: auto;', // Metni yatay kaydırma eklendi 'data-field-name' => 'html_content', ]),