1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-01 01:33:16 +00:00
TiddlyWiki5/plugins/tiddlywiki/codemirror/styles.tid

17 lines
301 B
Plaintext
Raw Normal View History

2013-05-15 16:32:28 +00:00
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;
2013-05-15 16:32:28 +00:00
}
.CodeMirror-scroll {
overflow-x: auto;
overflow-y: hidden;
}