From c25acbf4c52c5c54b697f404a107eb74768c5cac Mon Sep 17 00:00:00 2001 From: hanif salafi Date: Wed, 10 Sep 2025 07:26:46 +0700 Subject: [PATCH] feat: fixing error --- components/editor/custom-editor.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/components/editor/custom-editor.js b/components/editor/custom-editor.js index c2e10463..0b7579f4 100644 --- a/components/editor/custom-editor.js +++ b/components/editor/custom-editor.js @@ -76,11 +76,12 @@ function CustomEditor(props) { .ckeditor-wrapper { border-radius: 6px; overflow: hidden; - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), + 0 1px 2px 0 rgba(0, 0, 0, 0.06); } .ckeditor-wrapper :global(.ck.ck-editor__main) { - min-height: ${props.height || 300}px; + min-height: ${props.height || 400}px; max-height: ${maxHeight}px; } @@ -167,4 +168,4 @@ function CustomEditor(props) { ); } -export default CustomEditor; +export default CustomEditor; \ No newline at end of file