mirror of
https://github.com/wassname/talk.git
synced 2026-07-17 11:33:39 +08:00
* 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
27 lines
547 B
CSS
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;
|
|
}
|
|
}
|
|
}
|