From 6276643e6b21518acb6731a411928bc9fffb740d Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Fri, 5 Feb 2021 12:02:47 +0100 Subject: [PATCH] docs: add styling to the focus demo --- docs/src/demos/Extensions/Focus/index.vue | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/src/demos/Extensions/Focus/index.vue b/docs/src/demos/Extensions/Focus/index.vue index 46b7ccba..8e6e086f 100644 --- a/docs/src/demos/Extensions/Focus/index.vue +++ b/docs/src/demos/Extensions/Focus/index.vue @@ -63,4 +63,21 @@ export default { border-radius: 3px; box-shadow: 0 0 0 3px #68CEF8; } + +/* Basic editor styles */ +.ProseMirror { + > * + * { + margin-top: 0.75em; + } + + ul, + ol { + padding: 0 1rem; + } + + blockquote { + padding-left: 1rem; + border-left: 2px solid rgba(#0D0D0D, 0.1); + } +}