mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
f6ff0a7f71
A warning message appears at the top of the story river if any `$:/tags/stylesheet` tags are found. Fixing the first half of #824
17 lines
301 B
Plaintext
17 lines
301 B
Plaintext
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;
|
|
}
|