diff --git a/src/components/editor/entity/EditorEntityShowPopover.vue b/src/components/editor/entity/EditorEntityShowPopover.vue index bce667542..aa78d61d8 100644 --- a/src/components/editor/entity/EditorEntityShowPopover.vue +++ b/src/components/editor/entity/EditorEntityShowPopover.vue @@ -15,6 +15,8 @@ props.entity.type === 'paragraph' ? 'top-0.5' : '', props.entity.type === 'heading-two' ? 'top-12' : '', props.entity.type === 'heading-three' ? 'top-8' : '', + props.entity.type === 'line-break' ? '-top-0.5' : '', + props.entity.type === 'page-break' ? '-top-0.5' : '', ]" >

diff --git a/src/plugin/theme/inject.css b/src/plugin/theme/inject.css index 31f5bdca0..68e264591 100644 --- a/src/plugin/theme/inject.css +++ b/src/plugin/theme/inject.css @@ -511,7 +511,7 @@ --theme-editor-pdf-configuration-container-background: #242222; --theme-editor-pdf-configuration-container-background-hover: #242222; --theme-editor-pdf-configuration-container-background-active: #242222; - --theme-editor-material-border: #fa8373; + --theme-editor-material-border: transparent; --theme-editor-material-background: #514646; --theme-editor-material-background-hover: #514646; --theme-editor-material-background-active: #514646;