2022-02-17 14:53:46 +01:00
|
|
|
.text-editor,
|
|
|
|
.rich-text {
|
2024-06-19 15:35:50 +02:00
|
|
|
color: var(--app-black);
|
2022-02-17 14:53:46 +01:00
|
|
|
height: 100%;
|
|
|
|
font-family: sourcesanspro;
|
2021-03-15 08:43:23 +01:00
|
|
|
|
2022-02-17 14:53:46 +01:00
|
|
|
div {
|
|
|
|
line-height: inherit;
|
|
|
|
user-select: text;
|
2021-03-15 08:43:23 +01:00
|
|
|
}
|
|
|
|
|
2022-02-17 14:53:46 +01:00
|
|
|
span {
|
|
|
|
line-height: inherit;
|
2021-03-15 08:43:23 +01:00
|
|
|
}
|
2022-02-17 14:53:46 +01:00
|
|
|
}
|
2021-03-15 08:43:23 +01:00
|
|
|
|
2022-02-17 14:53:46 +01:00
|
|
|
.text-editor {
|
|
|
|
.DraftEditor-root {
|
2022-09-14 11:20:13 +02:00
|
|
|
height: 100%;
|
2021-03-15 08:43:23 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-02-17 14:53:46 +01:00
|
|
|
}
|
2021-03-15 08:43:23 +01:00
|
|
|
|
2024-04-12 12:42:08 +02:00
|
|
|
.public-DraftStyleDefault-block {
|
|
|
|
white-space: pre;
|
|
|
|
}
|
|
|
|
|
2022-02-17 14:53:46 +01:00
|
|
|
&.align-top {
|
|
|
|
.DraftEditor-root {
|
2021-03-15 08:43:23 +01:00
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
2022-02-17 14:53:46 +01:00
|
|
|
}
|
2021-03-15 08:43:23 +01:00
|
|
|
|
2022-02-17 14:53:46 +01:00
|
|
|
&.align-center {
|
|
|
|
.DraftEditor-root {
|
2021-03-15 08:43:23 +01:00
|
|
|
justify-content: center;
|
|
|
|
}
|
2022-02-17 14:53:46 +01:00
|
|
|
}
|
2021-03-15 08:43:23 +01:00
|
|
|
|
2022-02-17 14:53:46 +01:00
|
|
|
&.align-bottom {
|
|
|
|
.DraftEditor-root {
|
2021-03-15 08:43:23 +01:00
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
}
|
2020-04-23 14:45:06 +02:00
|
|
|
}
|
2022-02-17 14:53:46 +01:00
|
|
|
|
|
|
|
.rich-text .paragraphs {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
&.align-top {
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.align-center {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.align-bottom {
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
}
|