From 7fa1aabf3e5d125549cc02763769ebe0fa8d08f7 Mon Sep 17 00:00:00 2001 From: Ross Date: Tue, 23 Jul 2024 12:10:36 -0700 Subject: [PATCH] Unified the size of headers and sb-line-headers (#972) * Unified the size of headers and sb-line-headers --- web/styles/editor.scss | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/web/styles/editor.scss b/web/styles/editor.scss index 226defc0..9e3ceddb 100644 --- a/web/styles/editor.scss +++ b/web/styles/editor.scss @@ -32,21 +32,21 @@ background-color: var(--editor-directive-background-color); } - .sb-line-h1 { + .sb-line-h1, h1 { font-size: 1.5em; } - .sb-line-h2 { + .sb-line-h2, h2 { font-size: 1.2em; } - .sb-line-h3 { + .sb-line-h3, h3 { font-size: 1.1em; } - .sb-line-h4, - .sb-line-h5, - .sb-line-h6 { + .sb-line-h4, h4, + .sb-line-h5, h5, + .sb-line-h6, h6 { font-size: 1em; } @@ -639,4 +639,4 @@ div:not(.cm-focused).cm-fat-cursor { outline: none !important; -} \ No newline at end of file +}