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.

This commit is contained in:
Ümit Tunç
2025-11-01 01:05:31 -03:00
parent e7d6355b5c
commit 0ac4630695
@@ -32,7 +32,7 @@ class SectionTemplateForm
->columnSpanFull() ->columnSpanFull()
->helperText(__('section-templates.field_html_content_help')) ->helperText(__('section-templates.field_html_content_help'))
->extraAttributes([ ->extraAttributes([
'style' => 'min-height: 400px;', 'style' => 'min-height: 200px; overflow-x: auto;', // Metni yatay kaydırma eklendi
'data-field-name' => 'html_content', 'data-field-name' => 'html_content',
]), ]),