mirror of
https://github.com/wassname/talk.git
synced 2026-07-10 01:56:36 +08:00
fix: remove 80% max-width
This commit is contained in:
@@ -7,10 +7,6 @@
|
||||
composes: button from "talk-ui/shared/typography.css";
|
||||
}
|
||||
|
||||
.body {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
.divider {
|
||||
margin: calc(var(--spacing-unit) * 2) 0 !important;
|
||||
}
|
||||
|
||||
@@ -32,9 +32,7 @@ const HistoryComment: StatelessComponent<HistoryCommentProps> = props => {
|
||||
</Localized>
|
||||
<Timestamp>{props.createdAt}</Timestamp>
|
||||
<Typography variant="bodyCopy" container="div">
|
||||
{props.body && (
|
||||
<HTMLContent className={styles.body}>{props.body}</HTMLContent>
|
||||
)}
|
||||
{props.body && <HTMLContent>{props.body}</HTMLContent>}
|
||||
</Typography>
|
||||
<Flex direction="row" alignItems="center" itemGutter>
|
||||
{!!props.replyCount && (
|
||||
|
||||
Reference in New Issue
Block a user