2023-05-27 15:49:14 +00:00
|
|
|
.textEditorImage {
|
|
|
|
cursor: pointer;
|
|
|
|
object-fit: contain;
|
2023-08-10 16:27:43 +00:00
|
|
|
}
|
2023-09-06 06:44:54 +00:00
|
|
|
|
2023-09-06 09:01:25 +00:00
|
|
|
.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);
|
|
|
|
}
|
2023-09-29 07:41:52 +00:00
|
|
|
|
|
|
|
.text-editor-popup {
|
|
|
|
background-color: var(--theme-comp-header-color);
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
box-shadow: var(--theme-popup-shadow);
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2023-09-06 06:44:54 +00:00
|
|
|
.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;
|
|
|
|
}
|