mirror of
https://github.com/wassname/talk.git
synced 2026-07-13 06:12:13 +08:00
27 lines
559 B
CSS
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;
|
|
}
|
|
}
|
|
}
|