Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix comment overflow and ensure content fits within div #8722

Merged
Merged
4 changes: 2 additions & 2 deletions src/Components/Resource/CommentSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ export const Comment = ({
modified_date,
}: IComment) => (
<div className="mt-4 flex w-full flex-col rounded-lg border border-secondary-300 bg-white p-4 text-secondary-800">
<div className="flex w-full">
<p className="text-justify">{comment}</p>
<div className="w-full">
<p className="break-words">{comment}</p>
</div>
<div className="mt-3">
<span className="text-xs text-secondary-500">
Expand Down
4 changes: 2 additions & 2 deletions src/Components/Shifting/CommentsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ export const Comment = ({
key={id}
className="mt-4 flex w-full flex-col rounded-lg border border-secondary-300 bg-white p-4 text-secondary-800"
>
<div className="flex w-full">
<p className="text-justify">{comment}</p>
<div className="w-full">
<p className="break-words">{comment}</p>
</div>
<div className="mt-3">
<span className="text-xs text-secondary-500">
Expand Down
Loading