Skip to content

Commit

Permalink
Add some margin for Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bluprince13 committed May 27, 2024
1 parent 559abbc commit d6cbb5f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/Comments.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use client'

import { Comments, CommentCount } from '@hyvor/hyvor-talk-react'
import { Box } from '@mui/material'

const HYVOR_WEBSITE_ID = 2205

Expand All @@ -9,5 +10,7 @@ export const MyCommentCount = ({ id }) => (
)

export const MyComments = ({ id }) => (
<Comments website-id={HYVOR_WEBSITE_ID} page-id={id} />
<Box sx={{ mt: 2 }}>
<Comments website-id={HYVOR_WEBSITE_ID} page-id={id} />
</Box>
)

0 comments on commit d6cbb5f

Please sign in to comment.