Fix overflow in editor edit component, add margin between review toggle and copy button

This commit is contained in:
2024-07-18 06:55:51 +09:30
parent 12c36be93d
commit 8517f99438
2 changed files with 16 additions and 1 deletions

View File

@@ -11,6 +11,15 @@
overflow: auto;
}
pre {
overflow: auto;
}
.preview {
display: flex;
flex-direction: column;
}
.editor-items {
padding: 16px;
}
@@ -28,3 +37,7 @@ ngx-monaco-editor,
ngx-monaco-diff-editor {
height: 100%;
}
.copy-button {
margin-left: 10px;
}