Update CSS for dark theme in editor components

This commit is contained in:
2026-03-12 16:11:14 +01:00
parent 7671d6e39a
commit 56ab395eb2

View File

@@ -600,6 +600,10 @@ body:not([data-theme="light"]) .folder-item {
border-color: transparent;
}
body:not([data-theme="light"]) .editor__textarea-wrap--preview {
background: var(--bg);
}
.editor__textarea-wrap--split {
flex-direction: row;
}
@@ -613,6 +617,10 @@ body:not([data-theme="light"]) .folder-item {
flex: 1;
}
body:not([data-theme="light"]) .editor__textarea-wrap--split .markdown-preview {
background: var(--bg);
}
.editor__textarea-wrap:focus-within {
border-color: rgba(255, 255, 255, 0.18);
}