We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad60b11 commit 59230d2Copy full SHA for 59230d2
web_src/css/editor/combomarkdowneditor.css
@@ -1,5 +1,6 @@
1
.combo-markdown-editor {
2
width: 100%;
3
+ --height-textarea: 140px;
4
}
5
6
.combo-markdown-editor markdown-toolbar {
@@ -37,13 +38,13 @@
37
38
.combo-markdown-editor textarea.markdown-text-editor {
39
display: block;
40
- min-height: 140px;
41
- max-height: calc(100vh - 140px);
+ min-height: var(--height-textarea);
42
+ max-height: calc(100vh - var(--height-textarea));
43
resize: vertical;
44
45
46
.combo-markdown-editor .CodeMirror-scroll {
47
48
49
50
/* use the same styles as markup/content.css */
0 commit comments