From 9ea84ca9aeb526725c0e0ecff42bf0efbb590fc8 Mon Sep 17 00:00:00 2001 From: 01zulfi <85733202+01zulfi@users.noreply.github.com> Date: Thu, 12 Feb 2026 14:02:01 +0500 Subject: [PATCH] editor: reduce horizontal rule height for large screens (#9040) Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> --- packages/editor/styles/styles.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/editor/styles/styles.css b/packages/editor/styles/styles.css index f008bade5..03f8eff50 100644 --- a/packages/editor/styles/styles.css +++ b/packages/editor/styles/styles.css @@ -40,7 +40,7 @@ position: relative; background-color: var(--separator); width: 100%; - height: 5px; + height: 2px; margin-top: 4px; margin-bottom: 4px; } @@ -406,6 +406,10 @@ img.ProseMirror-separator { margin-inline: 5px; padding-inline-start: 10px; } + +.ProseMirror hr { + height: 5px; +} }