feat: fixing error
This commit is contained in:
parent
d0336e9ca0
commit
c25acbf4c5
|
|
@ -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;
|
||||
Loading…
Reference in New Issue