diff --git a/app/static/css/editor.css b/app/static/css/editor.css index ca3b05d..111b103 100644 --- a/app/static/css/editor.css +++ b/app/static/css/editor.css @@ -33,6 +33,11 @@ .editor textarea { min-height: 15rem; } +.editor #editor_content_preview { + margin: 5px; + margin-top: 10px; + border: var(--border); +} .separator { display: inline-block; width: 0; diff --git a/app/static/less/editor.less b/app/static/less/editor.less index d643d24..8ae1000 100644 --- a/app/static/less/editor.less +++ b/app/static/less/editor.less @@ -41,6 +41,12 @@ textarea { min-height: 15rem; } + + #editor_content_preview { + margin: 5px; + margin-top: 10px; + border: var(--border); + } } // From gitea