Skip to content

Commit

Permalink
fix overflow issue
Browse files Browse the repository at this point in the history
  • Loading branch information
The-DevBlog committed Oct 2, 2023
1 parent 67cd8e2 commit 5bf4181
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devblog/devblog/ClientApp/src/components/Comment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ const Comment = (props: ICommentProps) => {
}
{(userName === props.userName || isAdmin) && <DeleteComment id={props.id} onCommentDelete={props.handleCommentChange} />}
<div className="date">
<span className="">{date}</span>
<span className="">{time}</span>
<span>{date}</span>
<span>{time}</span>
</div>

</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

.comment p {
padding-left: 5px;
word-wrap: break-word;
width: 85%;
}

Expand Down

0 comments on commit 5bf4181

Please sign in to comment.