Skip to content
Snippets Groups Projects
Commit af3db753 authored by rhenck's avatar rhenck
Browse files

[editor] Fix dynamic height of TextEditor dialog

Now the dialog scrolls and the buttons at the bottom can be reached even 
on low viewport height.

#294
parent b1a24894
No related branches found
No related tags found
No related merge requests found
......@@ -57,6 +57,7 @@ export class DialogService {
defaultFontSize,
clozeMode: false
},
height: '600px',
autoFocus: false
});
return dialogRef.afterClosed();
......
tiptap-editor {
height: 57%;
}
:host ::ng-deep div.ProseMirror {
min-height: 300px;
height: 99%;
border: 1px solid;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment