Skip to content

Commit

Permalink
base
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohan-cp committed Oct 20, 2023
1 parent 70e8c45 commit 660538c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 1 addition & 3 deletions apps/web/src/components/Feed/Socialize/CommentLine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function CommentLine({ commentRef }: CommentLineProps) {
const nonNullMentions = useMemo(() => removeNullValues(comment.mentions), [comment.mentions]);

return (
<HStack inline key={comment.dbid} gap={4}>
<HStack inline key={comment.dbid} gap={4} justify="center">
{comment.commenter && (
<StyledUsernameWrapper>
<UserHoverCard userRef={comment.commenter}>
Expand Down Expand Up @@ -95,8 +95,6 @@ const CommenterName = styled.span`
`;

const CommentText = styled.div`
word-wrap: break-word;
word-break: break-all;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ const StyledListItem = styled(ListItem)`
`;

const StyledBaseM = styled(BaseM)`
word-wrap: break-word;
word-break: break-all;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
Expand Down

0 comments on commit 660538c

Please sign in to comment.