Implement RTE and HTMLContent

This commit is contained in:
Chi Vinh Le
2018-08-29 16:03:04 +02:00
parent 885a724876
commit 13c196983f
44 changed files with 1726 additions and 554 deletions
@@ -0,0 +1,25 @@
.root {
composes: bodyCopy from "talk-ui/shared/typography.css";
& * bold,
& * strong {
font-weight: var(--font-weight-medium);
}
& * italic,
& * em {
font-style: italic;
}
blockquote {
background-color: var(--palette-grey-lightest);
padding: var(--spacing-unit);
margin: calc(2 * var(--spacing-unit)) 0 calc(2 * var(--spacing-unit))
var(--spacing-unit);
border-radius: var(--round-corners);
&::after {
content: none;
}
&::before {
content: none;
}
}
}