mirror of
https://github.com/zadam/trilium.git
synced 2025-01-30 02:51:30 +08:00
21 lines
No EOL
482 B
CSS
21 lines
No EOL
482 B
CSS
.note-editable {
|
|
/* This is because with empty content height of editor is 0 and it's impossible to click into it */
|
|
min-height: 400px;
|
|
overflow: scroll;
|
|
}
|
|
|
|
#top-message {
|
|
display: none; /* initial state is hidden */
|
|
background-color: #e0e0e0;
|
|
color: #333;
|
|
padding: 5px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#error-message {
|
|
display: none; /* initial state is hidden */
|
|
background-color: red;
|
|
color: white;
|
|
padding: 5px;
|
|
border-radius: 10px;
|
|
} |