Files
talk/src/core/client/stream/shared/htmlContent.css
T
2018-09-07 17:00:28 +02:00

27 lines
559 B
CSS

.root {
composes: bodyCopy from "talk-ui/shared/typography.css";
overflow-wrap: break-word;
& * 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;
}
}
}