diff options
author | Hsieh Chin Fan <pham@topo.tw> | 2024-10-03 08:13:21 +0800 |
---|---|---|
committer | Hsieh Chin Fan <pham@topo.tw> | 2024-10-03 16:19:46 +0800 |
commit | 843be0d63eae1610a2b4a2964ca6b7b48adab478 (patch) | |
tree | a5425843a64ccab5060bdc3544822f46a680f145 | |
parent | 4653cfa6a1bc54bd9913bdafd90c285b5556d2f8 (diff) |
feat(CSS) reduce font-size in editor
-rw-r--r-- | src/css/index.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/css/index.css b/src/css/index.css index b9e90ba..858182d 100644 --- a/src/css/index.css +++ b/src/css/index.css | |||
@@ -79,6 +79,18 @@ body { | |||
79 | .invalid-input { | 79 | .invalid-input { |
80 | text-decoration: red wavy underline 1px; | 80 | text-decoration: red wavy underline 1px; |
81 | } | 81 | } |
82 | |||
83 | .cm-heading-1 { | ||
84 | font-size: 2em; | ||
85 | } | ||
86 | |||
87 | .cm-heading-2 { | ||
88 | font-size: 1.5em; | ||
89 | } | ||
90 | |||
91 | .cm-heading-3 { | ||
92 | font-size: 1.25em; | ||
93 | } | ||
82 | } | 94 | } |
83 | 95 | ||
84 | .editor-toolbar { | 96 | .editor-toolbar { |