Files
talk/src/core/client/stream/shared/htmlContent.css
T
KiwiandGitHub 98795d161d [CORL-263, CORL-225] Story Titles, Moderate Story, Mini Unit (#2294)
* feat: show story title + moderate this story link

* feat: introduce mini unit

* test: add tests for moderate story link

* fix: snapshot

* fix: lint / test

* fix: unwanted margin
2019-05-03 22:01:34 +02:00

27 lines
547 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(--mini-unit);
margin: calc(2 * var(--mini-unit)) 0 calc(2 * var(--mini-unit))
var(--mini-unit);
border-radius: var(--round-corners);
&::after {
content: none;
}
&::before {
content: none;
}
}
}