feat: fixing error

This commit is contained in:
hanif salafi 2025-09-10 07:26:46 +07:00
parent d0336e9ca0
commit c25acbf4c5
1 changed files with 4 additions and 3 deletions

View File

@ -76,11 +76,12 @@ function CustomEditor(props) {
.ckeditor-wrapper { .ckeditor-wrapper {
border-radius: 6px; border-radius: 6px;
overflow: hidden; 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) { .ckeditor-wrapper :global(.ck.ck-editor__main) {
min-height: ${props.height || 300}px; min-height: ${props.height || 400}px;
max-height: ${maxHeight}px; max-height: ${maxHeight}px;
} }
@ -167,4 +168,4 @@ function CustomEditor(props) {
); );
} }
export default CustomEditor; export default CustomEditor;