platform/packages/theme/styles/_text-editor.scss
Anna No 7c2aa9f282
Collaborator Text Editor: add node highlight extension for inline comments feature (#3660)
* Collaborator Text Editor: add node highlight extension for inline comments feature

Signed-off-by: Anna No <anna.no@xored.com>

* fix dependencies

Signed-off-by: Anna No <anna.no@xored.com>

* use generateId instead of uuid

Signed-off-by: Anna No <anna.no@xored.com>

---------

Signed-off-by: Anna No <anna.no@xored.com>
2023-09-06 16:01:25 +07:00

33 lines
640 B
SCSS

.textEditorImage {
cursor: pointer;
object-fit: contain;
}
.text-editor-highlighted-node-warning {
background-color: var(--theme-warning-color);
}
.text-editor-highlighted-node-error {
background-color: var(--theme-error-color);
}
.text-editor-highlighted-node-success {
background-color: var(--theme-won-color);
}
.proseH1 {
margin-block-start: 1.25rem;
margin-block-end: 1.25rem;
font-weight: 700;
font-size: 1.75rem;
// line-height: 1.75rem;
color: red;
}
.proseH2 {
margin-block-start: 1rem;
margin-block-end: 1.125rem;
font-weight: 700;
font-size: 1.25rem;
// line-height: 1.75rem;
color: green;
}