2026-02-14 18:22:42 +01:00
|
|
|
.editor {
|
|
|
|
|
background: #0f0f1a;
|
|
|
|
|
color: #e0e0e0;
|
|
|
|
|
display: flex;
|
2026-02-14 20:07:23 +01:00
|
|
|
flex-direction: column;
|
2026-02-14 18:22:42 +01:00
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
2026-02-14 20:07:23 +01:00
|
|
|
overflow: hidden;
|
2026-02-14 18:22:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor__placeholder {
|
2026-02-14 20:07:23 +01:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
height: 100%;
|
2026-02-14 18:22:42 +01:00
|
|
|
text-align: center;
|
|
|
|
|
color: #555;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor__placeholder p {
|
|
|
|
|
margin: 8px 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-14 20:07:23 +01:00
|
|
|
.editor__cm-container {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor__cm-container .cm-editor {
|
|
|
|
|
height: 100%;
|
2026-02-14 18:22:42 +01:00
|
|
|
}
|