editor: use error color for errors in math blocks

This commit is contained in:
Abdullah Atta
2023-08-07 08:44:45 +05:00
parent 60ba345e6c
commit f67792cd30

View File

@@ -363,12 +363,12 @@ span:focus .fake-cursor {
.math-node.empty-math .math-render::before {
content: "(empty)";
color: red;
color: var(--paragraph-error);
}
.math-node .math-render.parse-error::before {
content: "(math error)";
color: red;
color: var(--paragraph-error);
cursor: help;
}