49 lines
904 B
CSS
49 lines
904 B
CSS
|
|
.content-editor-markdown {
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content-editor-markdown .md-editor {
|
||
|
|
height: 100%;
|
||
|
|
border: 0;
|
||
|
|
box-shadow: none;
|
||
|
|
background: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content-editor-markdown .md-editor-footer {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content-editor-markdown .md-editor-toolbar {
|
||
|
|
border-bottom: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content-editor-markdown .md-editor-content {
|
||
|
|
height: calc(100% - 37px);
|
||
|
|
}
|
||
|
|
|
||
|
|
.content-editor-markdown .md-editor-content-wrapper,
|
||
|
|
.content-editor-markdown .md-editor-input-wrapper {
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content-editor-markdown .md-editor-input-wrapper {
|
||
|
|
border-right: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content-editor-markdown .cm-editor {
|
||
|
|
height: 100%;
|
||
|
|
background: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content-editor-markdown .cm-scroller {
|
||
|
|
height: 100%;
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content-editor-markdown .cm-content,
|
||
|
|
.content-editor-markdown .cm-line {
|
||
|
|
font-family: var(--font-geist-mono), monospace;
|
||
|
|
font-size: 0.875rem;
|
||
|
|
line-height: 1.75;
|
||
|
|
}
|