TiddlyWiki5/plugins/tiddlywiki/codemirror/styles.tid
2016-04-22 08:36:29 +01:00

16 lines
301 B
Text
Executable file

title: $:/plugins/tiddlywiki/codemirror/styles
tags: [[$:/tags/Stylesheet]]
/* Make the editor resize to fit its content */
.CodeMirror {
height: auto;
border: 1px solid #ddd;
line-height: 1.5;
font-family: "Monaco", monospace;
}
.CodeMirror-scroll {
overflow-x: auto;
overflow-y: hidden;
}