fix(editor): focus state

This commit is contained in:
kolaente 2023-06-20 11:46:52 +02:00
parent e716fd1bf9
commit 08959fdb77
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 3 additions and 1 deletions

View File

@ -175,7 +175,7 @@ onBeforeUnmount(() => editor.value?.destroy())
border: 1px solid #ddd;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
padding: 10px;
//padding: 10px;
// font: inherit;
// z-index: 0;
// word-wrap: break-word;
@ -186,6 +186,8 @@ onBeforeUnmount(() => editor.value?.destroy())
/* Basic editor styles */
.ProseMirror {
padding: .5rem;
> * + * {
margin-top: 0.75em;
}