mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-03 16:46:18 +00:00
18 lines
435 B
Plaintext
Executable File
18 lines
435 B
Plaintext
Executable File
title: $:/plugins/tiddlywiki/codemirror/styles
|
|
tags: [[$:/tags/Stylesheet]]
|
|
|
|
/* Make the editor resize to fit its content */
|
|
|
|
.CodeMirror {
|
|
height: auto;
|
|
border: 1px solid <<colour tiddler-editor-border>>;
|
|
line-height: 1.5;
|
|
font-family: {{$:/themes/tiddlywiki/vanilla/settings/editorfontfamily}};
|
|
font-size: {{$:/themes/tiddlywiki/vanilla/metrics/bodyfontsize}};
|
|
}
|
|
|
|
.CodeMirror-scroll {
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
}
|