0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 23:18:48 -05:00
penpot/frontend/resources/styles/main/partials/texts.scss

64 lines
883 B
SCSS
Raw Permalink Normal View History

2022-02-17 14:53:46 +01:00
.text-editor,
.rich-text {
color: var(--app-black);
2022-02-17 14:53:46 +01:00
height: 100%;
font-family: sourcesanspro;
2022-02-17 14:53:46 +01:00
div {
line-height: inherit;
user-select: text;
}
2022-02-17 14:53:46 +01:00
span {
line-height: inherit;
}
2022-02-17 14:53:46 +01:00
}
2022-02-17 14:53:46 +01:00
.text-editor {
.DraftEditor-root {
height: 100%;
display: flex;
flex-direction: column;
2022-02-17 14:53:46 +01:00
}
.public-DraftStyleDefault-block {
white-space: pre;
}
2022-02-17 14:53:46 +01:00
&.align-top {
.DraftEditor-root {
justify-content: flex-start;
}
2022-02-17 14:53:46 +01:00
}
2022-02-17 14:53:46 +01:00
&.align-center {
.DraftEditor-root {
justify-content: center;
}
2022-02-17 14:53:46 +01:00
}
2022-02-17 14:53:46 +01:00
&.align-bottom {
.DraftEditor-root {
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;
}
}