fix: remove 80% max-width

This commit is contained in:
Chi Vinh Le
2018-10-17 17:22:20 +02:00
parent a8d69a0c5d
commit ea5d907ff5
2 changed files with 1 additions and 7 deletions
@@ -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 && (