Skip to content

Commit

Permalink
feat: fix comment padding on mobile (#4114)
Browse files Browse the repository at this point in the history
  • Loading branch information
AmarTrebinjac authored Jan 28, 2025
1 parent df3f0a7 commit 5ec906a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/shared/src/components/post/PostComments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,10 @@ export function PostComments({
}

return (
<div className="mb-12 mt-6 flex flex-col gap-4" ref={container}>
<div
className="-mx-4 mb-12 mt-6 flex flex-col gap-4 mobileL:mx-0"
ref={container}
>
{comments.postComments.edges.map((e, index) => (
<MainComment
className={{ commentBox: className }}
Expand Down

0 comments on commit 5ec906a

Please sign in to comment.